/* Register Guide Premium Styles - Dark & Gold */
.register-hero {
    padding: 180px 0 80px;
    background: linear-gradient(180deg, #000000 0%, #0a0e1a 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.register-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.register-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(201, 169, 97, 0.5);
    position: relative;
    z-index: 1;
}

.register-hero .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-hero p {
    font-size: 1.3rem;
    color: rgba(226, 232, 240, 0.9);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Register Content Section */
.register-content {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0e1a 0%, #000000 100%);
}

.guide-section {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.guide-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.guide-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 30px 0 20px;
}

.guide-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(226, 232, 240, 0.9);
    margin-bottom: 20px;
}

.guide-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.guide-section ul li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.1rem;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.6;
}

.guide-section ul li::before {
    content: 'â–¶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1rem;
}

.info-box {
    background: rgba(201, 169, 97, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 8px;
}

.info-box i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.warning-box {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 8px;
}

.warning-box i {
    color: #ffc107;
    margin-right: 10px;
    font-size: 1.2rem;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #000;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-right: 15px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .register-hero h1 {
        font-size: 2.5rem;
    }

    .guide-section {
        padding: 30px 20px;
    }

    .guide-section h2 {
        font-size: 2rem;
    }
}
