        /* Base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #0a192f 0%, #0d1b36 100%);
            color: #e6f1ff;
            line-height: 1.6;
            direction: ltr;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 25, 47, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(100, 255, 218, 0.1);
        }
        
        header.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo img {
            height: 40px;
            width: auto;
        }
        
        .logo h1 {
            color: #64ffda;
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        
        nav a {
            color: #ccd6f6;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 1rem;
        }
        
        nav a:hover {
            color: #64ffda;
        }
        
        .cta-button {
            background: linear-gradient(135deg, #1e6fc9 0%, #0a4da3 100%);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            border: 1px solid rgba(100, 255, 218, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(30, 111, 201, 0.3);
            background: linear-gradient(135deg, #0a4da3 0%, #1e6fc9 100%);
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #ccd6f6;
            margin: 2px 0;
            transition: all 0.3s ease;
        }
        
        /* Hero section */
        .hero {
            padding: 150px 0 100px;
            background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.95)), url('https://cdn.discordapp.com/attachments/1409521219727921295/1410563803204030484/spirits_1.png?ex=68b2cae9&is=68b17969&hm=94d37066ecf5ff4046305c9537ea2638124d770dab184f229914e9e158887e96&') no-repeat center center/cover;
            text-align: center;
        }
        
        .hero-content h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #64ffda 0%, #1e6fc9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: #a8b2d1;
        }
        
        .stats {
            display: flex;
            justify-content: center;
            margin-top: 50px;
            gap: 40px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: #64ffda;
        }
        
        .stat-text {
            font-size: 1rem;
            color: #a8b2d1;
        }
        
        /* Section common styles */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 15px;
            color: #ccd6f6;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #64ffda 0%, #1e6fc9 100%);
            border-radius: 2px;
        }
        
        /* About section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #ccd6f6;
        }
        
        .about-text p {
            margin-bottom: 15px;
            color: #a8b2d1;
        }
        
        .about-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(100, 255, 218, 0.2);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Gallery section */
        .gallery {
            background-color: #0c172e;
        }
        
        .swiper {
            width: 100%;
            padding: 50px 0;
        }
        
        .swiper-slide {
            background-position: center;
            background-size: cover;
            width: 300px;
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(100, 255, 218, 0.2);
        }
        
        .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .swiper-slide:hover img {
            transform: scale(1.1);
        }
        
        /* Features section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: rgba(17, 34, 64, 0.5);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(100, 255, 218, 0.2);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            background: rgba(17, 34, 64, 0.8);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #1e6fc9 0%, #0a4da3 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #ccd6f6;
        }
        
        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #ccd6f6;
        }
        
        .feature-card p {
            color: #a8b2d1;
        }
        
        /* Game modes section */
        .modes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .mode-card {
            background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.9)) no-repeat center center/cover;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            min-height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
            border: 1px solid rgba(100, 255, 218, 0.2);
        }
        
        .mode-card:nth-child(2) {
            background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.9)), no-repeat center center/cover;
        }
        
        .mode-card:hover {
            transform: scale(1.03);
        }
        
        .mode-content h3 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #ccd6f6;
        }
        
        .mode-content p {
            color: #a8b2d1;
        }
        
        /* Social section */
        .social {
            text-align: center;
            background-color: #0c172e;
        }
        
        .social p {
            max-width: 600px;
            margin: 0 auto 40px;
            color: #a8b2d1;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .social-link {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1e6fc9 0%, #0a4da3 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #ccd6f6;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(100, 255, 218, 0.2);
        }
        
        .social-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(30, 111, 201, 0.3);
            background: linear-gradient(135deg, #0a4da3 0%, #1e6fc9 100%);
        }
        
        /* Footer */
        footer {
            background-color: #0a1525;
            padding: 60px 0 20px;
            border-top: 1px solid rgba(100, 255, 218, 0.1);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #64ffda;
        }
        
        .footer-column p {
            color: #a8b2d1;
            margin-bottom: 15px;
        }
        
        .server-info p {
            font-family: monospace;
            background: rgba(17, 34, 64, 0.5);
            padding: 8px 15px;
            border-radius: 5px;
            display: inline-block;
            margin-right: 10px;
            color: #ccd6f6;
            border: 1px solid rgba(100, 255, 218, 0.2);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #a8b2d1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #64ffda;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #8892b0;
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .image-placeholder {
            background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
            border-radius: 10px;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e6fc9;
            font-size: 3rem;
            border: 1px solid rgba(100, 255, 218, 0.2);
        }
        
        img.loaded + .image-placeholder {
            display: none;
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .hero-content h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: #0a192f;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
                gap: 30px;
                border-top: 1px solid rgba(100, 255, 218, 0.1);
            }
            
            nav ul.active {
                left: 0;
            }
            
            .hamburger {
                display: flex;
            }
            
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
                background-color: #64ffda;
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
                background-color: #64ffda;
            }
            
            .hero-content h2 {
                font-size: 2rem;
            }
            
            .stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }