* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #FF6B00;
            --secondary: #1A1A2E;
            --accent: #F7D94C;
            --light: #F8F9FA;
            --dark: #212529;
            --success: #28A745;
            --spacing: 1.5rem;
            --border-radius: 8px;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.8;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing);
        }
        header {
            background-color: var(--secondary);
            color: var(--light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--primary);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .btn {
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        .btn-primary {
            background-color: var(--primary);
            color: white;
        }
        .btn-primary:hover {
            background-color: #e05a00;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255,107,0,0.3);
        }
        .btn-secondary {
            background-color: var(--accent);
            color: var(--secondary);
        }
        .btn-secondary:hover {
            background-color: #e6c840;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(247,217,76,0.3);
        }
        .btn-group {
            display: flex;
            gap: 1rem;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--light);
        }
        .hero {
            background: linear-gradient(rgba(26,26,46,0.8), rgba(26,26,46,0.8)), url('https://host.com/images/papri-zoom-fury-hero.jpg') center/cover no-repeat;
            color: var(--light);
            padding: 6rem 0;
            text-align: center;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        main {
            padding: 2rem 0 4rem;
        }
        .section {
            margin-bottom: 4rem;
        }
        .section-title {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--secondary);
            border-bottom: 3px solid var(--primary);
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        .subsection-title {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: var(--secondary);
        }
        .content-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }
        .image-container {
            margin: 2rem 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .image-caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: #666;
            font-size: 0.95rem;
        }
        .feature-list {
            list-style: none;
            margin: 1.5rem 0;
        }
        .feature-list li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .feature-list li:before {
            content: "🎮";
            position: absolute;
            left: 0;
        }
        .table-container {
            overflow-x: auto;
            margin: 2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        th, td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        th {
            background-color: var(--secondary);
            color: white;
            font-weight: 600;
        }
        tr:hover {
            background-color: #f9f9f9;
        }
        .quote {
            font-style: italic;
            padding: 1.5rem;
            border-left: 4px solid var(--primary);
            background-color: #f8f8f8;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 0.5rem;
            font-weight: 600;
            color: var(--secondary);
        }
        .tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            border-bottom: 1px solid #ddd;
            padding-bottom: 0.5rem;
        }
        .tab {
            padding: 0.8rem 1.5rem;
            background-color: #f1f1f1;
            border: none;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .tab.active {
            background-color: var(--primary);
            color: white;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .cta {
            background-color: var(--secondary);
            color: white;
            padding: 3rem 0;
            text-align: center;
            border-radius: var(--border-radius);
            margin: 4rem 0;
        }
        .cta h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }
        .cta p {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
        }
        footer {
            background-color: var(--secondary);
            color: var(--light);
            padding: 4rem 0 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            border-bottom: 2px solid var(--primary);
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .tag {
            background-color: #333;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .tag a {
            color: var(--light);
            text-decoration: none;
        }
        .tag a:hover {
            color: var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .btn-group {
                margin-top: 1rem;
                width: 100%;
                justify-content: center;
            }
            .hero {
                padding: 4rem 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-card {
                padding: 1.5rem;
            }
            th, td {
                padding: 0.8rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.5rem;
            }
            .btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .subsection-title {
                font-size: 1.3rem;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            height: 100vh;
            background-color: var(--secondary);
            z-index: 2000;
            padding: 2rem;
            transition: left 0.3s ease;
        }
        .mobile-nav.active {
            left: 0;
        }
        .mobile-nav-links {
            list-style: none;
            margin-top: 3rem;
        }
        .mobile-nav-links li {
            margin-bottom: 1.5rem;
        }
        .mobile-nav-links a {
            color: var(--light);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
        }
        .close-btn {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 1.5rem;
            color: var(--light);
            cursor: pointer;
        }
