
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --orange-red: #e7552c;
            --orange-juice: #ffb745;
            --pool-blue: #5cc5ef;
            --dark-blue: #344d90;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, var(--pool-blue) 0%, var(--dark-blue) 100%);
        }

        header {
            background: linear-gradient(90deg, var(--dark-blue) 0%, var(--orange-red) 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--orange-juice);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--orange-juice);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        main {
            margin-top: 70px;
        }

        .hero {
            background: linear-gradient(rgba(52, 77, 144, 0.8), rgba(231, 85, 44, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23344d90" width="1200" height="800"/><circle fill="%23e7552c" cx="300" cy="200" r="50" opacity="0.3"/><circle fill="%23ffb745" cx="800" cy="300" r="70" opacity="0.4"/><circle fill="%235cc5ef" cx="600" cy="500" r="60" opacity="0.3"/><polygon fill="%23ffb745" points="100,100 150,50 200,100 150,150" opacity="0.2"/><polygon fill="%235cc5ef" points="900,600 950,550 1000,600 950,650" opacity="0.2"/></svg>');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            background: linear-gradient(45deg, var(--orange-juice), var(--pool-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1.1rem;
        }

        .btn-primary {
            background: var(--orange-juice);
            color: var(--dark-blue);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid var(--pool-blue);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .section {
            padding: 4rem 0;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .features {
            background: white;
            margin: 3rem 0;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 3rem;
        }

        .feature-card {
            text-align: center;
            padding: 2rem;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--pool-blue), var(--orange-juice));
            color: white;
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .gallery {
            background: var(--dark-blue);
            color: white;
            padding: 4rem 0;
        }

        .gallery h2 {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            color: var(--orange-juice);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .gallery-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.3s;
            aspect-ratio: 9/16;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--orange-red), var(--orange-juice));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            text-align: center;
            flex-direction: column;
        }

        .gallery-placeholder div:first-child {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .about {
            background: white;
            margin: 3rem 0;
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about h2 {
            color: var(--dark-blue);
            margin-bottom: 2rem;
            font-size: 2.5rem;
            text-align: center;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-image {
            background: linear-gradient(135deg, var(--pool-blue), var(--orange-red));
            height: 300px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-align: center;
        }

        .characters-section {
            background: linear-gradient(135deg, var(--orange-juice), var(--orange-red));
            color: white;
            margin: 3rem 0;
            border-radius: 15px;
            padding: 3rem;
        }

        .characters-section h2 {
            color: white;
            text-align: center;
            margin-bottom: 2rem;
        }

        .characters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .character-card {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            text-align: center;
        }

        .character-card h3 {
            margin-bottom: 1rem;
            color: var(--pool-blue);
            font-size: 1.5rem;
        }

        .character-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        footer {
            background: var(--dark-blue);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: var(--orange-juice);
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: var(--pool-blue);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--orange-juice);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--pool-blue);
            color: var(--pool-blue);
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .characters-grid {
                grid-template-columns: 1fr;
            }
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--dark-blue);
        }

        .gameplay-features {
            background: linear-gradient(135deg, var(--pool-blue), var(--dark-blue));
            color: white;
            margin: 3rem 0;
            border-radius: 15px;
            padding: 3rem;
        }

        .gameplay-features h2 {
            color: white;
            text-align: center;
            margin-bottom: 2rem;
        }

        .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-item {
            background: rgba(255,255,255,0.1);
            padding: 1.5rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .feature-item h3 {
            margin-bottom: 1rem;
            color: var(--orange-juice);
        }
