* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ffffff;
    --primary-light: #e0e0e0;
    --primary-dark: #888888;
    --secondary: #666666;
    --accent: #999999;
    --neon-purple: #ffffff;
    --neon-blue: #888888;
    --bg-dark: #050507;
    --bg-darker: #020203;
    --bg-card: #0a0a0f;
    --bg-card-hover: #12121a;
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --gradient: linear-gradient(135deg, #ffffff, #888888);
    --gradient-dark: linear-gradient(135deg, #222222, #111111);
    --gradient-btn: linear-gradient(135deg, #333333, #1a1a1a);
    --glow: 0 0 30px rgba(255, 255, 255, 0.2);
    --glow-intense: 0 0 60px rgba(255, 255, 255, 0.4);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Animated Background Grid */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: -1;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: loader-pulse 1.5s infinite, loader-float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.5));
}

@keyframes loader-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes loader-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.loader-bar {
    width: 250px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-top: 30px;
    overflow: hidden;
    position: relative;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: loading 2s ease-in-out forwards;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

@keyframes loading {
    from { width: 0; }
    to { width: 100%; }
}

/* Particles */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(5, 5, 7, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(2, 2, 3, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    transition: all 0.3s;
}

.logo:hover img {
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.6));
}

.logo span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s;
    padding: 8px 0;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.player-count {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.player-count:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    color: var(--text);
    text-decoration: none;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 15px currentColor, 0 0 30px currentColor;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.btn-glow {
    padding: 12px 28px;
    background: var(--gradient-btn);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--glow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-intense);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(50, 50, 50, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    pointer-events: none;
    z-index: 5;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, rgba(5, 5, 7, 0.95) 0%, rgba(20, 20, 25, 0.3) 50%, rgba(5, 5, 7, 0.98) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: hero-glow 8s ease-in-out infinite;
}

@keyframes hero-glow {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
    margin-top: 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--primary);
    border-radius: 50px;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--primary-light);
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 0 35px rgba(255, 255, 255, 0.6); }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 30px;
}

.hero-title .line1 {
    display: block;
    font-size: 1.8rem;
    color: var(--text-muted);
    letter-spacing: 15px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title .line2 {
    display: block;
    font-size: 10rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 20px;
    filter: drop-shadow(0 0 100px rgba(255, 255, 255, 0.5));
    position: relative;
    animation: fadeInUp 1s ease-out 0.4s both, text-shimmer 3s ease-in-out infinite;
}

@keyframes text-shimmer {
    0%, 100% { filter: drop-shadow(0 0 80px rgba(255, 255, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 120px rgba(255, 255, 255, 0.8)); }
}

.glitch-text {
    position: relative;
    animation: glitch 5s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

@keyframes glitch {
    0%, 92%, 100% { transform: translate(0); filter: drop-shadow(0 0 80px rgba(255, 255, 255, 0.5)); }
    93% { transform: translate(-3px, 3px); filter: hue-rotate(90deg); }
    94% { transform: translate(3px, -3px); }
    95% { transform: translate(-3px, -3px); filter: hue-rotate(180deg); }
    96% { transform: translate(3px, 3px); filter: drop-shadow(0 0 80px rgba(255, 255, 255, 0.5)); }
}

@keyframes glitch-anim {
    0% { clip: rect(30px, 9999px, 10px, 0); }
    25% { clip: rect(50px, 9999px, 80px, 0); }
    50% { clip: rect(20px, 9999px, 60px, 0); }
    75% { clip: rect(70px, 9999px, 100px, 0); }
    100% { clip: rect(10px, 9999px, 40px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(70px, 9999px, 100px, 0); }
    25% { clip: rect(20px, 9999px, 60px, 0); }
    50% { clip: rect(50px, 9999px, 80px, 0); }
    75% { clip: rect(30px, 9999px, 10px, 0); }
    100% { clip: rect(60px, 9999px, 90px, 0); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.6s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary, .btn-secondary {
    padding: 20px 45px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-btn);
    color: white;
    box-shadow: var(--glow);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--glow-intense), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: var(--glass);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15), 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.btn-huge {
    padding: 22px 55px;
    font-size: 1.25rem;
}

.scroll-indicator {
    display: none;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scroll {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0; top: 20px; }
}

/* Countdown Badge */
.countdown-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--primary);
    border-radius: 15px;
    margin-bottom: 30px;
}

.countdown-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-light);
}

.countdown {
    display: flex;
    align-items: center;
    gap: 5px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.countdown-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: white;
    line-height: 1;
}

.countdown-unit {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 2px;
}

.countdown-separator {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    letter-spacing: 3px;
}

/* About Section */
.about {
    background: var(--bg-dark);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
    animation: float-glow 10s ease-in-out infinite;
}

@keyframes float-glow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--bg-darker));
    pointer-events: none;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 600;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    padding: 15px 18px;
    background: var(--glass);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.about-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-feature i {
    color: var(--primary);
    font-size: 1.1rem;
}

.about-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo styling without container */
.about-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
    transition: transform 0.3s ease;
}

.about-logo {
    max-width: 100%;
    width: auto;
    max-height: 400px;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.about-logo:hover {
    transform: scale(1.03);
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Features Grid */
.features {
    background: var(--bg-darker);
    overflow: visible;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: pulse-slow 8s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.features::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    pointer-events: none;
    z-index: 1;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 10;
    flex: 0 1 calc(33.333% - 24px);
    max-width: 400px;
    backdrop-filter: blur(20px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.7s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: var(--glass);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary);
    border: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s;
}

.feature-card:hover .feature-icon::before {
    opacity: 0.5;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.feature-card:hover h3 {
    color: var(--primary);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Factions */
.factions {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.factions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.factions::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--bg-darker));
    pointer-events: none;
    z-index: 1;
}

.factions-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* NEW Faction Cards */
.factions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.faction-card-new {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faction-card-new:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.2);
}

.faction-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: all 0.4s ease;
}

.faction-icon-bg.state {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: #3b82f6;
}

.faction-icon-bg.medic {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
    color: #ef4444;
}

.faction-icon-bg.gang {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    color: rgba(255, 255, 255, 0.8);
}

.faction-icon-bg.mafia {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.15) 0%, rgba(100, 116, 139, 0.05) 100%);
    color: #64748b;
}

.faction-card-new:hover .faction-icon-bg {
    font-size: 4.5rem;
}

.faction-card-new:hover .faction-icon-bg.state { color: #60a5fa; }
.faction-card-new:hover .faction-icon-bg.medic { color: #f87171; }
.faction-card-new:hover .faction-icon-bg.gang { color: #fff; }
.faction-card-new:hover .faction-icon-bg.mafia { color: #94a3b8; }

.faction-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.faction-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.6) saturate(0.9);
}

.faction-card-new:hover .faction-bg img {
    transform: scale(1.1);
    filter: brightness(0.75) saturate(1.1);
}

.faction-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(10,10,15,1) 0%, rgba(10,10,15,0.95) 80%, transparent 100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faction-card-new:hover .faction-info {
    background: linear-gradient(to top, rgba(10,10,15,1) 0%, rgba(10,10,15,0.98) 90%, transparent 100%);
}

.faction-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.faction-badge.state {
    background: rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.faction-badge.medic {
    background: rgba(239, 68, 68, 0.3);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.faction-badge.gang {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.faction-badge.mafia {
    background: rgba(148, 163, 184, 0.2);
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.faction-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: #fff;
}

.faction-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.5;
}

.faction-stats {
    display: flex;
    gap: 15px;
    margin-top: 12px;
}

.faction-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.faction-stats i {
    font-size: 0.7rem;
}

/* Glow effect on hover */
.faction-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 50%;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.faction-card-new:hover .faction-glow {
    opacity: 0.4;
}

.faction-glow.state {
    background: #3b82f6;
}

.faction-glow.medic {
    background: #ef4444;
}

.faction-glow.gang {
    background: #ffffff;
}

.faction-glow.mafia {
    background: #64748b;
}

.faction-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.faction-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}

.faction-card:hover::before {
    opacity: 1;
}

.faction-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 255, 255, 0.15);
}

.faction-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.faction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.faction-card:hover .faction-image img {
    transform: scale(1.15);
    filter: brightness(1);
}

.faction-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 5, 7, 0.98) 0%, rgba(5, 5, 7, 0.6) 40%, rgba(5, 5, 7, 0.2) 70%, transparent 100%);
    transition: background 0.5s;
}

.faction-card:hover .faction-overlay {
    background: linear-gradient(to top, rgba(5, 5, 7, 0.95) 0%, rgba(5, 5, 7, 0.4) 50%, transparent 100%);
}

.faction-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faction-card:hover .faction-content {
    transform: translateY(0);
}

.faction-type {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.faction-card.state .faction-type {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.faction-card.medic .faction-type {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.faction-card.gang .faction-type {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.faction-card.mafia .faction-type {
    background: linear-gradient(135deg, #1e293b, #475569);
}

.faction-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.faction-card:hover .faction-content h3 {
    color: var(--primary);
}

.faction-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.faction-card:hover .faction-content p {
    opacity: 1;
}

.btn-faction {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    padding: 10px 0;
    position: relative;
}

.btn-faction::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.4s;
}

.btn-faction:hover::before {
    width: 100%;
}

.btn-faction:hover {
    color: var(--primary);
    gap: 18px;
}

.btn-faction::after {
    content: '→';
    transition: transform 0.3s;
}

.btn-faction:hover::after {
    transform: translateX(5px);
}

/* Team Section */
.team {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
    pointer-events: none;
    z-index: 1;
}

.team::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    pointer-events: none;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.team-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.05), transparent 30%);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.5s;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(255, 255, 255, 0.1);
}

.team-avatar {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 25px;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                var(--gradient) border-box;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-avatar img {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.team-status {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 4px solid var(--bg-darker);
}

.team-status.online {
    background: #22c55e;
    box-shadow: 0 0 15px #22c55e, 0 0 30px rgba(34, 197, 94, 0.3);
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { box-shadow: 0 0 15px #22c55e, 0 0 30px rgba(34, 197, 94, 0.3); }
    50% { box-shadow: 0 0 20px #22c55e, 0 0 40px rgba(34, 197, 94, 0.5); }
}

.team-status.offline {
    background: #71717a;
}

.team-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.team-card:hover h4 {
    color: var(--primary);
}

.team-role {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.team-role.owner {
    background: var(--gradient);
    color: white;
}

.team-role.co-owner {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
}

.team-role.dev {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
}

.team-role.admin {
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: white;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 44px;
    height: 44px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Join Section */
.join {
    position: relative;
    background: var(--bg-dark);
    overflow: visible;
    padding: 120px 0;
}

.join::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse-slow 10s ease-in-out infinite;
}

.join::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--bg-darker));
    pointer-events: none;
    z-index: 1;
}

.join-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.03) 0%, transparent 70%);
    opacity: 1;
}

.join-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.join h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    margin-bottom: 25px;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.join-content > p {
    color: var(--text-muted);
    font-size: 1.3rem;
    margin-bottom: 70px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin: 70px 0;
    flex-wrap: wrap;
}

.step {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px 35px;
    max-width: 300px;
    text-align: center;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.5s, width 0.5s;
}

.step:hover::before {
    opacity: 1;
    width: 100%;
}

.step:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    transition: all 0.5s;
}

.step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.step h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.step:hover h4 {
    color: var(--primary);
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-arrow {
    color: var(--primary);
    font-size: 1.8rem;
    animation: arrow-bounce 2s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(10px); opacity: 1; }
}

.join-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.server-info {
    display: flex;
    justify-content: center;
}

.server-ip {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 30px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.server-ip:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.server-ip i {
    color: var(--primary);
    font-size: 1.2rem;
}

.server-ip span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 3px;
}

.copy-btn {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 10px 16px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.copy-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
    position: relative;
}

.footer-brand .logo {
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.footer-brand .logo:hover {
    transform: scale(1.05);
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 80px;
    margin-left: auto;
}

.footer-column h4 {
    margin-bottom: 25px;
    color: var(--text);
    font-size: 1.1rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.footer-column a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.4s;
}

.footer-column a:hover::before {
    width: 100%;
}

.footer-column a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-8px) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.disclaimer {
    margin-top: 12px;
    font-size: 0.8rem !important;
    opacity: 0.4;
}

/* Mobile Navigation */
.nav-links.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(9, 9, 11, 0.98);
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .feature-card {
        flex: 0 1 calc(50% - 15px);
    }
    
    .factions-slider,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title .line2 {
        font-size: 6rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 7, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9998;
        padding-top: 0;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        text-align: center;
        list-style: none;
    }
    
    .nav-links a {
        font-size: 1.3rem;
        font-family: 'Bebas Neue', sans-serif;
        letter-spacing: 3px;
        color: var(--text);
    }
    
    .hamburger {
        display: flex;
        z-index: 9999;
    }
    
    .navbar {
        z-index: 9997;
    }
    
    .nav-actions {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .about-image {
        order: -1;
        display: flex;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
        overflow: hidden;
    }
    
    .container {
        padding: 0 20px;
        overflow: hidden;
    }
    
    .hero {
        padding-top: 80px;
        min-height: 100vh;
        overflow: hidden;
    }
    
    .hero-content {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        max-width: 100%;
        overflow: hidden;
        text-align: center;
    }
    
    .hero-title .line1 {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    .hero-title .line2 {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .section-header {
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* About Mobile */
    .about-text p {
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-logo {
        max-height: 250px;
    }
    
    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    /* Factions Mobile */
    .factions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .faction-card-new {
        height: 220px;
    }
    
    .faction-icon-bg {
        font-size: 2.5rem;
        height: 50%;
    }
    
    .faction-info {
        padding: 15px;
    }
    
    .faction-info h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .faction-info p {
        font-size: 0.75rem;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .faction-badge {
        font-size: 0.6rem;
        padding: 3px 10px;
        margin-bottom: 8px;
    }
    
    .faction-stats {
        gap: 10px;
    }
    
    .faction-stats span {
        font-size: 0.65rem;
    }
    
    /* Join Mobile */
    .join-steps {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .step {
        padding: 25px 20px;
        text-align: center;
        width: 100%;
    }
    
    .join-content {
        text-align: center;
    }
    
    .join-content p {
        text-align: center;
    }
    
    .join-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .join-buttons a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    /* Server IP Mobile */
    .server-ip {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Footer Mobile */
    .footer-brand p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .btn-huge {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    /* Navbar Mobile */
    .navbar .container {
        padding: 0 15px;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .logo span {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title .line1 {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .hero-title .line2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    /* Factions 1 Column on small phones */
    .factions-grid {
        grid-template-columns: 1fr;
    }
    
    .faction-card-new {
        height: 180px;
    }
    
    .faction-icon-bg {
        font-size: 2rem;
    }
    
    .feature-card,
    .step {
        padding: 20px 15px;
    }
    
    .server-ip {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .server-ip code {
        font-size: 1rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: var(--gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
}

.back-to-top:hover::before {
    opacity: 0.5;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Cursor Trail Effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, opacity 0.3s;
    opacity: 0;
}

.cursor-glow.active {
    opacity: 1;
}

/* Magnetic Button Effect */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Text Reveal Animation */
@keyframes text-reveal {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

.text-reveal {
    animation: text-reveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Floating Elements */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(10px) rotate(-1deg); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Noise Texture Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .cursor-glow {
        display: none;
    }
}

/* ===== REGELWERK MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    background: linear-gradient(145deg, #0a0a0f, #050507);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.modal-close {
    position: sticky;
    top: 15px;
    right: 15px;
    float: right;
    margin: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.regelwerk-container {
    padding: 40px 50px 50px;
}

.regelwerk-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.regelwerk-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Inhaltsverzeichnis */
.regelwerk-toc {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 40px;
}

.regelwerk-toc h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--text);
}

.regelwerk-toc ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.regelwerk-toc a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 15px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.regelwerk-toc a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

/* Regel Sektionen */
.regel-section {
    margin-bottom: 40px;
    scroll-margin-top: 20px;
}

.regel-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Regel Items */
.rule-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.rule-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.rule-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--text-muted);
    min-width: 40px;
    flex-shrink: 0;
}

.rule-content {
    flex: 1;
}

.rule-content strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text);
}

.rule-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.rule-content ul {
    margin-top: 10px;
    padding-left: 20px;
}

.rule-content li {
    color: var(--text-muted);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

/* Rule Badges */
.rule-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
}

.rule-badge.danger {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.rule-badge.warning {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.rule-badge.info {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.rule-badge.success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Blacklist Items */
.blacklist-items {
    list-style: none;
    padding-left: 0;
}

.blacklist-items li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.blacklist-items li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

/* Regelwerk Footer */
.regelwerk-footer {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.regelwerk-footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .regelwerk-container {
        padding: 25px 20px 30px;
    }
    
    .regelwerk-title {
        font-size: 2.5rem;
    }
    
    .regelwerk-toc ul {
        grid-template-columns: 1fr;
    }
    
    .rule-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .regel-section h2 {
        font-size: 1.6rem;
    }
}