@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;600&family=Oswald:wght@400;700&display=swap');

:root {
    --primary-red: #D91A25;
    --dark-red: #7D0A12;
    --white: #FFFFFF;
    --grey: #A6A6A6;
    --black: #050505;
    --peach: #F5CBB6;

    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(255, 255, 255, 0.03);

    --neon-glow: 0 0 10px rgba(217, 26, 37, 0.5), 0 0 20px rgba(217, 26, 37, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.bg-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, var(--black) 100%);
    pointer-events: none;
}

.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.9);
    pointer-events: none;
    z-index: -1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(4px) saturate(0.8);
    transform: scale(1.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.2);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

nav.scrolled {
    padding: 0.5rem 5%;
    background: rgba(5, 5, 5, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--dark-red);
}

.quick-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--primary-red);
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 0.8rem 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo:hover~.quick-nav,
.nav-links:hover~.quick-nav,
.cta-btn:hover~.quick-nav,
.quick-nav:hover {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.3s;
    opacity: 0.6;
}

.quick-nav-item:hover {
    opacity: 1;
    transform: translateY(2px);
}

.quick-nav-item img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--primary-red);
    box-shadow: 0 0 8px var(--primary-red);
}

.quick-nav-item span {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 1px;
    font-weight: 600;
}

.logo {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(217, 26, 37, 0.5);
}

.logo img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    box-shadow: 0 0 15px var(--primary-red);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #ccc;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--white);
    text-shadow: 0 0 8px var(--primary-red);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-red);
    box-shadow: 0 0 10px var(--primary-red);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-btn {
    padding: 0.8rem 2rem;
    background: rgba(217, 26, 37, 0.1);
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 1.5px;
    box-shadow: 0 0 15px rgba(217, 26, 37, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.cta-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 0 30px rgba(217, 26, 37, 0.8);
    transform: translateY(-3px);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.logo-large {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--primary-red);
    box-shadow: 0 0 60px rgba(217, 26, 37, 0.4);
    margin-bottom: 2.5rem;
    object-fit: cover;
    animation: float 6s ease-in-out infinite;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.8);
    background: linear-gradient(to bottom, #fff, #bbb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 span {
    background: linear-gradient(to right, var(--primary-red), var(--peach));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(217, 26, 37, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--grey);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

section {
    padding: 8rem 8%;
    position: relative;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 4rem;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(217, 26, 37, 0.2);
}

.section-title span {
    color: var(--primary-red);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    margin: 15px auto 0;
    box-shadow: 0 0 10px var(--primary-red);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.card {
    background: #2f3136;
    border-left: 4px solid var(--glass-border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: translateY(-5px);
    border-left-color: var(--primary-red);
    background: #36393f;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: none;
}

.card h3 i {
    color: #b9bbbe;
}

.card:hover h3 i {
    color: var(--primary-red);
}

.card p {
    color: #b9bbbe;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.voice-channel {
    background: #2f3136;
    padding: 8px 10px;
    border-radius: 4px;
    margin-bottom: 1rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.voice-channel:hover {
    background: #393c43;
}

.voice-channel span {
    color: #8e9297;
    font-weight: 500;
    font-size: 0.95rem;
}

.voice-channel:hover span {
    color: var(--white);
}

.voice-icon {
    color: #8e9297;
    font-size: 1rem;
}

.voice-channel:hover .voice-icon {
    color: var(--white);
}


.user-avatars {
    display: flex;
    margin-left: auto;
}

.user-avatars img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #2f3136;
    margin-left: -8px;
}

.tag {
    display: none;
}

.card-action {
    display: inline-block;
    padding: 6px 16px;
    background: #5865F2;
    color: white;
    font-size: 0.85rem;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.card-action:hover {
    background: #4752c4;
}

.rules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.gallery-section {
    position: relative;
    margin-bottom: 5rem;
    padding: 2rem;
    background: linear-gradient(to right, transparent, rgba(125, 10, 18, 0.05), transparent);
    border-top: 1px solid rgba(217, 26, 37, 0.1);
    border-bottom: 1px solid rgba(217, 26, 37, 0.1);
}

.gallery-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 5px solid var(--primary-red);
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(217, 26, 37, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.image-scroller {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 1rem;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.image-scroller::-webkit-scrollbar {
    display: none;
}

.gallery-img-container {
    position: relative;
    flex: 0 0 auto;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-img {
    height: 280px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    background: #000;
    padding: 10px;
    border-radius: 4px;
    border: 3px solid #2a2a2a;
    outline: 1px solid var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 10px rgba(217, 26, 37, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    display: block;
    font-weight: 700;
}

.staff-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.staff-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 1px;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.staff-name:hover {
    background: var(--primary-red);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(217, 26, 37, 0.4);
}

.gallery-img-container::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 16px;
    background: linear-gradient(45deg, var(--primary-red), transparent, var(--dark-red));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-img-container:hover {
    transform: scale(1.05) translateY(-5px);
    z-index: 10;
}

.gallery-img-container:hover .gallery-img {
    border-color: var(--white);
    box-shadow: 0 0 25px rgba(217, 26, 37, 0.4);
}

.gallery-img-container:hover::before {
    opacity: 1;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--primary-red);
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    opacity: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.gallery-wrapper:hover .nav-btn {
    opacity: 1;
}

.nav-btn:hover {
    background: var(--primary-red);
    box-shadow: 0 0 20px var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.nav-prev {
    left: -25px;
}

.nav-next {
    right: -25px;
}

.rule-category {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.rule-category::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-red);
}

.rule-category h3 {
    color: var(--primary-red);
    font-family: 'Oswald', sans-serif;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rule-item {
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease;
}

.rule-item:hover {
    transform: translateX(5px);
}

.rule-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.rule-item p {
    color: var(--grey);
    font-size: 0.95rem;
    font-weight: 300;
}

.staff-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.staff-card {
    text-align: center;
    width: 280px;
    padding: 2rem;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 0.8), transparent);
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.staff-card:hover {
    border-color: rgba(217, 26, 37, 0.3);
    background: radial-gradient(circle at center, rgba(40, 40, 40, 0.9), rgba(10, 10, 10, 0.8));
    transform: translateY(-10px) scale(1.02);
}

.staff-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-red);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.staff-card:hover .staff-img {
    box-shadow: 0 0 30px rgba(217, 26, 37, 0.6);
    transform: rotate(5deg) scale(1.05);
}

.staff-role {
    color: var(--primary-red);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 700;
}

.premium-features {
    padding: 8rem 8%;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 0.4), transparent);
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    background: rgba(35, 35, 35, 0.6);
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(217, 26, 37, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(217, 26, 37, 0.1), rgba(0, 0, 0, 0.5));
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.5s ease;
    border: 1px solid rgba(217, 26, 37, 0.2);
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 0 30px rgba(217, 26, 37, 0.4);
    border-radius: 50%;
}

.feature-card h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-card p {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.join-cta {
    padding: 6rem 5%;
    text-align: center;
    background: radial-gradient(circle at center, rgba(125, 10, 18, 0.2), transparent);
}

.cta-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-content p {
    color: var(--grey);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.cta-btn-large {
    padding: 1.2rem 3rem;
    background: var(--primary-red);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 0 30px rgba(217, 26, 37, 0.5);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(217, 26, 37, 0.8);
    background: var(--white);
    color: var(--primary-red);
}

footer {
    background: var(--black);
    padding: 4rem 5%;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer-content p {
    color: var(--grey);
    margin-top: 1.5rem;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.footer-links a:hover {
    color: var(--white);
    background: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(217, 26, 37, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {

    .bg-wrapper,
    .vignette {
        display: block;
    }

    header {
        padding-top: 120px;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        margin-top: 2rem;
        transform: translateY(0);
        width: 100%;
        padding: 0 1rem;
    }

    .logo-large {
        width: 180px;
        height: 180px;
        margin-bottom: 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    section {
        padding: 4rem 5%;
    }

    .quick-nav {
        display: none;
    }

    .nav-links {
        display: none;
    }
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);

    justify-content: center;
    align-items: center;
    padding: 0;
}

.lightbox-content {
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--primary-red);
    text-decoration: none;
    cursor: pointer;
}

.caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #ccc;
    padding: 10px;
    pointer-events: none;
}

@media (max-width: 768px) {
    .lightbox-content {
        width: 95%;
        max-width: 95%;
    }

    .close-btn {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }
}
