/* =========================
   THE EMPIRE BE
   Main Stylesheet
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(20, 80, 170, 0.18),
            transparent 35%
        ),
        #05070c;
}

body,
button,
input,
textarea {
    font-family: Arial, Helvetica, sans-serif;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    width: 100%;
    height: 85px;

    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    background: rgba(5, 7, 12, 0.88);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(3, 5, 9, 0.96);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.25);
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #ffffff;

    text-decoration: none;

    font-size: 21px;
    font-weight: 800;

    letter-spacing: 2px;

    white-space: nowrap;
}

.crown {
    color: #2f80ff;

    font-size: 30px;

    text-shadow:
        0 0 20px rgba(47, 128, 255, 0.8);
}


/* DESKTOP NAV */

.navbar nav {
    display: flex;
    align-items: center;

    gap: 30px;
}

.navbar nav a {
    position: relative;

    color: #aeb6c5;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.25s ease;
}

.navbar nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #2878ff;

    border-radius: 20px;

    transition:
        width 0.25s ease;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: #ffffff;
}

.navbar nav a:hover::after,
.navbar nav a.active::after {
    width: 100%;
}


/* DISCORD BUTTON */

.discord-btn {
    padding: 12px 24px;

    flex-shrink: 0;

    color: #ffffff;

    background: #246bfd;

    text-decoration: none;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 0 25px rgba(36, 107, 253, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.discord-btn:hover {
    transform: translateY(-2px);

    background: #3479ff;

    box-shadow:
        0 0 35px rgba(36, 107, 253, 0.5);
}


/* MOBILE MENU BUTTON */

.mobile-menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.04);

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 10px;

    font-size: 20px;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.mobile-menu-btn:hover {
    background: rgba(40, 120, 255, 0.1);

    border-color:
        rgba(40, 120, 255, 0.3);
}


/* =========================
   SHARED
========================= */

.section-label {
    margin-bottom: 20px;

    color: #2878ff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 5px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 16px 30px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.primary-btn {
    color: #ffffff;

    background: #246bfd;

    box-shadow:
        0 0 30px rgba(36, 107, 253, 0.25);
}

.primary-btn:hover {
    transform: translateY(-3px);

    background: #3479ff;

    box-shadow:
        0 0 40px rgba(36, 107, 253, 0.5);
}

.secondary-btn {
    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.04);

    border:
        1px solid rgba(255, 255, 255, 0.12);
}

.secondary-btn:hover {
    transform: translateY(-3px);

    background:
        rgba(255, 255, 255, 0.08);

    border-color:
        rgba(255, 255, 255, 0.2);
}


/* =========================
   HOME HERO
========================= */

.hero {
    min-height: 100vh;

    padding: 150px 8% 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background:
        rgba(23, 91, 220, 0.15);

    filter: blur(120px);

    pointer-events: none;
}

.hero-content {
    max-width: 950px;

    position: relative;

    z-index: 2;
}

.hero h1 {
    margin-bottom: 25px;

    font-size:
        clamp(60px, 10vw, 130px);

    font-weight: 900;

    line-height: 0.9;

    letter-spacing: -5px;
}

.hero h1 span {
    color: #2878ff;

    text-shadow:
        0 0 30px rgba(40, 120, 255, 0.25),
        0 0 80px rgba(40, 120, 255, 0.15);
}

.hero h2 {
    margin-bottom: 30px;

    color: #e5e9f0;

    font-size:
        clamp(20px, 3vw, 35px);

    letter-spacing: 5px;
}

.hero-description {
    max-width: 680px;

    margin: 0 auto;

    color: #929bad;

    font-size: 18px;

    line-height: 1.8;
}

.hero-buttons {
    margin-top: 45px;

    display: flex;
    justify-content: center;

    gap: 15px;
}


/* =========================
   GENERIC PAGE HERO
========================= */

.page-hero {
    min-height: 540px;

    padding:
        165px 8% 90px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(40, 120, 255, 0.16),
            transparent 38%
        ),
        #05070c;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);
}

.page-hero::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 300px;

    top: 55%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        rgba(40, 120, 255, 0.10);

    filter: blur(100px);

    pointer-events: none;
}

.page-hero > * {
    position: relative;

    z-index: 2;
}

.page-hero h1 {
    max-width: 1000px;

    margin-bottom: 25px;

    font-size:
        clamp(48px, 7vw, 90px);

    line-height: 1;

    letter-spacing: -4px;
}

.page-hero h1 span {
    color: #2878ff;

    text-shadow:
        0 0 35px rgba(40, 120, 255, 0.2);
}

.page-hero > p:last-child {
    max-width: 720px;

    color: #929bad;

    font-size: 18px;

    line-height: 1.8;
}


/* =========================
   HOME INTRO
========================= */

.home-intro {
    padding: 120px 8%;

    text-align: center;

    background: #080b12;

    border-top:
        1px solid rgba(255, 255, 255, 0.05);
}

.home-intro h2 {
    margin-bottom: 25px;

    font-size:
        clamp(38px, 5vw, 65px);

    letter-spacing: -2px;
}

.home-intro h2 span {
    color: #2878ff;
}

.home-intro > p:not(.section-label) {
    max-width: 720px;

    margin: 0 auto;

    color: #929bad;

    font-size: 17px;

    line-height: 1.8;
}

.home-cards {
    max-width: 1200px;

    margin: 60px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.home-card {
    min-height: 230px;

    padding: 35px 30px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    text-align: left;

    color: #ffffff;

    text-decoration: none;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 16px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.home-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #2878ff,
            transparent
        );

    opacity: 0;

    transition:
        opacity 0.3s ease;
}

.home-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(40, 120, 255, 0.35);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(40, 120, 255, 0.08);
}

.home-card:hover::before {
    opacity: 1;
}

.home-card > span {
    width: 58px;
    height: 58px;

    margin-bottom: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(40, 120, 255, 0.10);

    border:
        1px solid rgba(40, 120, 255, 0.22);

    border-radius: 14px;

    font-size: 27px;
}

.home-card h3 {
    margin-bottom: 12px;

    font-size: 20px;
}

.home-card p {
    color: #929bad;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================
   CONTENT PAGES
========================= */

.content-section {
    padding: 120px 8%;

    background: #080b12;

    border-top:
        1px solid rgba(255, 255, 255, 0.05);
}

.content-section.alternate {
    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(40, 120, 255, 0.08),
            transparent 35%
        ),
        #05070c;
}

.content-two-column {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 70px;
}

.content-two-column h2 {
    margin-bottom: 25px;

    font-size:
        clamp(38px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -3px;
}

.content-two-column h2 span {
    color: #2878ff;
}

.content-two-column > div > p:not(.section-label) {
    margin-top: 18px;

    color: #929bad;

    font-size: 16px;

    line-height: 1.8;
}

.info-card {
    padding: 38px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.015)
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 18px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.2);
}

.info-card h3 {
    margin-bottom: 20px;

    font-size: 23px;
}

.info-card p {
    margin-top: 16px;

    color: #929bad;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================
   VALUES / COMMUNITY
========================= */

.values-section {
    padding: 120px 8%;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(40, 120, 255, 0.12),
            transparent 35%
        ),
        #05070c;

    border-top:
        1px solid rgba(255, 255, 255, 0.05);
}

.values-grid {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.value-card {
    min-height: 260px;

    padding: 34px 30px;

    text-align: left;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 14px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.value-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #2878ff,
            transparent
        );

    opacity: 0;

    transition:
        opacity 0.3s ease;
}

.value-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -80px;
    right: -80px;

    border-radius: 50%;

    background:
        rgba(40, 120, 255, 0.08);

    filter: blur(45px);

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.3s ease;
}

.value-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(40, 120, 255, 0.35);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(40, 120, 255, 0.08);
}

.value-card:hover::before,
.value-card:hover::after {
    opacity: 1;
}

.value-icon {
    width: 56px;
    height: 56px;

    margin-bottom: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 26px;

    background:
        rgba(40, 120, 255, 0.1);

    border:
        1px solid rgba(40, 120, 255, 0.2);

    border-radius: 12px;
}

.value-card h3 {
    margin-bottom: 14px;

    font-size: 19px;

    line-height: 1.35;
}

.value-card p {
    color: #929bad;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================
   WELCOME PAGE
========================= */

.welcome-section {
    padding: 120px 8%;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(40, 120, 255, 0.08),
            transparent 30%
        ),
        #080b12;

    border-top:
        1px solid rgba(255, 255, 255, 0.05);
}

.welcome-layout {
    max-width: 1200px;

    margin: 0 auto 60px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: center;
}

.welcome-left h2 {
    margin-bottom: 25px;

    font-size:
        clamp(40px, 5vw, 70px);

    line-height: 1.05;

    letter-spacing: -3px;
}

.welcome-left h2 span {
    color: #2878ff;
}

.welcome-text {
    max-width: 560px;

    color: #929bad;

    font-size: 17px;

    line-height: 1.8;
}

.welcome-message {
    margin-top: 35px;

    padding: 22px 24px;

    display: flex;

    gap: 18px;

    align-items: center;

    background:
        rgba(40, 120, 255, 0.06);

    border:
        1px solid rgba(40, 120, 255, 0.2);

    border-radius: 14px;
}

.welcome-heart {
    font-size: 30px;
}

.welcome-message strong {
    display: block;

    margin-bottom: 5px;

    font-size: 18px;
}

.welcome-message p {
    color: #929bad;

    font-size: 14px;

    line-height: 1.6;
}

.inclusive-card {
    padding: 35px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 16px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25);
}

.inclusive-card h3 {
    margin-bottom: 25px;

    font-size: 22px;
}

.inclusive-list {
    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 14px;
}

.inclusive-list li {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: #b7bfcc;

    font-size: 15px;

    line-height: 1.6;
}

.inclusive-list li span {
    width: 24px;
    height: 24px;

    min-width: 24px;

    margin-top: 1px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background:
        rgba(40, 120, 255, 0.15);

    border:
        1px solid rgba(40, 120, 255, 0.3);

    border-radius: 50%;

    font-size: 12px;
    font-weight: 800;
}

.respect-banner {
    max-width: 1200px;

    margin: 0 auto;

    padding: 30px 35px;

    display: flex;

    gap: 22px;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(40, 120, 255, 0.10),
            rgba(40, 120, 255, 0.03)
        );

    border:
        1px solid rgba(40, 120, 255, 0.25);

    border-radius: 16px;
}

.respect-icon {
    width: 58px;
    height: 58px;

    min-width: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 28px;

    background:
        rgba(40, 120, 255, 0.12);

    border:
        1px solid rgba(40, 120, 255, 0.25);

    border-radius: 14px;
}

.respect-banner h3 {
    margin-bottom: 8px;

    font-size: 20px;
}

.respect-banner p {
    max-width: 980px;

    color: #929bad;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================
   EVENTS
========================= */

.events-section {
    padding: 120px 8%;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(40, 120, 255, 0.10),
            transparent 35%
        ),
        #05070c;

    border-top:
        1px solid rgba(255, 255, 255, 0.05);
}

.events-grid {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.event-card {
    min-height: 320px;

    padding: 28px;

    display: flex;

    flex-direction: column;

    text-align: left;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 16px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.event-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(40, 120, 255, 0.35);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(40, 120, 255, 0.08);
}

.event-date {
    width: 70px;
    height: 70px;

    margin-bottom: 26px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background:
        rgba(40, 120, 255, 0.10);

    border:
        1px solid rgba(40, 120, 255, 0.22);

    border-radius: 14px;
}

.event-day {
    color: #2878ff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.event-number {
    margin-top: 3px;

    font-size: 23px;
    font-weight: 800;
}

.event-content {
    display: flex;

    flex-direction: column;

    flex: 1;
}

.event-tag {
    width: fit-content;

    margin-bottom: 13px;

    padding: 6px 9px;

    color: #5f9cff;

    background:
        rgba(40, 120, 255, 0.08);

    border:
        1px solid rgba(40, 120, 255, 0.18);

    border-radius: 6px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.event-content h3 {
    margin-bottom: 13px;

    font-size: 21px;
}

.event-content p {
    margin-bottom: 25px;

    color: #929bad;

    font-size: 15px;

    line-height: 1.7;
}

.event-meta {
    margin-top: auto;

    padding-top: 18px;

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    border-top:
        1px solid rgba(255, 255, 255, 0.06);
}

.event-meta span {
    color: #a9b1be;

    font-size: 13px;
}

.events-note {
    max-width: 1200px;

    margin: 50px auto 0;

    padding: 28px 32px;

    display: flex;

    align-items: center;

    gap: 22px;

    text-align: left;

    background:
        linear-gradient(
            90deg,
            rgba(40, 120, 255, 0.10),
            rgba(40, 120, 255, 0.03)
        );

    border:
        1px solid rgba(40, 120, 255, 0.24);

    border-radius: 16px;
}

.events-note-icon {
    width: 56px;
    height: 56px;

    min-width: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 27px;

    background:
        rgba(40, 120, 255, 0.10);

    border:
        1px solid rgba(40, 120, 255, 0.22);

    border-radius: 14px;
}

.events-note h3 {
    margin-bottom: 7px;

    font-size: 19px;
}

.events-note p {
    color: #929bad;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================
   CONTACT
========================= */

.contact-section {
    padding: 120px 8%;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(40, 120, 255, 0.10),
            transparent 35%
        ),
        #080b12;

    border-top:
        1px solid rgba(255, 255, 255, 0.05);
}

.contact-grid {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.contact-card {
    min-height: 330px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    text-align: left;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 16px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(40, 120, 255, 0.35);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(40, 120, 255, 0.08);
}

.contact-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 27px;

    background:
        rgba(40, 120, 255, 0.10);

    border:
        1px solid rgba(40, 120, 255, 0.22);

    border-radius: 14px;
}

.contact-tag {
    width: fit-content;

    margin-bottom: 13px;

    padding: 6px 9px;

    color: #5f9cff;

    background:
        rgba(40, 120, 255, 0.08);

    border:
        1px solid rgba(40, 120, 255, 0.18);

    border-radius: 6px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.contact-card h3 {
    margin-bottom: 14px;

    font-size: 21px;
}

.contact-card p {
    margin-bottom: 25px;

    color: #929bad;

    font-size: 15px;

    line-height: 1.7;
}

.contact-link {
    width: fit-content;

    margin-top: auto;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #5f9cff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
}

.contact-link:hover {
    color: #ffffff;
}

.contact-banner {
    max-width: 1200px;

    margin: 50px auto 0;

    padding: 34px 36px;

    display: flex;

    align-items: center;

    gap: 24px;

    text-align: left;

    background:
        linear-gradient(
            90deg,
            rgba(40, 120, 255, 0.12),
            rgba(40, 120, 255, 0.03)
        );

    border:
        1px solid rgba(40, 120, 255, 0.25);

    border-radius: 18px;
}

.contact-banner-icon {
    width: 64px;
    height: 64px;

    min-width: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 31px;

    background:
        rgba(40, 120, 255, 0.12);

    border:
        1px solid rgba(40, 120, 255, 0.25);

    border-radius: 15px;
}

.contact-banner-content {
    flex: 1;
}

.contact-banner-label {
    margin-bottom: 8px;

    color: #2878ff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;
}

.contact-banner h3 {
    margin-bottom: 8px;

    font-size: 22px;
}

.contact-banner-content > p:last-child {
    max-width: 760px;

    color: #929bad;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================
   FINAL CTA
========================= */

.final-cta {
    min-height: 620px;

    padding: 120px 8%;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(40, 120, 255, 0.12),
            transparent 40%
        ),
        #05070c;

    border-top:
        1px solid rgba(255, 255, 255, 0.05);
}

.final-cta-content {
    max-width: 850px;

    position: relative;

    z-index: 2;
}

.final-crown {
    width: 70px;
    height: 70px;

    margin: 0 auto 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 34px;

    background:
        rgba(40, 120, 255, 0.10);

    border:
        1px solid rgba(40, 120, 255, 0.25);

    border-radius: 18px;
}

.final-cta h2 {
    margin-bottom: 28px;

    font-size:
        clamp(48px, 7vw, 90px);

    line-height: 0.95;

    letter-spacing: -4px;
}

.final-cta h2 span {
    color: #2878ff;
}

.final-cta-content > p:not(.section-label) {
    max-width: 700px;

    margin: 0 auto;

    color: #929bad;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #030509;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);
}

.footer-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding:
        80px 7% 60px;

    display: grid;

    grid-template-columns:
        1.2fr 2fr;

    gap: 90px;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    margin-bottom: 22px;

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 22px;
    font-weight: 900;

    letter-spacing: 2px;
}

.footer-brand > p {
    color: #7f8897;

    font-size: 14px;

    line-height: 1.8;
}

.footer-socials {
    margin-top: 28px;

    display: flex;

    gap: 10px;
}

.footer-socials a {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #aeb6c5;

    text-decoration: none;

    background:
        rgba(255, 255, 255, 0.035);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 10px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.footer-socials a:hover {
    transform:
        translateY(-3px);

    color: #ffffff;

    background:
        rgba(40, 120, 255, 0.12);

    border-color:
        rgba(40, 120, 255, 0.3);
}

.footer-links {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 45px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 13px;
}

.footer-column h3 {
    margin-bottom: 10px;

    font-size: 14px;

    letter-spacing: 1px;
}

.footer-column a {
    color: #7f8897;

    text-decoration: none;

    font-size: 14px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-column a:hover {
    color: #438cff;

    transform:
        translateX(3px);
}

.footer-bottom {
    width: 86%;
    max-width: 1200px;

    margin: 0 auto;

    padding:
        25px 0 30px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    border-top:
        1px solid rgba(255, 255, 255, 0.06);

    color: #626b79;

    font-size: 12px;
}


/* =========================
   SCROLL TOP
========================= */

.scroll-top {
    width: 46px;
    height: 46px;

    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    display: flex;

    align-items: center;
    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px);

    cursor: pointer;

    color: #ffffff;

    background: #246bfd;

    border: none;

    border-radius: 12px;

    font-size: 20px;
    font-weight: 800;

    box-shadow:
        0 10px 35px rgba(36, 107, 253, 0.28);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}

.scroll-top.show {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}

.scroll-top:hover {
    background: #438cff;

    transform:
        translateY(-3px);
}


/* =========================
   REVEAL ANIMATIONS
========================= */

.reveal {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .navbar nav {
        gap: 18px;
    }

    .navbar nav a {
        font-size: 13px;
    }

}


@media (max-width: 1000px) {

    .values-grid,
    .events-grid,
    .contact-grid,
    .home-cards {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .home-card:last-child,
    .contact-card:last-child {
        grid-column: 1 / -1;
    }

}


@media (max-width: 950px) {

    .content-two-column,
    .welcome-layout {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .footer-brand {
        max-width: 600px;
    }

}


/* =========================
   MOBILE NAVIGATION
========================= */

@media (max-width: 850px) {

    .navbar {
        height: 75px;

        padding: 0 5%;
    }

    .logo {
        font-size: 17px;
    }

    .crown {
        font-size: 25px;
    }

    .mobile-menu-btn {
        display: flex;

        order: 2;
    }

    .discord-btn {
        order: 3;

        padding: 10px 16px;

        font-size: 13px;
    }

    .navbar nav {
        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        padding: 20px 5% 25px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 4px;

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform:
            translateY(-10px);

        background:
            rgba(3, 5, 9, 0.98);

        backdrop-filter:
            blur(18px);

        border-bottom:
            1px solid rgba(255, 255, 255, 0.08);

        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.35);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .navbar nav.open {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform:
            translateY(0);
    }

    .navbar nav a {
        width: 100%;

        padding: 15px 14px;

        font-size: 15px;

        border-radius: 8px;
    }

    .navbar nav a::after {
        display: none;
    }

    .navbar nav a:hover,
    .navbar nav a.active {
        color: #ffffff;

        background:
            rgba(40, 120, 255, 0.09);
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .hero {
        min-height: 100vh;

        padding:
            130px 5% 80px;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .hero h2 {
        letter-spacing: 2px;

        line-height: 1.4;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: center;
    }

    .hero-buttons .primary-btn,
    .hero-buttons .secondary-btn {
        width: 100%;

        max-width: 320px;
    }


    .page-hero {
        min-height: 460px;

        padding:
            135px 5% 75px;
    }

    .page-hero h1 {
        letter-spacing: -2px;
    }

    .page-hero > p:last-child {
        font-size: 16px;
    }


    .home-intro,
    .content-section,
    .values-section,
    .welcome-section,
    .events-section,
    .contact-section,
    .final-cta {
        padding:
            90px 5%;
    }


    .values-grid,
    .events-grid,
    .contact-grid,
    .home-cards {
        grid-template-columns: 1fr;
    }

    .home-card:last-child,
    .contact-card:last-child {
        grid-column: auto;
    }


    .value-card,
    .event-card,
    .contact-card,
    .home-card {
        min-height: auto;
    }


    .content-two-column {
        gap: 35px;
    }


    .contact-banner {
        align-items: flex-start;

        flex-wrap: wrap;
    }


    .footer-container {
        padding:
            65px 5% 45px;
    }

    .footer-links {
        grid-template-columns:
            1fr 1fr;
    }

    .footer-bottom {
        width: 90%;

        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 600px) {

    .discord-btn {
        display: none;
    }

    .navbar {
        justify-content:
            space-between;
    }


    .page-hero h1 {
        font-size:
            clamp(42px, 13vw, 65px);
    }


    .content-two-column h2 {
        letter-spacing: -2px;
    }


    .inclusive-card,
    .info-card {
        padding: 26px 22px;
    }


    .respect-banner,
    .events-note,
    .contact-banner {
        padding: 24px;

        align-items: flex-start;

        flex-direction: column;
    }


    .contact-banner .primary-btn {
        width: 100%;
    }


    .footer-links {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .logo {
        letter-spacing: 1px;
    }

    .hero h1 {
        font-size:
            clamp(52px, 19vw, 80px);

        letter-spacing: -3px;
    }

    .hero h2 {
        font-size: 18px;
    }

    .section-label {
        letter-spacing: 3px;
    }

    .page-hero h1,
    .home-intro h2,
    .content-two-column h2,
    .welcome-left h2,
    .final-cta h2 {
        letter-spacing: -1px;
    }

    .value-card,
    .event-card,
    .contact-card,
    .home-card {
        padding: 26px 22px;
    }

    .final-cta h2 {
        font-size: 50px;
    }

    .scroll-top {
        width: 42px;
        height: 42px;

        right: 16px;
        bottom: 16px;
    }

}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;

        transform: none;

        transition: none;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }

}

/* =========================
   DYNAMIC EVENTS
========================= */

.event-month {
    margin-top: 2px;

    color: #7f8ca1;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.events-note .primary-btn {
    margin-left: auto;

    flex-shrink: 0;
}


/* =========================
   EMPTY EVENTS
========================= */

.events-empty {
    max-width: 850px;

    margin: 0 auto;

    padding: 80px 40px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(40, 120, 255, 0.09),
            transparent 45%
        ),
        rgba(255, 255, 255, 0.02);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 20px;
}

.events-empty-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 32px;

    background:
        rgba(40, 120, 255, 0.10);

    border:
        1px solid rgba(40, 120, 255, 0.25);

    border-radius: 18px;
}

.events-empty h2 {
    margin-bottom: 22px;

    font-size:
        clamp(38px, 5vw, 60px);

    letter-spacing: -2px;
}

.events-empty h2 span {
    color: #2878ff;
}

.events-empty > p:not(.section-label) {
    max-width: 650px;

    margin: 0 auto 30px;

    color: #929bad;

    font-size: 16px;

    line-height: 1.8;
}


@media (max-width: 800px) {

    .events-note .primary-btn {
        width: 100%;

        margin-left: 0;
        margin-top: 10px;
    }

}


@media (max-width: 600px) {

    .events-empty {
        padding:
            60px 24px;
    }

}

/* =========================
   PUBLIC STAFF
========================= */

.staff-public-card {
    padding: 0;
    min-height: 0;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 16px;
}


/* STAFF IMAGE */

.staff-public-avatar {
    width: 100%;
    aspect-ratio: 1 / 1;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #05070c;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}


.staff-public-avatar img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    background: #05070c;
}


/* FALLBACK ICON */

.staff-public-avatar > span {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 70px;

    background:
        radial-gradient(
            circle at center,
            rgba(40, 120, 255, 0.12),
            transparent 55%
        );
}


/* STAFF INFORMATION */

.staff-public-card > .contact-tag {
    margin:
        22px 24px 0;
}


.staff-public-card > h3 {
    margin:
        12px 24px 0;

    font-size: 20px;
    line-height: 1.35;
}


.staff-public-card > p {
    margin:
        14px 24px 0;

    color: #929bad;

    font-size: 14px;
    line-height: 1.7;
}


.staff-public-discord {
    margin:
        18px 24px 24px;

    padding:
        12px 14px;

    color: #aeb6c5;

    background:
        rgba(40, 120, 255, 0.06);

    border:
        1px solid rgba(40, 120, 255, 0.16);

    border-radius: 9px;

    font-size: 13px;
}


/* =========================
   STAFF RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .staff-public-card {
        min-height: 0;
    }

}


@media (max-width: 800px) {

    .staff-public-avatar {
        aspect-ratio: 1 / 1;
    }

}


@media (max-width: 480px) {

    .staff-public-card {
        padding: 0;
    }

    .staff-public-card > .contact-tag {
        margin:
            18px 20px 0;
    }

    .staff-public-card > h3 {
        margin:
            10px 20px 0;
    }

    .staff-public-card > p {
        margin:
            12px 20px 0;
    }

    .staff-public-discord {
        margin:
            16px 20px 20px;
    }

}

/* =========================
   FINAL RESPONSIVE POLISH
========================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

@media (max-width: 850px) {

    body.mobile-menu-open {
        overflow: hidden;
    }

    .navbar nav {
        max-height: calc(100vh - 75px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .navbar nav a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

}

@media (max-width: 600px) {

    .navbar {
        gap: 10px;
    }

    .mobile-menu-btn {
        margin-left: auto;
        flex-shrink: 0;
    }

    .page-hero,
    .hero {
        width: 100%;
    }

    .page-hero h1,
    .hero h1,
    .home-intro h2,
    .content-two-column h2,
    .welcome-left h2,
    .final-cta h2 {
        overflow-wrap: anywhere;
    }

    .event-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-socials {
        flex-wrap: wrap;
    }

    .staff-public-card > h3 {
        overflow-wrap: anywhere;
    }

}

@media (max-width: 380px) {

    .logo {
        font-size: 15px;
        letter-spacing: 0.5px;
    }

    .crown {
        font-size: 22px;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }

    .page-hero h1 {
        font-size: 38px;
    }

}

