        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #f1f1f1;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #00d4ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .site-header {
            background: rgba(10, 15, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid #00d4ff;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, #00d4ff, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a {
            background: none;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: #ffcc00;
            left: 0;
            bottom: -5px;
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00d4ff;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px 0;
            margin-top: 5px;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: #888;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #00d4ff;
        }
        .hero {
            background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.1), transparent 50%),
                        radial-gradient(circle at bottom left, rgba(255, 204, 0, 0.1), transparent 50%);
            text-align: center;
            padding: 80px 20px;
            border-bottom: 2px solid #333;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .hero h1 span {
            color: #ffcc00;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #00d4ff, #0099ff);
            color: #000;
            font-weight: bold;
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
            transition: all 0.3s;
        }
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.6);
            color: #000;
        }
        .search-section, .comment-section, .rating-section {
            background: rgba(30, 35, 60, 0.7);
            border-radius: 15px;
            padding: 30px;
            margin: 40px auto;
            max-width: 800px;
            border: 1px solid #444;
        }
        .section-title {
            font-size: 2rem;
            margin-bottom: 25px;
            color: #ffcc00;
            border-left: 5px solid #00d4ff;
            padding-left: 15px;
        }
        .search-box {
            display: flex;
            gap: 10px;
        }
        .search-box input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #00d4ff;
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            font-size: 1.1rem;
        }
        .search-box button {
            background: #00d4ff;
            color: #000;
            border: none;
            border-radius: 10px;
            padding: 0 30px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ffcc00;
        }
        .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid #555;
            color: white;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .rating-stars {
            font-size: 2rem;
            color: #ffcc00;
            margin-bottom: 15px;
            cursor: pointer;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .submit-btn {
            background: #ffcc00;
            color: #000;
            border: none;
            padding: 12px 30px;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .content-section {
            background: rgba(20, 25, 45, 0.8);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid #333;
        }
        .content-section h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: #00d4ff;
        }
        .content-section h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #ffcc00;
        }
        .content-section p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .content-section emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.15);
            border-left: 4px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .game-image {
            float: right;
            margin: 15px 0 20px 30px;
            max-width: 400px;
            border: 3px solid #00d4ff;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .link-list {
            background: rgba(0, 212, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .link-list ul {
            list-style: none;
            columns: 2;
        }
        .link-list li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        .link-list li::before {
            content: '🎰';
            position: absolute;
            left: 0;
        }
        .web-links-container {
            background: rgba(10, 15, 30, 0.9);
            padding: 40px 20px;
            margin-top: 60px;
            border-top: 2px solid #00d4ff;
            border-bottom: 2px solid #00d4ff;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #444;
            transition: transform 0.3s, border-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-color: #00d4ff;
        }
        .site-footer {
            background: #0a0f1e;
            padding: 50px 0 20px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 40px;
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            .content-section h2 { font-size: 2.2rem; }
            .link-list ul { columns: 1; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: rgba(10, 15, 30, 0.98);
                width: 100%;
                padding: 30px;
                transition: left 0.5s;
                gap: 20px;
                border-top: 2px solid #00d4ff;
            }
            .main-nav.active ul { left: 0; }
            .hero h1 { font-size: 2.3rem; }
            .hero p { font-size: 1.1rem; }
            .content-section { padding: 30px 20px; }
            .game-image {
                float: none;
                margin: 20px auto;
                max-width: 100%;
            }
            .search-box { flex-direction: column; }
            .search-box button { padding: 15px; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 1.9rem; }
            .section-title { font-size: 1.7rem; }
            .content-section h2 { font-size: 1.8rem; }
            .cta-button { padding: 14px 30px; }
        }
