@font-face {
    font-family: 'Bonk';
    src: url('../fonts/Bonk.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #65f1db;
    --secondary-color: #fdb600;
    --rift-purple: #9b6dff;
    --dark-bg: #15273e;
    --footer-bg: #0b0b1d;
    --card-bg: rgba(21, 39, 62, 0.75);
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: var(--dark-bg);
    background-image: url('../3840x1240_transparency.jpg');
    background-repeat: repeat;
    color: white;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bonk', 'Montserrat', sans-serif;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.navbar {
    background-color: #0b0b1d;
    padding: 15px 0;
}

.navbar-hero {
    background: rgba(11, 11, 29, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(101, 241, 219, 0.08);
    padding: 10px 0;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s linear;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link-cta {
    background-color: var(--secondary-color) !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 8px 20px !important;
    border-radius: 30px;
    margin-left: 6px;
    transition: all 0.3s;
}

.nav-link-cta:hover {
    background-color: #ff8503 !important;
    color: #000 !important;
    transform: scale(1.03);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 72px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 11, 29, 0.65) 0%,
        rgba(21, 39, 62, 0.25) 45%,
        transparent 100%
    );
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(155, 109, 255, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.hero-glow-left {
    position: absolute;
    bottom: 0;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(101, 241, 219, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(155, 109, 255, 0.2);
    border: 1px solid var(--rift-purple);
    color: var(--rift-purple);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
}

.signup-badge {
    margin-bottom: 14px;
}

.hero-logo-title {
    margin: 0 0 8px;
    line-height: 0;
}

.hero-logo {
    display: block;
    width: min(100%, 420px);
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

.hero-subtitle {
    font-size: 1.45rem;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    margin-top: 4px;
}

.signup-card {
    background: var(--card-bg);
    border: 1px solid rgba(101, 241, 219, 0.2);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(8px);
}

.hero-signup {
    position: relative;
    z-index: 1;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(155, 109, 255, 0.12);
}

.signup-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.signup-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.email-form .form-control {
    background: rgba(11, 11, 29, 0.8);
    border: 1px solid rgba(101, 241, 219, 0.3);
    color: white;
    padding: 14px 18px;
    border-radius: 30px;
    font-size: 1rem;
}

.email-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.email-form .form-control:focus {
    background: rgba(11, 11, 29, 0.9);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(101, 241, 219, 0.15);
}

.btn-cta {
    background-color: var(--secondary-color);
    border: none;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 30px;
    color: #000;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-cta:hover {
    background-color: #ff8503;
    transform: scale(1.03);
    color: #000;
}

.btn-cta:disabled {
    background-color: #666;
    cursor: not-allowed;
    transform: none;
    opacity: 0.7;
}

.btn-outline-cta {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-outline-cta:hover {
    background-color: var(--primary-color);
    color: #000;
    transform: scale(1.03);
}

.form-feedback {
    font-size: 0.9rem;
    margin-top: 12px;
    min-height: 1.4em;
}

.form-feedback.success {
    color: var(--primary-color);
}

.form-feedback.error {
    color: #ff6b6b;
}

.section-block {
    padding: 80px 0;
}

.section-block.alt-bg {
    background-color: rgba(18, 30, 53, 0.85);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.section-lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(101, 241, 219, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    height: 100%;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(101, 241, 219, 0.12);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--rift-purple);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.lore-block {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    border-left: 4px solid var(--rift-purple);
}

.lore-block p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.faction-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.faction-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
}

.faction-list li:last-child {
    border-bottom: none;
}

.faction-list strong {
    color: var(--primary-color);
}

.gameplay-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.pillar-tag {
    display: inline-block;
    background: rgba(101, 241, 219, 0.1);
    border: 1px solid rgba(101, 241, 219, 0.25);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin: 4px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(101, 241, 219, 0.08);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    text-align: left;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 24px 20px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.cta-banner {
    background: linear-gradient(135deg, rgba(155, 109, 255, 0.2) 0%, rgba(21, 39, 62, 0.9) 50%, rgba(101, 241, 219, 0.1) 100%);
    border: 1px solid rgba(101, 241, 219, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
}

.seo-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

footer {
    background-color: var(--footer-bg);
    padding: 50px 0 20px;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 24px;
    margin: 0 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

a[href="https://noldo.fr"] {
    color: var(--secondary-color);
    text-decoration: none;
}

@media (max-width: 991px) {
    .hero-content {
        text-align: center;
    }

    .hero-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 96px 0 56px;
    }

    .hero-logo {
        width: min(100%, 320px);
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-signup {
        margin-top: 8px;
    }

    .cta-banner {
        padding: 36px 20px;
    }
}
