* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        :root {
            --primary: #ff4500;
            --secondary: #2c3e50;
            --accent: #ffdd00;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --text: #2d3142;
            --success: #27ae60;
            --danger: #e74c3c;
            --shadow: 0 5px 15px rgba(0,0,0,0.12);
            --shadow-hover: 0 8px 25px rgba(0,0,0,0.2);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #fff8e6;
            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, #2c3e50, #1a237e);
            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.2rem;
            font-weight: 800;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            font-family: 'Arial Black', Gadget, sans-serif;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--primary);
        }
        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }
        .nav-links li {
            margin-left: 35px;
        }
        .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: 12px 24px;
            border-radius: 35px;
            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.5px;
            font-family: 'Segoe UI Semibold', sans-serif;
        }
        .btn-primary {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
        }
        .btn-primary:hover {
            background-color: #e03c00;
            transform: translateY(-3px);
            box-shadow: 0 7px 18px rgba(255, 69, 0, 0.4);
            color: white;
        }
        .btn-secondary {
            background-color: var(--accent);
            color: var(--dark);
            box-shadow: 0 4px 12px rgba(255, 221, 0, 0.3);
        }
        .btn-secondary:hover {
            background-color: #e6c800;
            transform: translateY(-3px);
            box-shadow: 0 7px 18px rgba(255, 221, 0, 0.4);
            color: var(--dark);
        }
        .hamburger {
            display: none;
            font-size: 2.1rem;
            cursor: pointer;
            color: var(--accent);
            z-index: 1001;
        }
        .hero {
            background: url('https://picsum.photos/id/1080/1920/1080') center/cover no-repeat;
            padding: 190px 0;
            text-align: center;
            color: white;
            position: relative;
            border-radius: 0 0 45px 45px;
            margin-bottom: 90px;
            overflow: hidden;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.85), rgba(26,26,46,0.95));
            border-radius: 0 0 45px 45px;
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1150px;
            margin: 0 auto;
        }
        .hero h1 {
            font-size: 4.8rem;
            margin-bottom: 35px;
            text-shadow: 0 4px 15px rgba(0,0,0,0.7);
            line-height: 1.2;
            font-weight: 800;
        }
        .hero h1 span {
            color: var(--accent);
            text-shadow: 0 4px 18px rgba(255, 221, 0, 0.6);
        }
        .hero p {
            font-size: 1.5rem;
            max-width: 950px;
            margin: 0 auto 50px;
            text-shadow: 0 3px 12px rgba(0,0,0,0.6);
            line-height: 2.1;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
        }
        .hero-tagline {
            font-size: 1.25rem;
            margin-top: 30px;
            color: var(--accent);
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
            font-weight: 500;
        }
        .section {
            margin-bottom: 110px;
            position: relative;
        }
        .section::before {
            content: '';
            position: absolute;
            top: -30px;
            left: 0;
            width: 90px;
            height: 7px;
            background-color: var(--primary);
            border-radius: 4px;
        }
        .section-title {
            font-size: 2.9rem;
            color: var(--dark);
            margin-bottom: 50px;
            padding-bottom: 20px;
            border-bottom: 4px solid var(--secondary);
            display: inline-block;
            font-weight: 700;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 40%;
            height: 4px;
            background-color: var(--accent);
        }
        .section-content {
            background-color: white;
            border-radius: 28px;
            padding: 50px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }
        .section-content:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-6px);
        }
        .subheading {
            font-size: 2.05rem;
            color: var(--secondary);
            margin: 50px 0 35px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .subheading i {
            color: var(--accent);
            font-size: 2.3rem;
            background-color: rgba(255, 221, 0, 0.1);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 45px;
            margin-top: 50px;
        }
        .card {
            background-color: #fffaf0;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 7px solid var(--primary);
            position: relative;
            overflow: hidden;
        }
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 90px;
            height: 90px;
            background-color: rgba(255, 69, 0, 0.05);
            border-radius: 0 0 0 50%;
        }
        .card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-hover);
            border-top-color: var(--accent);
        }
        .card-title {
            font-size: 1.85rem;
            color: var(--dark);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 18px;
            font-weight: 600;
        }
        .card-icon {
            font-size: 2.5rem;
            color: var(--primary);
            background-color: rgba(255, 69, 0, 0.1);
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .card-text {
            color: #37474f;
            line-height: 1.9;
            font-size: 1.05rem;
        }
        .img-responsive {
            width: 100%;
            height: auto;
            border-radius: 20px;
            margin: 40px 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid #ffd54f;
        }
        .img-responsive:hover {
            transform: scale(1.04);
            box-shadow: var(--shadow-hover);
        }
        .img-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .gallery-img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            border-radius: 18px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid #ffd54f;
        }
        .gallery-img:hover {
            transform: scale(1.08);
            box-shadow: var(--shadow-hover);
        }
        strong {
            color: var(--primary);
            font-weight: 600;
        }
        em {
            color: var(--secondary);
            font-style: italic;
            font-weight: 500;
        }
        ul, ol {
            margin: 35px 0 35px 50px;
        }
        li {
            margin-bottom: 20px;
            line-height: 2;
            position: relative;
            padding-left: 15px;
            font-size: 1.05rem;
        }
        li::before {
            content: '•';
            color: var(--accent);
            font-weight: bold;
            position: absolute;
            left: -30px;
            font-size: 1.7rem;
        }
        .quote {
            font-style: italic;
            padding: 35px;
            border-left: 7px solid var(--accent);
            background-color: rgba(255, 221, 0, 0.08);
            margin: 50px 0;
            border-radius: 0 25px 25px 0;
            font-size: 1.2rem;
            color: #2d3142;
            position: relative;
        }
        .quote::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 15px;
            font-size: 6rem;
            color: rgba(255, 221, 0, 0.15);
            font-family: Georgia, serif;
            line-height: 1;
        }
        .quote-author {
            display: block;
            margin-top: 25px;
            font-size: 1.1rem;
            color: var(--secondary);
            font-weight: 500;
            text-align: right;
            font-style: normal;
        }
        .highlight {
            background-color: rgba(255, 69, 0, 0.1);
            padding: 6px 12px;
            border-radius: 8px;
            color: #c0392b;
            font-weight: 500;
        }
        .stat-box {
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
            margin: 50px 0;
            justify-content: center;
        }
        .stat-item {
            background-color: rgba(255, 221, 0, 0.1);
            padding: 35px 45px;
            border-radius: 20px;
            text-align: center;
            min-width: 220px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .stat-item:hover {
            transform: translateY(-7px);
            box-shadow: var(--shadow-hover);
            background-color: rgba(255, 221, 0, 0.15);
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.3;
        }
        .stat-label {
            font-size: 1.2rem;
            color: var(--dark);
            font-weight: 500;
        }
        .tabs {
            display: flex;
            border-bottom: 3px solid #ffd54f;
            margin-bottom: 50px;
            position: relative;
        }
        .tabs::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent);
            transition: var(--transition);
        }
        .tab {
            padding: 20px 40px;
            cursor: pointer;
            background-color: transparent;
            border: none;
            font-weight: 600;
            color: #546e7a;
            transition: var(--transition);
            font-size: 1.2rem;
            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: 40px 0;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .data-table th, .data-table td {
            padding: 20px 28px;
            text-align: left;
            border-bottom: 1px solid #ffd54f;
        }
        .data-table th {
            background-color: var(--dark);
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 1.3px;
        }
        .data-table tr:nth-child(even) {
            background-color: #fff5e6;
        }
        .data-table tr:hover {
            background-color: #fff8e6;
        }
        .data-table td:first-child {
            font-weight: 500;
            color: var(--dark);
        }
        .badge {
            display: inline-block;
            padding: 9px 18px;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 600;
            margin-right: 12px;
            margin-bottom: 12px;
        }
        .badge-primary {
            background-color: rgba(255, 69, 0, 0.18);
            color: var(--primary);
        }
        .badge-secondary {
            background-color: rgba(44, 62, 80, 0.18);
            color: var(--secondary);
        }
        .badge-success {
            background-color: rgba(39, 174, 96, 0.18);
            color: var(--success);
        }
        .badge-accent {
            background-color: rgba(255, 221, 0, 0.18);
            color: var(--accent);
        }
        .feature-box {
            background-color: rgba(255, 69, 0, 0.05);
            border-radius: 25px;
            padding: 40px;
            margin: 45px 0;
            border-left: 6px solid var(--primary);
        }
        .feature-box h4 {
            font-size: 1.6rem;
            color: var(--secondary);
            margin-bottom: 25px;
            font-weight: 600;
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .feature-item i {
            color: var(--success);
            font-size: 1.4rem;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 100px 0 60px;
            border-radius: 45px 45px 0 0;
            margin-top: 130px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 70px;
            margin-bottom: 80px;
        }
        .footer-column h3 {
            font-size: 1.9rem;
            margin-bottom: 35px;
            color: var(--accent);
            position: relative;
            padding-bottom: 20px;
            font-weight: 600;
        }
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 20px;
            position: relative;
            padding-left: 30px;
        }
        .footer-links li::before {
            content: '→';
            color: var(--accent);
            position: absolute;
            left: 0;
            font-size: 1.4rem;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 10px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 35px;
        }
        .tag {
            background-color: rgba(255, 255, 255, 0.12);
            padding: 14px 25px;
            border-radius: 35px;
            font-size: 1.05rem;
            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(-5px);
            border-color: var(--accent);
        }
        .recommendation {
            background-color: rgba(255, 221, 0, 0.15);
            padding: 40px;
            border-radius: 25px;
            margin-top: 45px;
            border-left: 6px solid var(--accent);
        }
        .recommendation h4 {
            font-size: 1.7rem;
            margin-bottom: 25px;
            color: var(--accent);
            font-weight: 600;
        }
        .recommendation p {
            color: #e0e0e0;
            line-height: 2;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 60px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 1.05rem;
            color: #90a4ae;
            line-height: 2.2;
        }
        .copyright-links {
            display: flex;
            justify-content: center;
            gap: 35px;
            margin: 25px 0;
            flex-wrap: wrap;
        }
        .copyright-links a {
            color: #90a4ae;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.05rem;
        }
        .copyright-links a:hover {
            color: var(--accent);
        }
        .game-categories {
            margin-top: 35px;
        }
        .game-categories h4 {
            font-size: 1.4rem;
            color: var(--accent);
            margin-bottom: 25px;
            font-weight: 600;
        }
        .category-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .category-item {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            border-radius: 25px;
            transition: var(--transition);
        }
        .category-item a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 1rem;
        }
        .category-item:hover {
            background-color: var(--accent);
        }
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 4.3rem;
            }
            .section-title {
                font-size: 2.7rem;
            }
            .subheading {
                font-size: 1.95rem;
            }
            .grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 40px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 20px;
            }
            .nav-links li {
                margin-left: 28px;
            }
            .hero {
                padding: 160px 0;
            }
            .hero h1 {
                font-size: 3.8rem;
            }
            .hero p {
                font-size: 1.4rem;
            }
            .section {
                margin-bottom: 90px;
            }
            .section-content {
                padding: 45px 35px;
            }
            .img-gallery {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
            .gallery-img {
                height: 240px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                padding: 45px 35px;
                box-shadow: 0 25px 25px rgba(0,0,0,0.3);
                border-radius: 0 0 30px 30px;
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 20px 0;
                width: 100%;
            }
            .nav-links a {
                font-size: 1.2rem;
                display: block;
                padding: 15px 0;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 130px 0;
            }
            .hero h1 {
                font-size: 3rem;
            }
            .hero p {
                font-size: 1.3rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 25px;
            }
            .btn {
                width: 95%;
                padding: 16px;
                font-size: 1.15rem;
            }
            .section-title {
                font-size: 2.4rem;
            }
            .subheading {
                font-size: 1.75rem;
            }
            .section-content {
                padding: 40px 30px;
            }
            .grid {
                gap: 35px;
            }
            .card {
                padding: 35px;
            }
            .stat-box {
                gap: 25px;
            }
            .stat-item {
                padding: 30px 35px;
                min-width: 180px;
            }
            .stat-number {
                font-size: 3rem;
            }
            .tabs {
                flex-wrap: wrap;
            }
            .tab {
                padding: 15px 25px;
                font-size: 1.1rem;
            }
            .data-table th, .data-table td {
                padding: 18px 22px;
                font-size: 0.95rem;
            }
            .footer-content {
                gap: 45px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.9rem;
            }
            .hero {
                padding: 110px 0;
                border-radius: 0 0 25px 25px;
            }
            .hero::after {
                border-radius: 0 0 25px 25px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .section {
                margin-bottom: 70px;
            }
            .section-title {
                font-size: 2.1rem;
                margin-bottom: 35px;
            }
            .subheading {
                font-size: 1.6rem;
                margin: 40px 0 30px;
                gap: 15px;
            }
            .subheading i {
                width: 50px;
                height: 50px;
                font-size: 1.9rem;
            }
            .quote {
                padding: 25px;
                font-size: 1.1rem;
            }
            .stat-box {
                gap: 20px;
            }
            .stat-item {
                padding: 25px 30px;
                min-width: 150px;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .stat-label {
                font-size: 1.05rem;
            }
            .img-gallery {
                grid-template-columns: 1fr;
            }
            .gallery-img {
                height: 220px;
            }
            footer {
                padding: 80px 0 50px;
                border-radius: 30px 30px 0 0;
            }
            .footer-content {
                gap: 40px;
            }
            .footer-column h3 {
                font-size: 1.6rem;
                margin-bottom: 30px;
            }
            .copyright {
                font-size: 1rem;
            }
            .copyright-links {
                gap: 25px;
            }
            .tags {
                gap: 12px;
            }
            .tag {
                padding: 12px 20px;
                font-size: 0.95rem;
            }
        }
        .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;
        }
