* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e6e6e6;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: #00adb5;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd369;
            text-shadow: 0 0 5px rgba(255, 211, 105, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(26, 26, 46, 0.95);
            border-bottom: 3px solid #00adb5;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00adb5, #ffd369);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 8px 15px;
            width: 300px;
            transition: all 0.3s ease;
        }
        .search-box:focus-within {
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 10px rgba(0, 173, 181, 0.5);
        }
        .search-box input {
            background: transparent;
            border: none;
            outline: none;
            color: #fff;
            width: 100%;
            padding: 5px 10px;
            font-size: 1rem;
        }
        .search-box button {
            background: #00adb5;
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: #ffd369;
        }
        .search-box i {
            color: #1a1a2e;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00adb5;
            background: none;
            border: none;
        }
        nav {
            background: rgba(22, 33, 62, 0.9);
            padding: 10px 0;
            border-top: 1px solid #333;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 30px;
        }
        .nav-links li a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-links li a:hover {
            background: rgba(0, 173, 181, 0.2);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffd369;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 40px;
            border: 1px solid #333;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd369;
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.3;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }
        h2 {
            font-size: 2rem;
            color: #00adb5;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #00adb5;
        }
        h3 {
            font-size: 1.5rem;
            color: #ffd369;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(0, 173, 181, 0.2);
            border-left: 5px solid #ffd369;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-section {
            text-align: center;
            margin: 30px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            border: 3px solid #00adb5;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .card {
            background: rgba(22, 33, 62, 0.8);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #333;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 173, 181, 0.3);
        }
        .card h3 {
            margin-top: 0;
        }
        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        .feature {
            background: rgba(255, 211, 105, 0.1);
            padding: 10px 20px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .feature i {
            color: #ffd369;
        }
        .form-section {
            background: rgba(26, 26, 46, 0.8);
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #00adb5;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #444;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            border-color: #00adb5;
            outline: none;
        }
        .rating {
            display: flex;
            gap: 10px;
            direction: rtl;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffd369;
        }
        .btn {
            background: linear-gradient(90deg, #00adb5, #0097a7);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .btn:hover {
            background: linear-gradient(90deg, #ffd369, #ffb300);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 211, 105, 0.4);
        }
        footer {
            background: #0d0d1a;
            border-top: 3px solid #00adb5;
            padding: 40px 0 20px;
            margin-top: auto;
        }
        .internal-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #ffd369;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 211, 105, 0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-box {
                order: 3;
                width: 100%;
                margin-top: 15px;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                display: none;
                gap: 10px;
                padding: 15px 0;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li a {
                justify-content: center;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article {
                padding: 20px;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
            .internal-links {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
