:root {
    --primary: #bc13fe;
    /* Vibrant Purple/Mauve */
    --primary-dark: #8e0ebe;
    --background: #0a0a0a;
    --surface: #141414;
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary), #8e0ebe);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), #e100ff);
    z-index: 2000;
    box-shadow: 0 0 10px rgba(188, 19, 254, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(188, 19, 254, 0.15), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(188, 19, 254, 0.15), transparent 40%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(188, 19, 254, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: pulseBg 12s infinite alternate ease-in-out;
}

@keyframes pulseBg {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

span {
    color: var(--primary);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(188, 19, 254, 0.3));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(235, 255, 0, 0.2);
    background-color: var(--primary-dark);
}

.btn-secondary {
    background: var(--glass);
    color: var(--text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-discord {
    background-color: #5865F2;
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.btn-discord:hover {
    background-color: #4752c4;
    transform: scale(1.05);
}

.btn-vote {
    background: linear-gradient(135deg, #ffd700, #ffae00);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.btn-vote:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #fff200, #ffae00);
}

.btn-connect {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(188, 19, 254, 0.5);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.15);
}

.btn-connect:hover {
    background: rgba(188, 19, 254, 0.2);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(188, 19, 254, 0.35);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 10rem;
    position: relative;
    background: url('hero_bg.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.4), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: -220px;
    position: relative;
    z-index: 20;
}

.stat-card {
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2rem 1rem 1.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(188, 19, 254, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(188, 19, 254, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(188, 19, 254, 0.2);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card h3 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(to bottom, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.stat-card p {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #555;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.status-dot.online {
    background: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    animation: pulse 2s infinite;
}

.status-dot.offline {
    background: #ff4757;
    box-shadow: 0 0 15px rgba(255, 71, 87, 0.6);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.stat-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-link {
    color: #ffd700;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.stat-info,
#server-ip {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 10rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3rem;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(188, 19, 254, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card:hover {
    border-color: rgba(188, 19, 254, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(188, 19, 254, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary), #e100ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Lore Section */
.lore {
    position: relative;
    padding: 10rem 0;
    background:
        linear-gradient(rgba(10, 10, 10, 0.96), rgba(10, 10, 10, 0.96)),
        url('hero_bg.png') center/cover fixed;
    overflow: hidden;
}

.lore-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(188, 19, 254, 0.12), transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(188, 19, 254, 0.08), transparent 60%);
    pointer-events: none;
}

.lore-content {
    position: relative;
    z-index: 2;
}

.lore-header {
    text-align: center;
    margin-bottom: 5rem;
}

.lore-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(188, 19, 254, 0.1);
    border: 1px solid rgba(188, 19, 254, 0.3);
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 1.2rem;
}

.lore-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.lore-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-style: italic;
}

.lore-body {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.lore-body p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

.lore-body strong {
    color: var(--text);
    font-weight: 700;
}

.lore-highlight {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    padding: 1.5rem 0;
    position: relative;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(188, 19, 254, 0.5);
}

.lore-highlight::before,
.lore-highlight::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.lore-highlight::before {
    top: 0;
}

.lore-highlight::after {
    bottom: 0;
}

.lore-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text);
    text-align: center;
    border-left: 3px solid var(--primary);
    padding: 1rem 2rem;
    background: rgba(188, 19, 254, 0.05);
    border-radius: 0 12px 12px 0;
}

.lore-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.2rem 0;
}

.lore-list-item {
    color: var(--text-muted);
    font-size: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.lore-list-item::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.lore-duality {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: 1rem 0;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 2.5rem;
}

.lore-duality-side {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.lore-duality-side p {
    margin-bottom: 0.5rem;
}

.lore-duality-side p:last-child {
    margin-bottom: 0;
}

.lore-duality-side.dark {
    color: rgba(188, 19, 254, 0.9);
}

.lore-duality-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
}

.lore-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.lore-pillar {
    text-align: center;
    padding: 1.2rem;
    background: rgba(188, 19, 254, 0.07);
    border: 1px solid rgba(188, 19, 254, 0.2);
    border-radius: 14px;
    transition: var(--transition);
}

.lore-pillar:hover {
    background: rgba(188, 19, 254, 0.14);
    transform: translateY(-4px);
}

.lore-pillar span {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    font-style: italic;
}

.lore-power {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem 0;
}

.lore-power span {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
}

.lore-power span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.4s ease;
}

.lore-power span:hover::after {
    width: 100%;
}

.lore-finale {
    text-align: center;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 1rem;
}

.lore-finale p {
    text-align: center;
    font-style: italic;
}

.lore-climax {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: var(--text) !important;
    margin: 1.2rem 0 !important;
}

.lore-welcome {
    display: inline-block;
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary), #e100ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(188, 19, 254, 0.4));
    animation: glowPulse 3s infinite alternate ease-in-out;
}

@keyframes glowPulse {
    from {
        filter: drop-shadow(0 0 10px rgba(188, 19, 254, 0.3));
    }

    to {
        filter: drop-shadow(0 0 30px rgba(188, 19, 254, 0.7));
    }
}

/* Community Section */
.community {
    padding: 10rem 0;
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), url('hero_bg.png') center/cover fixed;
    text-align: center;
}

.community h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.community p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 5rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(188, 19, 254, 0.3));
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Règlement Section & Tabs */
.reglement {
    padding: 8rem 0;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tabs input[type="radio"] {
    display: none;
}

.tabs label {
    padding: 1rem 2.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    color: var(--text-muted);
}

.tabs label i {
    margin-right: 0.5rem;
}

.tabs label:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tabs input[type="radio"]:checked+label {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(188, 19, 254, 0.3);
}

.tab-content {
    display: none;
    width: 100%;
    margin-top: 3rem;
    animation: fadeIn 0.5s ease;
}

#tab-general:checked~#content-general,
#tab-rp:checked~#content-rp,
#tab-illegal:checked~#content-illegal,
#tab-legal:checked~#content-legal {
    display: block;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.rule-box {
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.rule-box:hover {
    transform: translateX(10px);
    background: rgba(188, 19, 254, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), inset 4px 0 0 var(--primary);
}

.rule-box h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rule-box h5 {
    color: var(--text);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.rule-box ul {
    list-style: none;
    padding-left: 0;
}

.rule-box ul li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.rule-box ul li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

.rule-box.full-width {
    grid-column: 1 / -1;
}

.sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 1rem;
}

/* Team Section */
.team {
    padding: 10rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    justify-content: center;
}

.team-card {
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.team-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(188, 19, 254, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.team-card:hover::after {
    opacity: 1;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(188, 19, 254, 0.1) 0%, transparent 70%);
    transform: translateY(100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.team-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(188, 19, 254, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(188, 19, 254, 0.1);
}

.team-card:hover::before {
    transform: translateY(0);
}

.rank {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
}

.rank i {
    font-size: 0.8rem;
}

/* Rank specific colors */
.team-card:nth-child(1) .rank {
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.2);
    background: rgba(255, 215, 0, 0.05);
}

.team-card:nth-child(2) .rank {
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.2);
    background: rgba(255, 215, 0, 0.05);
}

.team-card:nth-child(3) .rank {
    color: #4facfe;
    border-color: rgba(79, 172, 254, 0.2);
    background: rgba(79, 172, 254, 0.05);
}

.member-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.team-card:hover .member-logo {
    transform: scale(1.05) rotate(2deg);
    border-color: var(--primary);
    color: var(--primary);
}

.team-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(to bottom, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.team-card:hover h3 {
    background: linear-gradient(to bottom, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.member-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(188, 19, 254, 0.3));
}

.team-card:hover .member-logo img {
    filter: drop-shadow(0 0 15px rgba(188, 19, 254, 0.6));
}

/* Reviews Section */
.reviews {
    padding: 8rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.review-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.review-header {
    margin-bottom: 1.5rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
    border: 1px solid var(--glass-border);
}

.stars {
    color: #ffd700;
    font-size: 0.85rem;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
}

/* Leave Review Form */
.leave-review {
    text-align: center;
}

.review-form-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 2rem;
}

.review-form-container.active {
    max-height: 600px;
}

.review-form {
    background: var(--surface);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background: var(--surface);
}

.form-group select option {
    background: var(--surface);
    color: var(--text);
}

/* Responsive Custom */
@media (max-width: 768px) {
    .sub-grid {
        grid-template-columns: 1fr;
    }

    .tabs label {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    .features-grid,
    .stats {
        grid-template-columns: 1fr;
    }

    .stats {
        margin-top: 0;
        padding: 5rem 0;
    }
}