        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1a5276; 
            --secondary: #b03a2e; 
            --accent: #28b463; 
            --light: #f8f9fa; 
            --dark: #1c2833; 
            --text: #2c3e50; 
            --light-text: #7f8c8d; 
            --shadow: 0 4px 18px rgba(0,0,0,0.12);
            --border-radius: 10px;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.8;
            padding-bottom: 120px;
            letter-spacing: 0.4px;
        }
        .container {
            width: 94%;
            max-width: 1500px;
            margin: 0 auto;
        }
        .btn {
            padding: 14px 30px;
            border-radius: 35px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
            border: none;
            cursor: pointer;
            font-size: 1.08rem;
            text-align: center;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }
        .section {
            margin-bottom: 140px;
            scroll-margin-top: 130px;
        }
        .section-title {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 50px;
            padding-bottom: 18px;
            border-bottom: 5px solid var(--primary);
            display: inline-block;
            font-weight: 700;
            letter-spacing: 1.1px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        .subsection-title {
            font-size: 2.0rem;
            color: var(--accent);
            margin: 70px 0 35px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .subsection-title::before {
            content: "⚔️";
            font-size: 1.8rem;
        }
        .subsubsection-title {
            font-size: 1.6rem;
            color: var(--primary);
            margin: 45px 0 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .subsubsection-title::before {
            content: "◆";
            color: var(--secondary);
            font-size: 2.2rem;
        }
        .text-bold {
            font-weight: 700;
            color: var(--secondary);
        }
        .text-highlight {
            background-color: #e8f4fd;
            padding: 4px 10px;
            border-radius: 6px;
            color: #0d47a1;
            font-weight: 600;
            border: 1px dotted var(--primary);
        }
        .space-y-10 {
            margin-bottom: 80px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #0f3460);
            color: white;
            padding: 22px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        .logo {
            font-size: 2.3rem;
            font-weight: 800;
            letter-spacing: 1.8px;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
        }
        .logo span {
            color: #f39c12;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo::after {
            content: "🔥";
            font-size: 2.1rem;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 45px;
            align-items: center;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            font-size: 1.15rem;
            padding: 8px 0;
            position: relative;
        }
        nav a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #f39c12;
            transition: var(--transition);
        }
        nav a:hover {
            color: #f39c12;
        }
        nav a:hover::after {
            width: 100%;
        }
        .button-group {
            display: flex;
            gap: 22px;
            align-items: center;
        }
        .btn-download {
            background-color: #f39c12;
            color: var(--dark);
            box-shadow: 0 4px 14px rgba(243,156,18,0.3);
        }
        .btn-download:hover {
            background-color: #e67e22;
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(243,156,18,0.4);
        }
        .btn-login {
            background-color: var(--accent);
            color: white;
            box-shadow: 0 4px 14px rgba(40,180,99,0.3);
        }
        .btn-login:hover {
            background-color: #219653;
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(40,180,99,0.4);
        }
        .hamburger {
            display: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
        }
        .hero {
            background: url('https://host.com/hero-bg.jpg') center/cover no-repeat;
            padding: 180px 0;
            text-align: center;
            color: white;
            position: relative;
            margin-bottom: 120px;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.65));
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 30px;
        }
        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 35px;
            color: #f39c12;
            text-shadow: 3px 3px 12px rgba(0,0,0,0.9);
            line-height: 1.4;
            letter-spacing: 1.3px;
            text-transform: uppercase;
        }
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 60px;
            line-height: 2.2;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
        }
        .main-content {
            padding: 40px 0 90px;
        }
        .content-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 60px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
            transition: var(--transition);
            border-top: 7px solid var(--primary);
            background-image: linear-gradient(to bottom, rgba(248,249,250,0.2), rgba(248,249,250,0.4));
        }
        .content-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 18px 35px rgba(0,0,0,0.15);
        }
        .content-card img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 35px 0;
            object-fit: cover;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 1px solid #eaecee;
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            margin: 70px 0;
        }
        .feature-item {
            background: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border-left: 7px solid var(--accent);
            transition: var(--transition);
            background-image: linear-gradient(to right, rgba(40,180,99,0.06), rgba(40,180,99,0));
        }
        .feature-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.12);
        }
        .feature-item h4 {
            color: var(--secondary);
            margin-bottom: 25px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .feature-item h4::before {
            content: "✨";
            font-size: 1.4rem;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            margin: 60px 0;
        }
        .stat-card {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 35px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 6px solid var(--secondary);
        }
        .stat-card:hover {
            transform: scale(1.07);
            box-shadow: 0 12px 25px rgba(0,0,0,0.1);
        }
        .stat-value {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .stat-label {
            color: var(--text);
            font-size: 1.05rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }
        .quote {
            font-style: italic;
            padding: 35px;
            border-left: 7px solid var(--primary);
            margin: 60px 0;
            background-color: #f0f7ff;
            font-size: 1.25rem;
            border-radius: 0 12px 12px 0;
            position: relative;
        }
        .quote::before {
            content: '"';
            font-size: 5.5rem;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            top: -35px;
            left: 20px;
            font-family: Georgia, serif;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 25px;
            font-weight: 700;
            color: var(--secondary);
            font-size: 1.15rem;
        }
        .tabs {
            display: flex;
            border-bottom: 4px solid #eaecee;
            margin-bottom: 60px;
            overflow-x: auto;
            scrollbar-width: none;
        }
        .tabs::-webkit-scrollbar {
            display: none;
        }
        .tab {
            padding: 22px 40px;
            cursor: pointer;
            border-bottom: 5px solid transparent;
            font-weight: 600;
            transition: var(--transition);
            white-space: nowrap;
            font-size: 1.15rem;
            color: var(--light-text);
        }
        .tab:hover {
            color: var(--secondary);
        }
        .tab.active {
            border-bottom: 5px solid var(--primary);
            color: var(--secondary);
            background-color: rgba(26,82,118,0.08);
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.7s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .tab-content.active {
            display: block;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 60px 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .data-table th, .data-table td {
            padding: 22px;
            text-align: left;
            border-bottom: 1px solid #ecf0f1;
        }
        .data-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.3px;
            font-size: 1.05rem;
        }
        .data-table tr:hover {
            background-color: #f8f9fa;
        }
        .data-table tr:nth-child(even) {
            background-color: #fafbfc;
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 35px;
            margin: 70px 0;
        }
        .gallery-item {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        .gallery-item:hover {
            transform: scale(1.08);
            box-shadow: 0 18px 35px rgba(0,0,0,0.15);
        }
        .gallery-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: var(--transition);
        }
        .gallery-item:hover img {
            transform: scale(1.12);
        }
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.85));
            color: white;
            padding: 25px;
            font-size: 1.05rem;
            opacity: 0;
            transition: var(--transition);
        }
        .gallery-item:hover .gallery-caption {
            opacity: 1;
        }
        .cta {
            background: linear-gradient(135deg, var(--primary), #0f3460);
            color: white;
            padding: 140px 0;
            text-align: center;
            border-radius: var(--border-radius);
            margin: 120px 0;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        .cta::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://host.com/cta-pattern.png');
            background-repeat: repeat;
            background-size: 280px;
            opacity: 0.12;
        }
        .cta h2 {
            font-size: 3.3rem;
            margin-bottom: 35px;
            position: relative;
            color: #f39c12;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }
        .cta p {
            font-size: 1.45rem;
            max-width: 900px;
            margin: 0 auto 60px;
            position: relative;
            line-height: 2.1;
        }
        ul, ol {
            margin: 30px 0 30px 45px;
        }
        li {
            margin-bottom: 18px;
            line-height: 2.0;
            font-size: 1.08rem;
        }
        ul li::marker {
            color: var(--accent);
            font-size: 1.5rem;
        }
        ol li::marker {
            color: var(--secondary);
            font-weight: 700;
            font-size: 1.3rem;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 120px 0 70px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 70px;
            margin-bottom: 90px;
        }
        .footer-logo {
            font-size: 2.3rem;
            font-weight: 800;
            margin-bottom: 35px;
            color: #f39c12;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 1.3px;
            text-transform: uppercase;
        }
        .footer-logo span {
            color: white;
        }
        .footer-description {
            color: #bdc3c7;
            margin-bottom: 40px;
            line-height: 2.0;
            font-size: 1.1rem;
        }
        .footer-links h4 {
            font-size: 1.5rem;
            margin-bottom: 35px;
            color: #f39c12;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            padding-bottom: 15px;
        }
        .footer-links h4::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--accent);
        }
        .footer-links ul {
            list-style: none;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 20px;
        }
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.15rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .footer-links a::before {
            content: "→";
            color: #f39c12;
            opacity: 0;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: #f39c12;
            padding-left: 15px;
        }
        .footer-links a:hover::before {
            opacity: 1;
        }
        .game-categories, .game-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 30px;
        }
        .game-categories a, .game-tags a {
            background-color: #2c3e50;
            padding: 14px 28px;
            border-radius: 40px;
            font-size: 1.05rem;
            color: #ecf0f1;
            text-decoration: none;
            transition: var(--transition);
        }
        .game-categories a:hover, .game-tags a:hover {
            background-color: #f39c12;
            color: var(--dark);
            transform: translateY(-4px);
        }
        .recommendation {
            background-color: #2c3e50;
            padding: 35px;
            border-radius: var(--border-radius);
            margin-top: 40px;
            border-left: 6px solid var(--accent);
        }
        .recommendation h4 {
            color: #f39c12;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        .recommendation p {
            color: #d5dbdb;
            line-height: 2.0;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 60px;
            border-top: 1px solid #34495e;
            color: #95a5a6;
            font-size: 1.05rem;
            line-height: 2.2;
        }
        .copyright-links {
            margin-top: 25px;
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
        }
        .copyright-links a {
            color: #95a5a6;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.05rem;
        }
        .copyright-links a:hover {
            color: #f39c12;
        }
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3.8rem;
            }
            .section-title {
                font-size: 2.6rem;
            }
            .feature-list {
                grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
            }
        }
        @media (max-width: 992px) {
            nav ul {
                gap: 35px;
            }
            .hero {
                padding: 160px 0;
            }
            .hero h1 {
                font-size: 3.4rem;
            }
            .hero p {
                font-size: 1.4rem;
            }
            .content-card {
                padding: 50px;
            }
            .subsection-title {
                font-size: 1.85rem;
            }
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 105px;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                padding: 40px;
                gap: 30px;
                box-shadow: 0 15px 20px rgba(0,0,0,0.2);
                border-top: 1px solid rgba(255,255,255,0.18);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .button-group {
                gap: 18px;
            }
            .btn {
                padding: 13px 25px;
                font-size: 1.05rem;
            }
            .hero {
                padding: 140px 0;
            }
            .hero h1 {
                font-size: 3.0rem;
            }
            .hero p {
                font-size: 1.3rem;
            }
            .section {
                margin-bottom: 100px;
            }
            .section-title {
                font-size: 2.4rem;
                margin-bottom: 40px;
            }
            .subsection-title {
                font-size: 1.7rem;
                margin: 60px 0 30px;
            }
            .subsubsection-title {
                font-size: 1.5rem;
            }
            .content-card {
                padding: 40px 30px;
            }
            .stat-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            }
            .stat-value {
                font-size: 3.0rem;
            }
            .gallery {
                grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
            }
            .cta {
                padding: 120px 30px;
            }
            .cta h2 {
                font-size: 2.8rem;
            }
            .cta p {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 576px) {
            .header-content {
                justify-content: space-between;
            }
            .logo {
                font-size: 2.0rem;
            }
            .button-group {
                display: none;
            }
            .mobile-button-group {
                display: flex;
                gap: 18px;
                margin-top: 25px;
                width: 100%;
                justify-content: center;
            }
            .hero {
                padding: 120px 0;
            }
            .hero h1 {
                font-size: 2.6rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 25px;
            }
            .hero-buttons .btn {
                width: 95%;
            }
            .section-title {
                font-size: 2.2rem;
                width: 100%;
                text-align: center;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .data-table th, .data-table td {
                padding: 18px 12px;
                font-size: 1.0rem;
            }
            .gallery {
                grid-template-columns: 1fr;
            }
            .gallery-item img {
                height: 250px;
            }
            .footer-content {
                gap: 50px;
            }
            .copyright-links {
                gap: 25px;
            }
        }
        img {
            loading: lazy;
            transition: opacity 0.5s ease;
        }
        img.loaded {
            opacity: 1;
        }
        img:not(.loaded) {
            opacity: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        @media print {
            header, footer, .hero, .cta, .button-group, .hamburger {
                display: none;
            }
            body {
                background: white;
                color: black;
                line-height: 1.8;
            }
            .content-card {
                box-shadow: none;
                border: 1px solid #ddd;
            }
            img {
                max-width: 100%;
                height: auto;
            }
        }
