/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Orbitron', sans-serif;
    background-color: #000;
    color: #fff;
}

/* Topbar */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    border-bottom: 1px solid #ff0000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

/* Left */
.left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-text {
    color: white;
    letter-spacing: 3px;
}

/* Navigation */
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: white;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 6px;
    transition: color 0.2s ease;
}

/* Underline */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #ff0000;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-links a:hover {
    color: #ff0000;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-links a.active::after {
    transform: scaleX(1);
}

/* Hero */
.hero {
    padding: 80px 40px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Titles */
.game-title {
    font-size: 50px;
    letter-spacing: 5px;
    line-height: 1.05;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.game-subtitle {
    font-size: 16px;
    opacity: 0.8;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    background: #012ba8;
    color: #ffffff;
    font-weight: 700;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.15s ease,
        box-shadow 0.25s ease;
}

.btn.primary:hover {
    color: #ff0000;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
}

/* Creator Form */
.apply-form {
    margin-top: 26px;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 0, 0, 0.22);
}

.apply-form input,
.apply-form textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 0.5px;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.apply-form textarea {
    resize: vertical;
    min-height: 110px;
}

.apply-form input::placeholder,
.apply-form textarea::placeholder {
    color: rgba(255,255,255,0.55);
}

.apply-form input:focus,
.apply-form textarea:focus {
    border: 1px solid rgba(255, 0, 0, 0.45);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.10);
}

.form-hint {
    font-size: 12px;
    opacity: 0.75;
    line-height: 1.6;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 720px) {
    .topbar {
        padding: 12px 20px;
        gap: 16px;
    }

    .nav-links {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .hero {
        padding: 60px 20px 30px;
    }

    .game-title {
        font-size: 38px;
        letter-spacing: 3px;
    }
}
