body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #1a1a1a;
    color: #f0f0f0;
}

/* TOP MENU */

.top-menu {
    background: #2e2e2e;
    padding: 10px 20px;
    display: flex;
    gap: 15px;
}

.top-menu a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 6px;
}

.top-menu a:hover {
    background: gold;
    color: black;
}

/* HERO */

.hero {
    position: relative;

    background:
        url('https://images.unsplash.com/photo-1516280440614-37939bbacd81')
        center/cover no-repeat;

    min-height: 22vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero p {
    color: #ddd;
    font-size: 18px;
}

/* REGISTER */

.register-section {
    padding: 50px 20px;
}

.register-wrapper {
    max-width: 900px;
    margin: auto;
    background: #232323;
    border-radius: 18px;
    border: 1px solid #333;
    padding: 35px;
}

/* STEPS */

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #777;
    font-weight: bold;
}

.step span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step.active {
    color: gold;
}

.step.active span {
    background: gold;
    color: black;
}

.step-line {
    width: 80px;
    height: 2px;
    background: #444;
    margin: 0 20px;
}

/* FORM */

.form-page {
    display: none;
}

.form-page.active {
    display: block;
}

.page-header {
    margin-bottom: 30px;
}

.page-header h2 {
    margin-bottom: 8px;
}

.page-header p {
    color: #aaa;
}

/* GRID */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #ddd;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #2e2e2e;
    border: 1px solid #444;
    color: white;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: gold;
}

.full-width {
    margin-top: 25px;
}

/* UPLOAD */

.upload-box {
    margin-top: 30px;
    background: #2a2a2a;
    border: 2px dashed #444;
    border-radius: 14px;
    padding: 30px;
    text-align: center;
}

.upload-box p {
    color: #aaa;
}

/* PREMIUM */

.premium-box {
    margin-top: 30px;

    background:
        linear-gradient(
            135deg,
            #2d2a1d,
            #1f1f1f
        );

    border: 1px solid #5a4b00;

    border-radius: 14px;

    padding: 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-box h3 {
    margin: 0 0 6px 0;
    color: gold;
}

.premium-box p {
    margin: 0;
    color: #ccc;
}

/* SWITCH */

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.switch input {
    opacity: 0;
}

.slider {
    position: absolute;
    inset: 0;
    background: #555;
    border-radius: 30px;
    transition: 0.3s;
}

.slider:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    left: 4px;
    top: 4px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.switch input:checked + .slider {
    background: gold;
}

.switch input:checked + .slider:before {
    transform: translateX(28px);
}

/* BUTTONS */

.form-actions {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: gold;
    color: black;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: #2e2e2e;
    color: white;
    border: 1px solid #444;
    padding: 14px 24px;
    border-radius: 10px;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: gold;
}

/* FOOTER */

footer {
    background: #171717;
    padding: 35px 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 12px;
}

.footer-links a:hover {
    color: gold;
}

/* RESPONSIVE */

@media(max-width: 800px) {

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .premium-box {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 34px;
    }

}