/* ========================================
   GALAXYMC SERVER WEBSITE - STYLING v2.0
   ENHANCED UI WITH CUSTOM ANIMATIONS
   ======================================== */

:root {
    --primary: #0a0e27;
    --secondary: #9d4edd;
    --accent: #3a86ff;
    --dark: #0f3460;
    --light: #e0aaff;
    --success: #06d6a0;
    --warning: #3a86ff;
    --text: #e0e0e0;
    --border: #3d3d5c;
    --glass: rgba(255, 255, 255, 0.05);
    --glow: rgba(157, 78, 221, 0.3);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 50%, #0f3460 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #0a0e27, #1a1a3e, #0f3460, #0a0e27);
    background-size: 400% 400%;
    animation: bgShift 15s ease infinite;
    z-index: -2;
    pointer-events: none;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* White falling stars/particles */
.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: starFall linear infinite;
}

.star.size-1 { width: 2px; height: 2px; }
.star.size-2 { width: 3px; height: 3px; }
.star.size-3 { width: 4px; height: 4px; }

@keyframes starFall {
    0% {
        transform: translateY(-10px) translateX(0);
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.6;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 12px rgba(255, 255, 255, 1),
                     0 0 20px rgba(100, 150, 255, 0.8);
    }
}

@keyframes bgShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ========== HEADER ========== */
.header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid var(--secondary);
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--secondary), transparent);
    filter: blur(8px);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.logo-wrapper:hover .logo-glow {
    opacity: 0.5;
}

.logo-wrapper:hover .logo {
    text-shadow: 0 0 10px var(--secondary);
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.theme-toggle,
.search-toggle {
    background: rgba(157, 78, 221, 0.2);
    border: 1px solid var(--secondary);
    color: var(--light);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.theme-toggle:hover,
.search-toggle:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(157, 78, 221, 0.3);
}

.header-underline {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: slideWidth 2s ease-in-out infinite;
}

@keyframes slideWidth {
    0%, 100% { width: 0; left: 0; }
    50% { width: 100%; left: 0; }
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--light), var(--accent));
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--light);
    background: rgba(157, 78, 221, 0.2);
    transform: translateY(-2px);
}

.nav a:hover::after {
    width: 100%;
}

/* ========== HERO SECTION ENHANCED ========== */
.hero {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 50%, #0f3460 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(157, 78, 221, 0.25), transparent);
    pointer-events: none;
    animation: pulse 3s ease-in-out infinite;
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.hero-title {
    position: relative;
    margin-bottom: 2rem;
}

.glitch {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #e0aaff 0%, #3a86ff 50%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitchText 3s ease-in-out infinite, float 3s ease-in-out infinite;
    font-weight: 900;
    letter-spacing: 3px;
}

@keyframes glitchText {
    0%, 100% { text-shadow: -2px 0 var(--accent), 2px 0 var(--light), 0 0 15px rgba(157, 78, 221, 0.4); }
    50% { text-shadow: 2px 0 var(--accent), -2px 0 var(--light), 0 0 25px rgba(157, 78, 221, 0.6); }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: var(--light);
    animation: fadeInUp 0.8s ease-out;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.glow-button {
    position: relative;
    overflow: hidden;
}

.glow-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.glow-button:active::before {
    width: 300px;
    height: 300px;
}

.animated-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(58, 134, 255, 0.15));
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    backdrop-filter: blur(10px);
    animation: slideUp 0.8s ease-out 0.4s both;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.5rem;
    background: rgba(58, 134, 255, 0.15);
    border-radius: 25px;
    border: 1.5px solid var(--accent);
    font-weight: 600;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(58, 134, 255, 0.2);
}

.info-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.4);
    background: rgba(58, 134, 255, 0.25);
}

.hero-bottom-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,40 Q300,80 600,40 T1200,40 L1200,120 L0,120 Z" fill="%231a1a2e" opacity="0.8"/></svg>');
    background-size: cover;
    animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-25px) translateY(-5px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn {
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.6);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2.5px solid var(--accent);
    box-shadow: 0 0 20px rgba(58, 134, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(58, 134, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(58, 134, 255, 0.5);
    color: white;
}

.server-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 1.1rem;
    color: var(--light);
    padding: 1.5rem;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 10px;
    border: 1px solid var(--secondary);
}

/* ========== CONTAINER & LAYOUT ========== */
.container {
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

@media (max-width: 1200px) {
    .container {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
    }

    .left-sidebar {
        display: none;
    }
}

@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .right-sidebar {
        position: static !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        margin: 1rem auto;
        gap: 1rem;
    }
}

/* ========== LEFT SIDEBAR ========== */
.left-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.menu {
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid var(--secondary);
    border-radius: 10px;
    padding: 1.5rem;
}

.menu h3 {
    margin-bottom: 1rem;
    color: var(--light);
}

.menu ul {
    list-style: none;
}

.menu li {
    margin-bottom: 0.8rem;
}

.menu a {
    color: var(--text);
    text-decoration: none;
    display: block;
    padding: 0.8rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menu a:hover {
    background: rgba(157, 78, 221, 0.3);
    color: var(--light);
    padding-left: 1rem;
}

/* ========== MAIN CONTENT ========== */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    min-height: 100vh;
}

section {
    scroll-margin-top: 100px;
    padding: 2rem 0;
}

section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== FEATURES SECTION ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, rgba(58, 134, 255, 0.1) 100%);
    border: 1px solid var(--secondary);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.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.6s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.2);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    transition: transform 0.3s;
    color: var(--accent);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--light);
}

.feature-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.feature-btn {
    background: linear-gradient(135deg, var(--secondary) 0%, #c77dff 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(157, 78, 221, 0.3);
}

/* ========== ITEMS SECTION ========== */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.item-card {
    background: rgba(157, 78, 221, 0.15);
    border: 1px solid var(--secondary);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.item-card:hover {
    transform: translateY(-8px) rotateZ(2deg);
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(58, 134, 255, 0.25), inset 0 0 20px rgba(58, 134, 255, 0.05);
}

.item-icon {
    font-size: 4rem;
    margin: 0 auto 1.2rem auto;
    animation: iconFloat 3s ease-in-out infinite;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(58, 134, 255, 0.5), 0 0 40px rgba(102, 126, 234, 0.3);
}

.item-card:hover .item-icon {
    animation: iconScale 0.4s ease-in-out forwards;
    text-shadow: 0 0 30px rgba(58, 134, 255, 0.8), 0 0 60px rgba(102, 126, 234, 0.6);
}

.item-card h3 {
    color: var(--light);
    margin-bottom: 0.5rem;
}

.item-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.rarity {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: rgba(58, 134, 255, 0.2);
    color: var(--light);
}

.item-btn {
    background: rgba(58, 134, 255, 0.3);
    color: var(--light);
    border: 1px solid var(--accent);
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.item-btn:hover {
    background: var(--accent);
    color: white;
}

/* ========== WEAPONS SECTION ========== */
.weapons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.weapon-card {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
    border: 1px solid #3a86ff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.weapon-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 71, 111, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.weapon-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--warning);
    box-shadow: 0 15px 40px rgba(239, 71, 111, 0.3), inset 0 0 30px rgba(239, 71, 111, 0.1);
}

.weapon-card:hover::before {
    opacity: 1;
}

.weapon-icon {
    font-size: 4rem;
    margin: 0 auto 1rem auto;
    animation: iconFloat 3s ease-in-out infinite;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(239, 71, 111, 0.5), 0 0 40px rgba(239, 71, 111, 0.3);
}

.weapon-card:hover .weapon-icon {
    animation: iconScale 0.4s ease-in-out forwards;
    text-shadow: 0 0 30px rgba(239, 71, 111, 0.8), 0 0 60px rgba(239, 71, 111, 0.6);
}

.weapon-card h3 {
    color: var(--light);
    margin-bottom: 0.5rem;
}

.weapon-stats {
    display: none;
}

.weapon-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.weapon-btn {
    background: rgba(239, 71, 111, 0.3);
    color: var(--light);
    border: 1px solid rgba(239, 71, 111, 0.8);
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.weapon-btn:hover {
    background: rgba(58, 134, 255, 0.6);
    color: white;
    border-color: #3a86ff;
}

/* ========== VOTE SECTION ========== */
.vote-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vote-card {
    background: rgba(6, 214, 160, 0.1);
    border: 1px solid var(--success);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.vote-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(6, 214, 160, 0.2);
}

.vote-card h3 {
    color: var(--success);
    margin-bottom: 1rem;
}

.vote-rewards ul {
    list-style: none;
    margin: 1rem 0;
}

.vote-rewards li {
    padding: 0.5rem 0;
    color: var(--text);
}

.vote-btn {
    background: linear-gradient(135deg, var(--success) 0%, #06a877 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
}

.vote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 214, 160, 0.3);
}

.vote-sites {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1rem 0;
}

.site-btn {
    background: rgba(6, 214, 160, 0.2);
    color: var(--success);
    border: 1px solid var(--success);
    padding: 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.site-btn:hover {
    background: var(--success);
    color: white;
}

/* ========== COMING SOON ========== */
.coming-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.coming-card {
    background: linear-gradient(135deg, rgba(239, 71, 111, 0.05) 0%, rgba(157, 78, 221, 0.05) 100%);
    border: 2px dashed var(--warning);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.coming-card:hover {
    border-color: var(--accent);
}

.coming-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    color: var(--accent);
}

.coming-card h3 {
    color: var(--light);
    margin-bottom: 0.5rem;
}

.dev-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--warning);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* ========== CONNECT SECTION ========== */
.connect-section {
    margin-bottom: 3rem;
}

.connect-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    animation: slideUp 0.8s ease-out;
}

@media (max-width: 1024px) {
    .connect-box {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .connect-box {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.connection-info,
.connect-methods,
.community {
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid var(--secondary);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    animation: containerSlideIn 0.8s ease-out;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.connection-info::before,
.connect-methods::before,
.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(157, 78, 221, 0.2), 
        transparent);
    animation: shimmerFill 3s ease-in-out infinite;
    pointer-events: none;
}

.connection-info h3,
.connect-methods h3,
.community h3 {
    color: var(--light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes containerSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmerFill {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

.info-item {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.1), rgba(102, 126, 234, 0.1));
    padding: 1.5rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    animation: itemSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1.5px solid rgba(58, 134, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(58, 134, 255, 0.3), inset 0 0 20px rgba(58, 134, 255, 0.1);
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.2), rgba(102, 126, 234, 0.2));
}

.info-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--secondary), transparent);
    animation: fillFromLeft 0.8s ease-out;
}

.info-item:nth-child(1) { animation-delay: 0.1s; }
.info-item:nth-child(2) { animation-delay: 0.2s; }
.info-item:nth-child(3) { animation-delay: 0.3s; }
.info-item:nth-child(4) { animation-delay: 0.4s; }

.info-item .label {
    display: block;
    font-size: 0.9rem;
    color: var(--light);
    margin-bottom: 0.6rem;
    animation: fadeInDown 0.6s ease-out;
    position: relative;
    z-index: 2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item .value {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #fff, var(--light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(58, 134, 255, 0.1), 
        rgba(157, 78, 221, 0.1), 
        transparent);
    opacity: 0;
    animation: pulseGradient 2s ease-in-out infinite;
    pointer-events: none;
}

.info-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--accent), 
        var(--secondary), 
        transparent);
    animation: fillFromLeft 0.8s ease-out;
}

.info-item:nth-child(1) { animation-delay: 0.1s; }
.info-item:nth-child(2) { animation-delay: 0.2s; }
.info-item:nth-child(3) { animation-delay: 0.3s; }
.info-item:nth-child(4) { animation-delay: 0.4s; }

.info-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.2), 
                inset 0 0 15px rgba(58, 134, 255, 0.1);
}

.info-item:hover::before {
    animation: pulseGradient 1s ease-in-out infinite;
}

.info-item .label {
    display: block;
    font-size: 0.85rem;
    color: var(--light);
    margin-bottom: 0.3rem;
    animation: fadeInDown 0.6s ease-out;
    position: relative;
    z-index: 2;
}

.info-item .value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #fff, var(--light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes itemSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulseGradient {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fillFromLeft {
    from {
        width: 0;
        opacity: 1;
    }
    to {
        width: 100%;
        opacity: 0.7;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-online {
    color: var(--success);
}

.copy-btn {
    background: linear-gradient(135deg, var(--accent) 0%, #2d7eff 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-weight: 600;
    animation: buttonSlideIn 0.6s ease-out;
    z-index: 2;
}

.copy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: buttonShimmer 1.5s infinite;
}

.copy-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: height 0.3s ease;
    z-index: -1;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #2d7eff 0%, var(--accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 134, 255, 0.4);
}

.copy-btn:hover::after {
    height: 100%;
}

.copy-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(58, 134, 255, 0.3);
}

@keyframes buttonSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes buttonShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.method {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1.5px solid rgba(157, 78, 221, 0.2);
}

.method:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.method h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.method p {
    color: var(--text);
    margin-bottom: 1.2rem;
    opacity: 0.9;
    font-size: 0.95rem;
}

.connect-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 1.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    margin-top: 1.2rem;
    font-weight: 700;
    font-size: 1rem;
    animation: slideUp 0.6s ease-out;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.connect-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.discord-btn {
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    color: white;
    border: none;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.95rem;
    animation: discordPulse 2s ease-in-out infinite, slideUp 0.6s ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    letter-spacing: 0.5px;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.discord-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    animation: discordShimmer 2s infinite;
}

.discord-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    animation: discordGlow 2s ease-in-out infinite;
    pointer-events: none;
}

.discord-btn:hover {
    background: linear-gradient(135deg, #7289DA 0%, #5865F2 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(88, 101, 242, 0.5),
                0 0 20px rgba(88, 101, 242, 0.4);
    animation: discordPulse 1s ease-in-out infinite, slideUp 0.6s ease-out;
}

.discord-btn:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 6px 15px rgba(88, 101, 242, 0.4);
}

@keyframes discordPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3),
                    0 0 0 0 rgba(88, 101, 242, 0.7);
    }
    50% {
        box-shadow: 0 4px 25px rgba(88, 101, 242, 0.5),
                    0 0 0 10px rgba(88, 101, 242, 0);
    }
}

@keyframes discordShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes discordGlow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* ========== RIGHT SIDEBAR ========== */
.right-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.widget {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
    border: 1.5px solid var(--secondary);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(157, 78, 221, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
}

.widget h3 {
    color: var(--light);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.1), rgba(157, 78, 221, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(58, 134, 255, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.2), rgba(157, 78, 221, 0.2));
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(58, 134, 255, 0.2);
}

.stat-label {
    color: var(--light);
    font-size: 0.95rem;
    font-weight: 600;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.announcements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.announcement {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 5px;
    border-left: 3px solid var(--accent);
}

.announcement h4 {
    color: var(--light);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.announcement p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.announcement .date {
    display: block;
    font-size: 0.75rem;
    color: var(--success);
    margin-top: 0.5rem;
}

.quick-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.quick-links li {
    margin: 0;
    padding: 0;
}

.quick-links a {
    color: var(--accent);
    text-decoration: none;
    padding: 0.9rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    font-size: 0.95rem;
    background: rgba(58, 134, 255, 0.1);
    border: 1px solid rgba(58, 134, 255, 0.2);
}

.quick-links a:hover {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.2), rgba(157, 78, 221, 0.2));
    border-color: var(--accent);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(58, 134, 255, 0.2);
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    border-top: 2px solid var(--secondary);
    color: var(--text);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .container {
        grid-template-columns: 1fr 280px;
    }

    .left-sidebar {
        display: none;
    }
}

@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .right-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        margin: 1rem auto;
        gap: 1.5rem;
    }

    .right-sidebar {
        position: static;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .features-grid,
    .items-grid,
    .weapons-grid,
    .coming-items {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .connect-box {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .server-info {
        flex-direction: column;
        gap: 1rem;
    }

    .container {
        padding: 0 1rem;
        margin: 1rem auto;
        gap: 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav {
        display: none;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .animated-info {
        flex-direction: column;
        gap: 1rem;
    }

    .info-badge {
        width: 100%;
        justify-content: center;
    }

    .connect-box {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(157, 78, 221, 0.8), 0 0 60px rgba(58, 134, 255, 0.5);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes rotateHalf {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes iconScale {
    0% {
        transform: scale(1) rotateY(0deg);
    }
    100% {
        transform: scale(1.15) rotateY(10deg);
    }
}

.feature-card,
.item-card,
.weapon-card,
.coming-card {
    animation: slideUp 0.6s ease-out;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.animate-in {
    animation: fadeIn 0.6s ease-out;
}

/* ========== NEW ENHANCED STYLES ========== */

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: slideInLeft 0.8s ease-out;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--light);
    opacity: 0.8;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 2px;
    animation: slideUp 0.8s ease-out 0.3s both;
}

/* Hover Lift Effect */
.hover-lift {
    position: relative;
}

.hover-lift:hover {
    animation: liftUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes liftUp {
    from {
        transform: translateY(0) rotateX(0);
    }
    to {
        transform: translateY(-15px) rotateX(5deg);
    }
}

/* Feature Card Enhancement */
.feature-card-top {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.1), rgba(157, 78, 221, 0.1));
    border-radius: 10px;
    overflow: hidden;
}

.feature-card-top::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    animation: rotate 3s linear infinite;
}

.feature-card:hover .feature-card-top::before {
    opacity: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Sidebar Widget */
.sidebar-widget {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.1), rgba(157, 78, 221, 0.1));
    border: 1px solid var(--accent);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.2);
}

.sidebar-widget h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.sidebar-widget p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.mini-btn {
    background: linear-gradient(135deg, var(--accent), #2d7eff);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.mini-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
}

/* Active Nav Link */
.nav-link.active {
    background: rgba(157, 78, 221, 0.3);
    color: var(--light);
    border-radius: 5px;
    border-left: 3px solid var(--secondary);
    padding-left: calc(0.8rem - 3px);
}

/* Light Mode Theme */
[data-theme="light"] {
    --primary: #f5f5f5;
    --secondary: #c77dff;
    --dark: #e0e0e0;
    --text: #333;
    --border: #ddd;
}

[data-theme="light"] body {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

[data-theme="light"] .header {
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    border-bottom: 2px solid #c77dff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .logo {
    background: linear-gradient(135deg, #9d4edd, #3a86ff);
}

[data-theme="light"] .hero {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

[data-theme="light"] section {
    color: #333;
}

[data-theme="light"] .btn-primary {
    background: linear-gradient(135deg, #9d4edd, #c77dff);
}

[data-theme="light"] .feature-card,
[data-theme="light"] .item-card,
[data-theme="light"] .weapon-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: #ddd;
    color: #333;
}

/* Animation Enhancements */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotateHalf {
    from {
        transform: rotateY(0deg) scale(1);
    }
    to {
        transform: rotateY(360deg) scale(1.1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(157, 78, 221, 0.8), 0 0 60px rgba(58, 134, 255, 0.5);
    }
}

/* Button Hover Effects */
.btn:active {
    transform: scale(0.98);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
}

.btn-primary:active::after {
    width: 300px;
    height: 300px;
}


.leaderboard-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background: var(--accent);
    color: white;
}

.tab-btn:hover {
    transform: translateY(-3px);
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text);
}

.leaderboard-table th {
    background: var(--accent);
    padding: 1rem;
    text-align: left;
    color: white;
}

.leaderboard-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.leaderboard-table tr:hover {
    background: rgba(58, 134, 255, 0.2);
}

/* FAQ SECTION */
.faq-section {
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.faq-container {
    display: grid;
    gap: 1rem;
}

.faq-item h3 {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.2) 0%, rgba(157, 78, 221, 0.2) 100%);
    padding: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    color: var(--light);
    border: 1px solid var(--accent);
    transition: all 0.3s;
}

.faq-item h3:hover {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.3) 0%, rgba(157, 78, 221, 0.3) 100%);
}

.faq-item p {
    padding: 1rem;
    color: var(--text);
    display: none;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 8px 8px;
}

.faq-item.active p {
    display: block;
}

/* RULES SECTION */
.rules-section {
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.rule-card {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.15) 0%, rgba(157, 78, 221, 0.15) 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--accent);
    color: var(--text);
}

.rule-card h3 {
    color: var(--light);
    margin-bottom: 1rem;
}

/* CHANGELOG SECTION */
.changelog-section {
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.changelog-items {
    display: grid;
    gap: 2rem;
}

.changelog-card {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.15) 0%, rgba(6, 214, 160, 0.15) 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--success);
    color: var(--text);
}

.patch-version {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    margin-right: 1rem;
}

.patch-date {
    color: var(--success);
}

/* GALLERY SECTION */
.gallery-section {
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid var(--accent);
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* STAFF SECTION */
.staff-section {
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.staff-card {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.15) 0%, rgba(157, 78, 221, 0.15) 100%);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--accent);
    color: var(--text);
}

.staff-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.staff-card h3 {
    color: var(--light);
}

.staff-card .role {
    color: var(--accent);
    font-weight: bold;
    margin: 0.5rem 0;
}

/* COMPARISON TABLE */
.comparison-section {
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text);
}

.comparison-table th {
    background: var(--accent);
    padding: 1rem;
    text-align: left;
    color: white;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.comparison-table tr:hover {
    background: rgba(58, 134, 255, 0.2);
}

/* SHOP SECTION */
.shop-section {
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.shop-item {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.15) 0%, rgba(157, 78, 221, 0.15) 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--accent);
    text-align: center;
    color: var(--text);
}

.shop-item h3 {
    color: var(--light);
    margin-bottom: 1rem;
}

.buy-btn {
    background: var(--accent);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(58, 134, 255, 0.3);
}

/* EVENTS SECTION */
.events-section {
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.events-list {
    display: grid;
    gap: 1.5rem;
}

.event {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.15) 0%, rgba(6, 214, 160, 0.15) 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--success);
    color: var(--text);
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.event-date {
    background: var(--accent);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
}

.event h3 {
    color: var(--light);
}

/* PREMIUM SECTION */
.premium-section {
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.premium-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.premium-card {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.15) 0%, rgba(157, 78, 221, 0.15) 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--accent);
    text-align: center;
    color: var(--text);
}

.premium-card.featured {
    border: 3px solid var(--success);
    transform: scale(1.05);
}

.premium-card h3 {
    color: var(--light);
    font-size: 1.5rem;
}

.premium-card .price {
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: bold;
    margin: 1rem 0;
}

.premium-card ul {
    text-align: left;
    margin: 1.5rem 0;
}

.premium-card li {
    padding: 0.5rem 0;
    color: var(--text);
}

.premium-btn {
    background: var(--accent);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(58, 134, 255, 0.3);
}

/* RECIPES SECTION */
.recipes-section {
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.recipe-card {
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.15) 0%, rgba(157, 78, 221, 0.15) 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--accent);
    color: var(--text);
}

.recipe-card h3 {
    color: var(--light);
    margin-bottom: 1rem;
}

.recipe-card ul {
    text-align: left;
    margin-left: 1rem;
}

/* SCROLL TO TOP BUTTON */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    z-index: 99;
    transition: all 0.3s;
}

#scrollTopBtn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(58, 134, 255, 0.4);
}

#scrollTopBtn.show {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .premium-card.featured {
        transform: scale(1);
    }
    
    .language-selector {
        flex-direction: row;
        top: auto;
        bottom: 100px;
        right: 20px;
    }
}