:root {
            --primary: #ff6b00;
            --secondary: #1a1a2e;
            --accent: #00adb5;
            --light: #f8f9fa;
            --dark: #121212;
            --gray: #6c757d;
            --success: #28a745;
            --warning: #ffc107;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background-color: var(--secondary);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        
        .logo-icon {
            color: var(--primary);
            font-size: 2rem;
        }
        
        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
        }
        
        .logo-domain {
            font-size: 0.9rem;
            color: var(--accent);
            font-weight: 500;
        }
        
        nav {
            display: flex;
            align-items: center;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 12px;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--primary);
        }
        
        .search-box {
            display: flex;
            margin-left: 25px;
        }
        
        .search-box input {
            padding: 10px 15px;
            border: none;
            border-radius: var(--radius) 0 0 var(--radius);
            width: 250px;
            font-size: 0.95rem;
        }
        
        .search-box button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 10px 18px;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .search-box button:hover {
            background-color: #e05c00;
        }
        
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
        }
        
        /* Main Content */
        main {
            padding: 30px 0;
            background-color: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-top: 20px;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
        }
        
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        
        article {
            padding: 0 20px;
        }
        
        /* Typography */
        h1, h2, h3, h4 {
            color: var(--secondary);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        
        h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid var(--primary);
            padding-bottom: 15px;
            margin-bottom: 25px;
        }
        
        h2 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        h3 {
            font-size: 1.4rem;
            margin-top: 2rem;
            color: var(--dark);
        }
        
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        
        .lead {
            font-size: 1.2rem;
            color: var(--gray);
            font-weight: 500;
            margin-bottom: 2rem;
        }
        
        /* Content Sections */
        .info-box {
            background-color: #f8f9fa;
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        
        .info-box h3 {
            margin-top: 0;
            color: var(--primary);
        }
        
        .game-features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        
        .feature-card {
            background: white;
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid #eee;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .image-container {
            margin: 25px 0;
            text-align: center;
        }
        
        .responsive-img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        
        figcaption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.9rem;
        }
        
        /* Tables */
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: var(--shadow);
            border-radius: var(--radius);
            overflow: hidden;
        }
        
        .data-table th {
            background-color: var(--secondary);
            color: white;
            text-align: left;
            padding: 15px;
            font-weight: 600;
        }
        
        .data-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }
        
        .data-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .data-table tr:hover {
            background-color: #f0f7ff;
        }
        
        /* Lists */
        ul, ol {
            margin-left: 20px;
            margin-bottom: 1.5rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        /* Sidebar */
        aside {
            background-color: #f8f9fa;
            padding: 25px 20px;
            border-radius: var(--radius);
            border: 1px solid #eaeaea;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        
        .sidebar-section {
            margin-bottom: 30px;
        }
        
        .sidebar-section h3 {
            font-size: 1.3rem;
            color: var(--secondary);
            border-bottom: 2px solid var(--primary);
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        
        .quick-links {
            list-style: none;
            margin-left: 0;
        }
        
        .quick-links li {
            margin-bottom: 12px;
        }
        
        .quick-links a {
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        
        .quick-links a:hover {
            background-color: rgba(0, 173, 181, 0.1);
            color: var(--accent);
        }
        
        .quick-links i {
            color: var(--primary);
            width: 20px;
        }
        
        .download-box {
            background: linear-gradient(135deg, var(--primary), #ff8c42);
            color: white;
            padding: 25px;
            border-radius: var(--radius);
            text-align: center;
            margin-bottom: 25px;
        }
        
        .download-box h3 {
            color: white;
            border-bottom: none;
        }
        
        .download-btn {
            display: inline-block;
            background-color: white;
            color: var(--primary);
            padding: 14px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            margin-top: 15px;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        }
        
        /* Interactive Elements */
        .rating-container {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 25px 0;
            flex-wrap: wrap;
        }
        
        .stars {
            display: flex;
            gap: 5px;
        }
        
        .star {
            color: #ddd;
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .star:hover,
        .star.active {
            color: var(--warning);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            text-align: center;
            min-height: 44px;
            min-width: 44px;
        }
        
        .btn:hover {
            background-color: #e05c00;
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background-color: var(--accent);
        }
        
        .btn-secondary:hover {
            background-color: #00969c;
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* Social Share */
        .social-share {
            display: flex;
            gap: 15px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1da1f2; }
        .whatsapp { background-color: #25d366; }
        .telegram { background-color: #0088cc; }
        .reddit { background-color: #ff4500; }
        
        .social-icon:hover {
            transform: translateY(-3px);
            opacity: 0.9;
        }
        
        /* Back to Top */
        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: none;
            z-index: 999;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        #backToTop:hover {
            background-color: #e05c00;
            transform: scale(1.1);
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 50px 0 25px;
            margin-top: 50px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 10px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .contact-item i {
            color: var(--primary);
            width: 20px;
        }
        
        friend-link {
            display: block;
            margin: 15px 0;
        }
        
        friend-link a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }
        
        friend-link a:hover {
            text-decoration: underline;
        }
        
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Forms */
        .comment-form, .search-form, .rating-form {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: var(--radius);
            margin: 30px 0;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Utility Classes */
        .text-primary { color: var(--primary); }
        .text-accent { color: var(--accent); }
        .text-bold { font-weight: 700; }
        .text-center { text-align: center; }
        .mb-0 { margin-bottom: 0; }
        .mt-0 { margin-top: 0; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .mt-3 { margin-top: 3rem; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .py-1 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .flex { display: flex; }
        .flex-wrap { flex-wrap: wrap; }
        .gap-1 { gap: 1rem; }
        .gap-2 { gap: 2rem; }
        
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 10px;
                margin-top: 20px;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .search-box {
                margin-left: 0;
                margin-top: 15px;
                width: 100%;
            }
            
            .search-box input {
                width: 100%;
            }
            
            .hamburger {
                display: block;
            }
            
            .game-features {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.6rem;
            }
            
            h3 {
                font-size: 1.3rem;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .content-grid {
                grid-template-columns: 1fr;
            }
            
            aside {
                position: static;
            }
            
            #backToTop {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }
        
        /* Print Styles */
        @media print {
            header, footer, aside, .social-share, #backToTop, .comment-form, .download-box {
                display: none;
            }
            
            body {
                background-color: white;
                color: black;
            }
            
            .container {
                max-width: 100%;
                padding: 0;
            }
            
            main {
                box-shadow: none;
                margin-top: 0;
                padding: 0;
            }
        }

