* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1a237e;
            --secondary: #ff3d00;
            --accent: #ffd600;
            --dark: #0f172a;
            --light: #f8fafc;
            --gray: #e2e8f0;
            --text: #1e293b;
            --success: #166534;
            --warning: #c2410c;
            --info: #0369a1;
            --danger: #b91c1c;
        }
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.8;
            font-size: 16px;
            letter-spacing: 0.2px;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background-color: white;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        header.scrolled {
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            padding: 10px 0;
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }
        .logo {
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            text-transform: uppercase;
        }
        .logo span {
            color: var(--secondary);
            margin: 0 6px;
        }
        .logo i {
            margin-right: 10px;
            font-size: 1.7rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
            font-size: 1.02rem;
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2.5px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .btn {
            padding: 12px 26px;
            border-radius: 7px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.02rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }
        .btn-download {
            background-color: var(--success);
            color: white;
            margin-right: 12px;
            box-shadow: 0 3px 10px rgba(22, 101, 52, 0.2);
        }
        .btn-download:hover {
            background-color: #14532d;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(22, 101, 52, 0.3);
        }
        .btn-login {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 3px 10px rgba(3, 105, 161, 0.2);
        }
        .btn-login:hover {
            background-color: #151b60;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(3, 105, 161, 0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.9rem;
            cursor: pointer;
            color: var(--dark);
            transition: color 0.3s ease;
        }
        .hamburger:hover {
            color: var(--primary);
        }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: white;
            padding: 110px 0;
            text-align: center;
            border-radius: 0 0 35px 35px;
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
        }
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://host.com/images/tank-blitz-warriors-hero-pattern.png');
            background-size: 70px;
            opacity: 0.1;
            animation: patternMove 25s linear infinite;
        }
        @keyframes patternMove {
            0% { background-position: 0 0; }
            100% { background-position: 120px 120px; }
        }
        .hero h1 {
            font-size: 3.7rem;
            margin-bottom: 35px;
            text-shadow: 0 3px 7px rgba(0,0,0,0.3);
            position: relative;
            line-height: 1.3;
        }
        .hero p {
            font-size: 1.35rem;
            max-width: 1050px;
            margin: 0 auto 50px;
            opacity: 0.95;
            position: relative;
            line-height: 1.7;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 22px;
            flex-wrap: wrap;
            position: relative;
        }
        .hero-tagline {
            font-style: italic;
            font-size: 1.15rem;
            margin-top: 35px;
            opacity: 0.9;
            font-weight: 300;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 45px;
            margin-bottom: 100px;
        }
        .content-section {
            background: white;
            padding: 50px;
            border-radius: 22px;
            box-shadow: 0 4px 22px rgba(0,0,0,0.07);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 35px;
        }
        .sidebar-card {
            background: white;
            padding: 32px;
            border-radius: 22px;
            box-shadow: 0 4px 22px rgba(0,0,0,0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .sidebar-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 7px 28px rgba(0,0,0,0.11);
        }
        .sidebar-card h3 {
            font-size: 1.45rem;
            margin-top: 0;
            margin-bottom: 22px;
            color: var(--primary);
            padding-bottom: 12px;
            border-bottom: 2px solid var(--gray);
        }
        .sidebar-stats {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .sidebar-stat {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--gray);
        }
        .sidebar-stat span:first-child {
            font-weight: 500;
            color: var(--text);
        }
        .sidebar-stat span:last-child {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.05rem;
        }
        .sidebar-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 22px;
        }
        .sidebar-download {
            background-color: var(--light);
            border-radius: 18px;
            padding: 28px;
            margin-top: 22px;
            text-align: center;
            border: 1px solid var(--gray);
        }
        .sidebar-download .btn {
            width: 100%;
            margin-right: 0;
            margin-bottom: 18px;
        }
        .sidebar-review {
            padding: 22px;
            background-color: #f9fafb;
            border-radius: 14px;
            margin-bottom: 22px;
            border-left: 4px solid var(--secondary);
        }
        .reviewer {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: 18px;
        }
        .reviewer img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary);
        }
        .reviewer-info {
            flex: 1;
        }
        .reviewer-name {
            font-weight: 600;
            font-size: 1.02rem;
            color: var(--dark);
        }
        .reviewer-rating {
            color: var(--secondary);
            font-size: 0.98rem;
        }
        h2 {
            color: var(--dark);
            font-size: 2.4rem;
            margin-bottom: 38px;
            padding-bottom: 22px;
            border-bottom: 4px solid var(--gray);
            position: relative;
            line-height: 1.4;
        }
        h2:after {
            content: '';
            position: absolute;
            width: 110px;
            height: 4px;
            bottom: -4px;
            left: 0;
            background-color: var(--secondary);
        }
        h3 {
            color: var(--primary);
            font-size: 1.75rem;
            margin: 55px 0 28px;
            position: relative;
            padding-left: 28px;
            line-height: 1.5;
        }
        h3:before {
            content: '🚜';
            position: absolute;
            left: 0;
            top: 3px;
            font-size: 1.45rem;
        }
        h4 {
            color: var(--dark);
            font-size: 1.35rem;
            margin: 32px 0 20px;
            font-weight: 600;
            line-height: 1.5;
            color: var(--primary);
        }
        p {
            margin-bottom: 32px;
            text-align: justify;
            font-size: 1.08rem;
            line-height: 1.8;
        }
        strong {
            color: var(--primary);
            font-weight: 700;
        }
        em {
            color: var(--secondary);
            font-style: italic;
        }
        .image-container {
            margin: 55px 0;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 7px 24px rgba(0,0,0,0.14);
            position: relative;
            transition: transform 0.4s ease;
        }
        .image-container:hover {
            transform: translateY(-6px);
        }
        .image-container img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.7s ease;
        }
        .image-container:hover img {
            transform: scale(1.02);
        }
        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0,0,0,0.78);
            color: white;
            padding: 18px 22px;
            font-size: 1.05rem;
            text-align: center;
            font-weight: 300;
        }
        .feature-list {
            list-style: none;
            margin: 35px 0 45px;
        }
        .feature-list li {
            margin-bottom: 24px;
            padding-left: 38px;
            position: relative;
            font-size: 1.08rem;
            line-height: 1.8;
        }
        .feature-list li:before {
            content: "🎯";
            position: absolute;
            left: 0;
            top: 3px;
            color: var(--primary);
            font-size: 1.25rem;
        }
        .table-container {
            overflow-x: auto;
            margin: 45px 0;
            border-radius: 14px;
            box-shadow: 0 4px 18px rgba(0,0,0,0.07);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }
        th, td {
            padding: 20px 28px;
            text-align: left;
            border-bottom: 1px solid var(--gray);
        }
        th {
            background-color: var(--light);
            font-weight: 700;
            color: var(--dark);
            font-size: 1.08rem;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }
        tr:hover {
            background-color: #fafbfc;
            transform: scale(1.004);
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .quote {
            font-style: italic;
            border-left: 6px solid var(--secondary);
            padding: 28px 32px;
            margin: 45px 0;
            background-color: #fff7ed;
            border-radius: 0 18px 18px 0;
            font-size: 1.18rem;
            position: relative;
            line-height: 2;
        }
        .quote:after {
            content: '"';
            position: absolute;
            bottom: -35px;
            right: 35px;
            font-size: 7.5rem;
            color: var(--secondary);
            opacity: 0.18;
            line-height: 0;
        }
        .quote-author {
            display: block;
            margin-top: 22px;
            font-weight: 700;
            color: var(--dark);
            font-style: normal;
            font-size: 1.08rem;
        }
        .highlight {
            background-color: #dbeafe;
            padding: 6px 14px;
            border-radius: 7px;
            font-weight: 700;
            color: var(--primary);
            border: 1px solid #bfdbfe;
        }
        .stat-box {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 28px;
            margin: 45px 0;
        }
        .stat-item {
            flex: 1;
            min-width: 190px;
            background-color: var(--light);
            padding: 28px;
            border-radius: 18px;
            text-align: center;
            box-shadow: 0 4px 18px rgba(0,0,0,0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.11);
        }
        .stat-value {
            font-size: 2.9rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 1.05rem;
            color: var(--text);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }
        .tabs {
            display: flex;
            border-bottom: 3px solid var(--gray);
            margin-bottom: 38px;
            overflow-x: auto;
            padding-bottom: 10px;
        }
        .tab {
            padding: 16px 32px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--text);
        }
        .tab.active {
            border-bottom-color: var(--secondary);
            color: var(--primary);
            font-weight: 700;
        }
        .tab:hover:not(.active) {
            border-bottom-color: var(--gray);
            color: var(--primary);
            background-color: #f0f7ff;
            border-radius: 8px 8px 0 0;
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(12px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .tab-content.active {
            display: block;
        }
        .progress-container {
            width: 100%;
            height: 8px;
            background: transparent;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1001;
        }
        .progress-bar {
            height: 8px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            width: 0%;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 95px 0 55px;
            position: relative;
        }
        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 7px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 55px;
            margin-bottom: 75px;
        }
        .footer-column h3 {
            color: white;
            font-size: 1.45rem;
            margin: 0 0 32px;
            padding-left: 0;
            border-bottom: 2px solid rgba(255,255,255,0.14);
            padding-bottom: 16px;
        }
        .footer-column h3:before {
            display: none;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 18px;
        }
        .footer-links a {
            color: rgba(255,255,255,0.72);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 9px;
        }
        .game-categories, .game-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 22px;
        }
        .category-tag {
            background-color: rgba(255,255,255,0.09);
            padding: 11px 22px;
            border-radius: 30px;
            font-size: 1.02rem;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
        }
        .category-tag:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        .recommendation {
            background-color: rgba(255,61,0,0.09);
            border-left: 6px solid var(--secondary);
            padding: 32px;
            margin: 45px 0;
            border-radius: 0 18px 18px 0;
        }
        .recommendation h3 {
            color: var(--secondary);
            margin-top: 0;
            padding-left: 0;
            font-size: 1.55rem;
        }
        .recommendation h3:before {
            display: none;
        }
        .copyright {
            text-align: center;
            padding-top: 45px;
            border-top: 1px solid rgba(255,255,255,0.14);
            font-size: 1.05rem;
            color: rgba(255,255,255,0.58);
            line-height: 1.8;
        }
        .social-links {
            display: flex;
            gap: 22px;
            margin-top: 28px;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.09);
            color: white;
            transition: all 0.3s ease;
            font-size: 1.25rem;
        }
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }
        .badge {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.98rem;
            font-weight: 600;
            margin-right: 12px;
            margin-bottom: 12px;
        }
        .badge-primary {
            background-color: #dbeafe;
            color: var(--primary);
            border: 1px solid #bfdbfe;
        }
        .badge-secondary {
            background-color: #fed7aa;
            color: var(--secondary);
            border: 1px solid #fdba74;
        }
        .badge-accent {
            background-color: #f0e7ff;
            color: #7e22ce;
            border: 1px solid #ddd6fe;
        }
        @media (max-width: 1299px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero h1 {
                font-size: 3.1rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background: white;
                padding: 38px;
                box-shadow: 0 12px 18px rgba(0,0,0,0.14);
                border-radius: 0 0 22px 22px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin-bottom: 22px;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 90px 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.18rem;
            }
            h2 {
                font-size: 1.95rem;
            }
            h3 {
                font-size: 1.45rem;
            }
            .content-section {
                padding: 35px;
            }
            .sidebar-card {
                padding: 28px;
            }
            .btn {
                padding: 11px 22px;
                font-size: 1rem;
            }
            .stat-box {
                gap: 18px;
            }
            .stat-item {
                min-width: 150px;
                padding: 22px;
            }
            .stat-value {
                font-size: 2.3rem;
            }
        }
        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            .hero {
                padding: 70px 0;
            }
            .hero h1 {
                font-size: 2.1rem;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 18px;
            }
            .btn-download {
                margin-right: 0;
            }
            .stat-box {
                gap: 18px;
            }
            .stat-item {
                min-width: 100%;
                padding: 22px;
            }
            .stat-value {
                font-size: 2.4rem;
            }
            .tabs {
                padding-bottom: 18px;
            }
            .tab {
                padding: 12px 18px;
                font-size: 0.95rem;
            }
            .copyright {
                font-size: 0.98rem;
            }
            .image-container {
                margin: 35px 0;
            }
            .quote {
                padding: 22px;
                font-size: 1.08rem;
            }
        }
        ::-webkit-scrollbar {
            width: 11px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }
        ::-webkit-scrollbar-thumb {
            background: #93c5fd;
            border-radius: 7px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }
        .skip-link {
            position: absolute;
            top: -50px;
            left: 0;
            background: var(--primary);
            color: white;
            padding: 11px;
            z-index: 100;
            font-size: 1.05rem;
        }
        .skip-link:focus {
            top: 0;
        }
        .section-divider {
            height: 3px;
            width: 100%;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            margin: 65px 0;
            opacity: 0.5;
        }
        .cta-box {
            background: linear-gradient(135deg, #dbeafe 0%, #fed7aa 100%);
            border-radius: 18px;
            padding: 38px;
            margin: 55px 0;
            text-align: center;
            border: 1px solid #dbeafe;
        }
        .cta-box h3 {
            color: var(--dark);
            margin-top: 0;
            padding-left: 0;
        }
        .cta-box h3:before {
            display: none;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 22px;
            margin-top: 28px;
            flex-wrap: wrap;
        }
