* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        :root {
            --primary: #d35400;
            --secondary: #e74c3c;
            --accent: #f1c40f;
            --dark: #2c3e50;
            --light: #f8f9fa;
            --text: #2d3436;
            --success: #27ae60;
            --danger: #c0392b;
            --shadow: 0 5px 15px rgba(0,0,0,0.15);
            --shadow-hover: 0 8px 25px rgba(0,0,0,0.25);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #faf5f0;
            color: var(--text);
            line-height: 1.8;
            padding-bottom: 80px;
            font-size: 1rem;
        }
        .container {
            width: 94%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #1a2530, #2c3e50);
            color: white;
            padding: 20px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 0.7px;
            text-transform: uppercase;
            font-family: 'Arial Black', Gadget, sans-serif;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo span {
            color: var(--secondary);
        }
        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }
        .nav-links li {
            margin-left: 38px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            font-size: 1.08rem;
            padding: 6px 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: var(--transition);
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .btn {
            padding: 13px 26px;
            border-radius: 38px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-block;
            border: none;
            cursor: pointer;
            text-align: center;
            font-size: 1.05rem;
            letter-spacing: 0.6px;
            font-family: 'Segoe UI Semibold', sans-serif;
        }
        .btn-primary {
            background-color: var(--secondary);
            color: white;
            box-shadow: 0 4px 12px rgba(231, 76, 60, 0.35);
        }
        .btn-primary:hover {
            background-color: #c0392b;
            transform: translateY(-4px);
            box-shadow: 0 7px 18px rgba(231, 76, 60, 0.45);
            color: white;
        }
        .btn-secondary {
            background-color: var(--accent);
            color: var(--dark);
            box-shadow: 0 4px 12px rgba(241, 196, 15, 0.35);
        }
        .btn-secondary:hover {
            background-color: #d4ac0d;
            transform: translateY(-4px);
            box-shadow: 0 7px 18px rgba(241, 196, 15, 0.45);
            color: var(--dark);
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--accent);
            z-index: 1001;
        }
        .hero {
            background: url('https://picsum.photos/id/1047/1920/1080') center/cover no-repeat;
            padding: 180px 0;
            text-align: center;
            color: white;
            position: relative;
            border-radius: 0 0 40px 40px;
            margin-bottom: 80px;
            overflow: hidden;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.8), rgba(26,37,48,0.95));
            border-radius: 0 0 40px 40px;
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1100px;
            margin: 0 auto;
        }
        .hero h1 {
            font-size: 4.7rem;
            margin-bottom: 30px;
            text-shadow: 0 4px 12px rgba(0,0,0,0.7);
            line-height: 1.25;
            font-weight: 800;
        }
        .hero h1 span {
            color: var(--accent);
            text-shadow: 0 4px 15px rgba(241, 196, 15, 0.6);
        }
        .hero p {
            font-size: 1.45rem;
            max-width: 900px;
            margin: 0 auto 45px;
            text-shadow: 0 3px 10px rgba(0,0,0,0.6);
            line-height: 2;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .hero-tagline {
            font-size: 1.2rem;
            margin-top: 25px;
            color: var(--accent);
            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
            font-weight: 500;
        }
        .section {
            margin-bottom: 100px;
            position: relative;
        }
        .section::before {
            content: '';
            position: absolute;
            top: -25px;
            left: 0;
            width: 80px;
            height: 6px;
            background-color: var(--secondary);
            border-radius: 3px;
        }
        .section-title {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 45px;
            padding-bottom: 18px;
            border-bottom: 4px solid var(--primary);
            display: inline-block;
            font-weight: 700;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 45%;
            height: 4px;
            background-color: var(--accent);
        }
        .section-content {
            background-color: white;
            border-radius: 25px;
            padding: 45px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 3px solid var(--secondary);
        }
        .section-content:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
        }
        .subheading {
            font-size: 1.95rem;
            color: var(--primary);
            margin: 45px 0 30px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .subheading i {
            color: var(--accent);
            font-size: 2.2rem;
            background-color: rgba(241, 196, 15, 0.1);
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 40px;
            margin-top: 45px;
        }
        .card {
            background-color: #fff8f0;
            border-radius: 18px;
            padding: 35px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 6px solid var(--secondary);
            position: relative;
            overflow: hidden;
        }
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 80px;
            background-color: rgba(231, 76, 60, 0.05);
            border-radius: 0 0 0 50%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-top-color: var(--accent);
        }
        .card-title {
            font-size: 1.75rem;
            color: var(--dark);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 600;
        }
        .card-icon {
            font-size: 2.3rem;
            color: var(--secondary);
            background-color: rgba(231, 76, 60, 0.1);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .card-text {
            color: #475569;
            line-height: 1.8;
            font-size: 1.02rem;
        }
        .img-responsive {
            width: 100%;
            height: auto;
            border-radius: 18px;
            margin: 35px 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid #eee;
        }
        .img-responsive:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-hover);
        }
        .img-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 35px 0;
        }
        .gallery-img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid #eee;
        }
        .gallery-img:hover {
            transform: scale(1.07);
            box-shadow: var(--shadow-hover);
        }
        strong {
            color: var(--secondary);
            font-weight: 600;
        }
        em {
            color: var(--primary);
            font-style: italic;
            font-weight: 500;
        }
        ul, ol {
            margin: 30px 0 30px 45px;
        }
        li {
            margin-bottom: 18px;
            line-height: 1.9;
            position: relative;
            padding-left: 12px;
            font-size: 1.02rem;
        }
        li::before {
            content: '•';
            color: var(--accent);
            font-weight: bold;
            position: absolute;
            left: -25px;
            font-size: 1.5rem;
        }
        .quote {
            font-style: italic;
            padding: 30px;
            border-left: 6px solid var(--accent);
            background-color: rgba(241, 196, 15, 0.08);
            margin: 45px 0;
            border-radius: 0 20px 20px 0;
            font-size: 1.15rem;
            color: #334155;
            position: relative;
        }
        .quote::before {
            content: '"';
            position: absolute;
            top: -15px;
            left: 10px;
            font-size: 5rem;
            color: rgba(241, 196, 15, 0.15);
            font-family: Georgia, serif;
            line-height: 1;
        }
        .quote-author {
            display: block;
            margin-top: 20px;
            font-size: 1.05rem;
            color: var(--primary);
            font-weight: 500;
            text-align: right;
            font-style: normal;
        }
        .highlight {
            background-color: rgba(211, 84, 0, 0.1);
            padding: 5px 10px;
            border-radius: 6px;
            color: var(--primary);
            font-weight: 500;
        }
        .stat-box {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 45px 0;
            justify-content: center;
        }
        .stat-item {
            background-color: rgba(241, 196, 15, 0.1);
            padding: 30px 40px;
            border-radius: 18px;
            text-align: center;
            min-width: 200px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            background-color: rgba(241, 196, 15, 0.15);
        }
        .stat-number {
            font-size: 3.3rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .stat-label {
            font-size: 1.15rem;
            color: var(--dark);
            font-weight: 500;
        }
        .tabs {
            display: flex;
            border-bottom: 3px solid #eee;
            margin-bottom: 45px;
            position: relative;
        }
        .tabs::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent);
            transition: var(--transition);
        }
        .tab {
            padding: 18px 35px;
            cursor: pointer;
            background-color: transparent;
            border: none;
            font-weight: 600;
            color: #64748b;
            transition: var(--transition);
            font-size: 1.15rem;
            position: relative;
        }
        .tab.active {
            color: var(--accent);
        }
        .tab:hover {
            color: var(--primary);
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        .tab-content.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 35px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .data-table th, .data-table td {
            padding: 18px 25px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        .data-table th {
            background-color: var(--dark);
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 1.2px;
        }
        .data-table tr:nth-child(even) {
            background-color: #f9fafb;
        }
        .data-table tr:hover {
            background-color: #f1f5f9;
        }
        .data-table td:first-child {
            font-weight: 500;
            color: var(--dark);
        }
        .badge {
            display: inline-block;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        .badge-primary {
            background-color: rgba(231, 76, 60, 0.18);
            color: var(--secondary);
        }
        .badge-secondary {
            background-color: rgba(211, 84, 0, 0.18);
            color: var(--primary);
        }
        .badge-success {
            background-color: rgba(39, 174, 96, 0.18);
            color: var(--success);
        }
        .badge-accent {
            background-color: rgba(241, 196, 15, 0.18);
            color: var(--accent);
        }
        .feature-box {
            background-color: rgba(211, 84, 0, 0.05);
            border-radius: 20px;
            padding: 35px;
            margin: 40px 0;
            border-left: 5px solid var(--primary);
        }
        .feature-box h4 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 600;
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .feature-item i {
            color: var(--success);
            font-size: 1.3rem;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 90px 0 50px;
            border-radius: 40px 40px 0 0;
            margin-top: 120px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            margin-bottom: 70px;
        }
        .footer-column h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--accent);
            position: relative;
            padding-bottom: 18px;
            font-weight: 600;
        }
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--secondary);
            border-radius: 2px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 18px;
            position: relative;
            padding-left: 25px;
        }
        .footer-links li::before {
            content: '→';
            color: var(--accent);
            position: absolute;
            left: 0;
            font-size: 1.3rem;
        }
        .footer-links a {
            color: #e2e8f0;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.08rem;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 8px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }
        .tag {
            background-color: rgba(255, 255, 255, 0.12);
            padding: 12px 22px;
            border-radius: 30px;
            font-size: 1rem;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag:hover {
            background-color: var(--accent);
            transform: translateY(-4px);
            border-color: var(--accent);
        }
        .recommendation {
            background-color: rgba(241, 196, 15, 0.15);
            padding: 35px;
            border-radius: 20px;
            margin-top: 40px;
            border-left: 5px solid var(--accent);
        }
        .recommendation h4 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--accent);
            font-weight: 600;
        }
        .recommendation p {
            color: #e2e8f0;
            line-height: 1.9;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 1rem;
            color: #94a3b8;
            line-height: 2;
        }
        .copyright-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        .copyright-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.02rem;
        }
        .copyright-links a:hover {
            color: var(--accent);
        }
        .game-categories {
            margin-top: 30px;
        }
        .game-categories h4 {
            font-size: 1.3rem;
            color: var(--accent);
            margin-bottom: 20px;
            font-weight: 600;
        }
        .category-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .category-item {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 8px 16px;
            border-radius: 20px;
            transition: var(--transition);
        }
        .category-item a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 0.95rem;
        }
        .category-item:hover {
            background-color: var(--accent);
        }
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 4.2rem;
            }
            .section-title {
                font-size: 2.6rem;
            }
            .subheading {
                font-size: 1.85rem;
            }
            .grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 35px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 15px;
            }
            .nav-links li {
                margin-left: 25px;
            }
            .hero {
                padding: 150px 0;
            }
            .hero h1 {
                font-size: 3.7rem;
            }
            .hero p {
                font-size: 1.35rem;
            }
            .section {
                margin-bottom: 80px;
            }
            .section-content {
                padding: 40px 30px;
            }
            .img-gallery {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            .gallery-img {
                height: 220px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                padding: 40px 30px;
                box-shadow: 0 20px 20px rgba(0,0,0,0.3);
                border-radius: 0 0 25px 25px;
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 18px 0;
                width: 100%;
            }
            .nav-links a {
                font-size: 1.15rem;
                display: block;
                padding: 12px 0;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 120px 0;
            }
            .hero h1 {
                font-size: 2.9rem;
            }
            .hero p {
                font-size: 1.25rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            .btn {
                width: 95%;
                padding: 15px;
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 2.3rem;
            }
            .subheading {
                font-size: 1.65rem;
            }
            .section-content {
                padding: 35px 25px;
            }
            .grid {
                gap: 30px;
            }
            .card {
                padding: 30px;
            }
            .stat-box {
                gap: 20px;
            }
            .stat-item {
                padding: 25px 30px;
                min-width: 160px;
            }
            .stat-number {
                font-size: 2.9rem;
            }
            .tabs {
                flex-wrap: wrap;
            }
            .tab {
                padding: 12px 20px;
                font-size: 1.05rem;
            }
            .data-table th, .data-table td {
                padding: 15px 20px;
                font-size: 0.9rem;
            }
            .footer-content {
                gap: 40px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.8rem;
            }
            .hero {
                padding: 100px 0;
                border-radius: 0 0 20px 20px;
            }
            .hero::after {
                border-radius: 0 0 20px 20px;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
            .section {
                margin-bottom: 60px;
            }
            .section-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }
            .subheading {
                font-size: 1.5rem;
                margin: 35px 0 25px;
                gap: 12px;
            }
            .subheading i {
                width: 45px;
                height: 45px;
                font-size: 1.8rem;
            }
            .quote {
                padding: 20px;
                font-size: 1.05rem;
            }
            .stat-box {
                gap: 15px;
            }
            .stat-item {
                padding: 20px 25px;
                min-width: 140px;
            }
            .stat-number {
                font-size: 2.3rem;
            }
            .stat-label {
                font-size: 1rem;
            }
            .img-gallery {
                grid-template-columns: 1fr;
            }
            .gallery-img {
                height: 200px;
            }
            footer {
                padding: 70px 0 40px;
                border-radius: 25px 25px 0 0;
            }
            .footer-content {
                gap: 35px;
            }
            .footer-column h3 {
                font-size: 1.5rem;
                margin-bottom: 25px;
            }
            .copyright {
                font-size: 0.95rem;
            }
            .copyright-links {
                gap: 20px;
            }
            .tags {
                gap: 10px;
            }
            .tag {
                padding: 10px 18px;
                font-size: 0.9rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .mb-40 {
            margin-bottom: 40px;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mt-30 {
            margin-top: 30px;
        }
        .mt-40 {
            margin-top: 40px;
        }
        .italic {
            font-style: italic;
        }
        .uppercase {
            text-transform: uppercase;
        }
        .underline {
            text-decoration: underline;
            text-underline-offset: 5px;
            text-decoration-color: var(--accent);
            text-decoration-thickness: 2px;
        }
