        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { color: #2a6ebd; text-decoration: none; transition: color 0.3s ease, transform 0.2s ease; }
        a:hover { color: #e85d04; transform: translateY(-2px); }
        ul, ol { padding-left: 1.5rem; margin: 1rem 0; }
        li { margin-bottom: 0.5rem; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { background-color: #fffacd; padding: 2px 5px; border-radius: 3px; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .section-spacing { padding: 4rem 0; }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(90deg, #ff8a00, #e52e71);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .btn:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); color: white; }
        header {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: #e85d04;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i { color: #ff8a00; }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav.desktop-nav a {
            font-weight: 600;
            font-size: 1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        nav.desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #e85d04;
            transition: width 0.3s ease;
        }
        nav.desktop-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #333;
            border-radius: 2px;
            transition: 0.3s;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            padding: 1rem;
            z-index: 999;
        }
        .mobile-nav.active { display: block; }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li { margin: 1rem 0; }
        .mobile-nav a { font-weight: 600; font-size: 1.1rem; display: block; padding: 0.5rem; }
        .breadcrumb {
            padding: 1rem 20px;
            background: #f1f8ff;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb a { color: #666; }
        .breadcrumb a:hover { color: #e85d04; }
        .breadcrumb span { color: #999; }
        main { background: white; box-shadow: 0 5px 30px rgba(0,0,0,0.05); border-radius: 10px; margin: 2rem auto; overflow: hidden; }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1534423861386-85a16f5d13fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 5rem 2rem;
            text-align: center;
        }
        .hero h1 { font-size: 3.5rem; margin-bottom: 1rem; text-shadow: 2px 2px 5px rgba(0,0,0,0.5); }
        .hero p { font-size: 1.3rem; max-width: 800px; margin: 0 auto 2rem; color: #eee; }
        .content-area { padding: 3rem; }
        .content-section { margin-bottom: 3rem; }
        h1 { color: #1a365d; font-size: 2.8rem; margin-bottom: 1.5rem; border-bottom: 3px solid #ff8a00; padding-bottom: 0.5rem; }
        h2 { color: #2d3748; font-size: 2.2rem; margin: 2.5rem 0 1rem; padding-left: 10px; border-left: 5px solid #e85d04; }
        h3 { color: #4a5568; font-size: 1.8rem; margin: 2rem 0 1rem; }
        h4 { color: #718096; font-size: 1.4rem; margin: 1.5rem 0 0.8rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; text-align: justify; }
        blockquote {
            border-left: 4px solid #e85d04;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        .game-image {
            float: right;
            margin: 0 0 1rem 2rem;
            max-width: 400px;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .feature-card {
            background: #f8fafc;
            padding: 2rem;
            border-radius: 10px;
            border-top: 5px solid #ff8a00;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
        .feature-card i { font-size: 2.5rem; color: #e85d04; margin-bottom: 1rem; }
        .interactive-section {
            background: #f0f9ff;
            padding: 2.5rem;
            border-radius: 15px;
            margin: 3rem 0;
            border: 1px dashed #2a6ebd;
        }
        .interactive-section h3 { color: #1a365d; }
        .form-group { margin-bottom: 1.5rem; }
        label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus { outline: none; border-color: #e85d04; box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.2); }
        .rating-stars { display: flex; gap: 5px; margin: 1rem 0; direction: rtl; }
        .rating-stars input { display: none; }
        .rating-stars label { font-size: 2rem; color: #ddd; cursor: pointer; transition: color 0.2s; }
        .rating-stars label:hover,
        .rating-stars label:hover ~ label,
        .rating-stars input:checked ~ label { color: #ffc107; }
        .related-links {
            background: #e6f7ff;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .related-links h3 { margin-top: 0; }
        .related-links ul { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; padding-left: 0; }
        .related-links li { background: white; padding: 0.8rem 1.5rem; border-radius: 50px; box-shadow: 0 3px 10px rgba(0,0,0,0.08); }
        .related-links a { font-weight: 600; }
        footer {
            background: #1a365d;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-logo { font-size: 1.8rem; font-weight: 800; color: #ff8a00; }
        .footer-links h4 { color: #ff8a00; margin-bottom: 1.2rem; }
        .footer-links ul { list-style: none; padding-left: 0; }
        .footer-links li { margin-bottom: 0.7rem; }
        .footer-links a { color: #cbd5e0; }
        .footer-links a:hover { color: white; }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 5px;
            margin: 0.5rem 0;
            text-align: center;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2d3748;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .content-area { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            nav.desktop-nav { display: none; }
            .hamburger { display: flex; }
            .hero { padding: 3rem 1rem; }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.1rem; }
            .game-image { float: none; margin: 1rem auto; max-width: 100%; }
            .related-links ul { flex-direction: column; align-items: center; }
            .feature-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .btn { padding: 10px 22px; }
            .interactive-section { padding: 1.5rem; }
        }
