:root {
            --primary: #2c5f8a;
            --primary-light: #3a7ab5;
            --accent: #f5a623;
            --accent-dark: #e08e0b;
            --bg: #f8f9fa;
            --text: #2d3436;
            --text-light: #636e72;
            --white: #ffffff;
            --border: #e1e8ed;
            --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            --radius: 12px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: var(--accent-dark);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo span {
            color: var(--accent);
        }
        header {
            background: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
            flex-wrap: wrap;
            gap: 15px;
        }
        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-wrap .fa-gamepad {
            font-size: 30px;
            color: var(--accent);
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
            list-style: none;
        }
        .nav-desktop li a {
            font-weight: 600;
            font-size: 15px;
            padding: 8px 4px;
            position: relative;
        }
        .nav-desktop li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .nav-desktop li a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            color: var(--primary);
            cursor: pointer;
            padding: 5px;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--white);
            padding: 15px 20px;
            box-shadow: var(--shadow);
        }
        .nav-mobile.open {
            display: flex;
        }
        .nav-mobile a {
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background: transparent;
            padding: 12px 0;
            font-size: 14px;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb .sep {
            margin: 0 6px;
            color: #bdc3c7;
        }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
            padding: 60px 0;
            text-align: center;
            border-radius: 0 0 20px 20px;
        }
        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        .hero .emoji-row {
            font-size: 52px;
            margin: 20px 0;
        }
        .hero .btn-hero {
            display: inline-block;
            background: var(--accent);
            color: var(--white);
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            margin-top: 20px;
            transition: transform 0.3s, background 0.3s;
        }
        .hero .btn-hero:hover {
            background: var(--accent-dark);
            transform: scale(1.05);
        }
        .section {
            padding: 50px 0;
        }
        .section-alt {
            background: var(--white);
        }
        .section h2 {
            font-size: 34px;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 12px;
            font-weight: 700;
        }
        .section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }
        .section h3 {
            font-size: 24px;
            color: var(--primary-light);
            margin: 30px 0 12px;
            font-weight: 600;
        }
        .section h4 {
            font-size: 19px;
            color: var(--text);
            margin: 20px 0 10px;
            font-weight: 600;
        }
        .section p {
            margin-bottom: 15px;
            color: var(--text);
            line-height: 1.8;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        .card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: 4px solid var(--accent);
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }
        .card .icon {
            font-size: 40px;
            margin-bottom: 12px;
            color: var(--primary);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
        }
        .data-table th {
            background: var(--primary);
            color: var(--white);
            padding: 12px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px;
            border-bottom: 1px solid var(--border);
        }
        .data-table tr:hover {
            background: #f0f7fb;
        }
        .quote-box {
            background: #f0f7fb;
            border-left: 4px solid var(--primary);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
        }
        .quote-box .author {
            font-style: normal;
            font-weight: 600;
            margin-top: 10px;
            color: var(--primary);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 5px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 16px;
            font-family: inherit;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 12px 28px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
        }
        .btn:hover {
            background: var(--primary-light);
            transform: scale(1.02);
        }
        .btn-accent {
            background: var(--accent);
        }
        .btn-accent:hover {
            background: var(--accent-dark);
        }
        .faq-item {
            background: var(--white);
            border-radius: var(--radius);
            margin-bottom: 15px;
            padding: 20px 25px;
            box-shadow: var(--shadow);
        }
        .faq-question {
            font-weight: 600;
            font-size: 17px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question .fa-chevron-down {
            transition: transform 0.3s;
            color: var(--primary);
        }
        .faq-question.open .fa-chevron-down {
            transform: rotate(180deg);
        }
        .faq-answer {
            display: none;
            padding-top: 12px;
            color: var(--text-light);
            line-height: 1.8;
        }
        .faq-answer.show {
            display: block;
        }
        .breadcrumb-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            font-size: 14px;
            color: var(--text-light);
            padding: 15px 0;
        }
        .breadcrumb-nav a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb-nav .sep {
            margin: 0 8px;
        }
        .search-box {
            display: flex;
            max-width: 500px;
            margin: 20px auto;
            background: var(--white);
            border-radius: 50px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 14px 20px;
            font-size: 16px;
            outline: none;
        }
        .search-box button {
            background: var(--accent);
            border: none;
            color: var(--white);
            padding: 14px 24px;
            cursor: pointer;
            font-size: 16px;
        }
        .search-box button:hover {
            background: var(--accent-dark);
        }
        .subscribe-box {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
            padding: 40px;
            border-radius: var(--radius);
            text-align: center;
            margin: 40px 0;
        }
        .subscribe-box input[type="email"] {
            padding: 12px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            width: 60%;
            max-width: 400px;
            font-size: 16px;
        }
        .subscribe-box button {
            border-radius: 0 50px 50px 0;
        }
        footer {
            background: #1e272e;
            color: #a4b0be;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }
        footer h4 {
            color: var(--white);
            margin-bottom: 15px;
        }
        footer a {
            color: #a4b0be;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
        }
        footer a:hover {
            color: var(--accent);
        }
        .copyright {
            border-top: 1px solid #2d343c;
            padding-top: 20px;
            text-align: center;
            font-size: 14px;
        }
        .friend-link {
            display: block;
            margin: 15px 0;
            padding: 12px;
            background: #f0f7fb;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
        }
        .image-wrapper {
            margin: 30px 0;
            text-align: center;
        }
        .image-wrapper img {
            max-width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .image-wrapper figcaption {
            font-size: 14px;
            color: var(--text-light);
            margin-top: 10px;
        }
        .table-wrap {
            overflow-x: auto;
        }
        .highlight-box {
            background: #fef9e7;
            border: 2px solid var(--accent);
            border-radius: var(--radius);
            padding: 20px;
            margin: 20px 0;
        }
        .highlight-box strong {
            color: var(--accent-dark);
        }
        @media (max-width: 768px) {
            .header-top {
                padding: 15px 0;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 32px;
            }
            .hero p {
                font-size: 16px;
            }
            .section h2 {
                font-size: 26px;
            }
            .section h3 {
                font-size: 20px;
            }
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .subscribe-box {
                padding: 25px;
            }
            .subscribe-box input[type="email"] {
                width: 100%;
                border-radius: 50px;
                margin-bottom: 10px;
            }
            .subscribe-box button {
                border-radius: 50px;
                width: 100%;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .emoji-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 36px;
            margin: 15px 0;
        }
        .emoji-list li {
            background: var(--white);
            padding: 10px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: transform 0.2s;
        }
        .emoji-list li:hover {
            transform: scale(1.2);
        }
