:root {
            --primary-blue: #1a73e8;
            --aqua-teal: #00bcd4;
            --deep-ocean: #006064;
            --coral-pink: #ff6b6b;
            --golden-sun: #ffd700;
            --seafoam-green: #80cbc4;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
        }
        .logo-brand {
            font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary-blue), var(--aqua-teal));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-custom {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-bottom: 3px solid var(--aqua-teal);
        }
        .nav-link {
            font-weight: 600;
            color: var(--deep-ocean) !important;
            transition: all 0.3s ease;
            border-radius: 5px;
            margin: 0 5px;
        }
        .nav-link:hover {
            background-color: var(--aqua-teal);
            color: white !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 96, 100, 0.8), rgba(0, 188, 212, 0.8)), url('https://via.placeholder.com/1600x900') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 40px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--deep-ocean);
            margin-bottom: 20px;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--aqua-teal);
            padding-bottom: 15px;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--aqua-teal);
            padding-left: 15px;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin-top: 30px;
        }
        .highlight {
            background-color: rgba(0, 188, 212, 0.1);
            border-left: 4px solid var(--aqua-teal);
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .game-feature {
            background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
            border-radius: 10px;
            padding: 20px;
            margin: 15px 0;
            transition: all 0.3s ease;
        }
        .game-feature:hover {
            transform: scale(1.02);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--aqua-teal);
            margin-bottom: 15px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 20px 0;
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .table-custom {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 25px 0;
        }
        .table-custom th {
            background-color: var(--deep-ocean);
            color: white;
        }
        .table-custom tr:nth-child(even) {
            background-color: rgba(0, 188, 212, 0.05);
        }
        footer {
            background: var(--deep-ocean);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--aqua-teal);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--primary-blue);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .content-section {
                padding: 25px;
            }
        }
