* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            background-color: #f5f7fa;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .header {
            background-color: #0f172a;
            color: #ffffff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .container {
            width: 92%;
            max-width: 1280px;
            margin: 0 auto;
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #ff9f43;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .logo span {
            color: #ffffff;
            font-weight: 500;
        }
        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links li {
            margin-left: 35px;
        }
        .nav-links a {
            color: #f1f5f9;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 17px;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ff9f43;
            border-bottom: 2px solid #ff9f43;
        }
        .btn-group {
            display: flex;
            gap: 18px;
            align-items: center;
        }
        .btn {
            padding: 10px 24px;
            border-radius: 35px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 16px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: #ff3f34;
            color: white;
        }
        .btn-login {
            background-color: #ff9f43;
            color: #0f172a;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-download:hover {
            background-color: #e0352b;
        }
        .btn-login:hover {
            background-color: #e68a3c;
        }
        .hamburger {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: #ff9f43;
        }
        .hero {
            background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('https://host.com/hero-image-glider-elite.jpg') center/cover no-repeat;
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 60px;
            border-radius: 0 0 20px 20px;
        }
        .hero h1 {
            font-size: 52px;
            margin-bottom: 25px;
            color: #ff9f43;
            line-height: 1.3;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .hero p {
            font-size: 20px;
            max-width: 900px;
            margin: 0 auto 40px;
            line-height: 1.9;
            color: #f8fafc;
        }
        .hero .btn-group {
            justify-content: center;
            gap: 20px;
        }
        .hero .btn {
            padding: 12px 30px;
            font-size: 18px;
        }
        .hero .btn-download {
            background-color: #ff3f34;
        }
        .hero .btn-login {
            background-color: #ff9f43;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
        }
        .section {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.07);
            border-top: 4px solid #ff9f43;
        }
        .section h2 {
            color: #0f172a;
            margin-bottom: 30px;
            font-size: 32px;
            border-bottom: 3px solid #f1f5f9;
            padding-bottom: 15px;
            font-weight: 700;
        }
        .section h3 {
            color: #ff3f34;
            margin: 30px 0 20px;
            font-size: 26px;
            font-weight: 600;
        }
        .section h4 {
            color: #0f172a;
            margin: 25px 0 15px;
            font-size: 22px;
            font-weight: 600;
        }
        .section p {
            margin-bottom: 25px;
            font-size: 17px;
            line-height: 1.9;
            color: #475569;
        }
        .section ul, .section ol {
            margin-left: 30px;
            margin-bottom: 25px;
            color: #475569;
        }
        .section li {
            margin-bottom: 15px;
            font-size: 17px;
            line-height: 1.8;
        }
        .highlight {
            background-color: #fff8e6;
            padding: 20px;
            border-left: 5px solid #ff9f43;
            margin: 35px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight strong {
            color: #0f172a;
            font-size: 18px;
        }
        .highlight p {
            margin-bottom: 0;
            color: #334155;
            font-size: 17px;
        }
        .image-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 40px 0;
            justify-content: center;
        }
        .game-image {
            width: 100%;
            max-width: 380px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            object-fit: cover;
            height: 240px;
        }
        .game-image:hover {
            transform: translateY(-5px);
        }
        .game-table {
            width: 100%;
            border-collapse: collapse;
            margin: 35px 0;
            font-size: 17px;
        }
        .game-table th, .game-table td {
            padding: 15px 20px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        .game-table th {
            background-color: #f8fafc;
            color: #0f172a;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 16px;
            letter-spacing: 0.5px;
        }
        .game-table tr:hover {
            background-color: #fefeff;
        }
        .game-table tr:nth-child(even) {
            background-color: #fafafa;
        }
        .tabs {
            display: flex;
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: 30px;
            overflow-x: auto;
            scrollbar-width: none;
        }
        .tabs::-webkit-scrollbar {
            display: none;
        }
        .tab {
            padding: 12px 25px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            color: #64748b;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-size: 17px;
        }
        .tab.active {
            border-bottom-color: #ff3f34;
            color: #0f172a;
        }
        .tab:hover {
            color: #ff3f34;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .quote {
            font-style: italic;
            color: #334155;
            border-left: 4px solid #ff9f43;
            padding-left: 20px;
            margin: 30px 0;
            font-size: 18px;
            line-height: 1.9;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 10px;
            color: #0f172a;
            font-weight: 500;
            font-style: normal;
        }
        .stats-card {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .stat-item {
            background-color: #f8fafc;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #e2e8f0;
        }
        .stat-value {
            font-size: 36px;
            font-weight: 700;
            color: #ff3f34;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 16px;
            color: #475569;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .footer {
            background-color: #0f172a;
            color: white;
            padding: 60px 0 30px;
            margin-top: 70px;
            border-radius: 20px 20px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ff9f43;
            margin-bottom: 25px;
            font-size: 22px;
            font-weight: 600;
            border-bottom: 2px solid #1e293b;
            padding-bottom: 10px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 17px;
        }
        .footer-links a:hover {
            color: #ff9f43;
            padding-left: 5px;
        }
        .recommendation {
            background-color: #1e293b;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 40px;
            border-left: 4px solid #ff9f43;
        }
        .recommendation h4 {
            color: #ff9f43;
            margin-bottom: 15px;
            font-size: 20px;
        }
        .recommendation p {
            color: #f1f5f9;
            font-size: 17px;
            line-height: 1.8;
        }
        .game-categories {
            margin: 30px 0;
        }
        .game-categories h4 {
            color: #ff9f43;
            margin-bottom: 15px;
            font-size: 18px;
        }
        .categories-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .category-link {
            background-color: #1e293b;
            color: #f1f5f9;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        .category-link:hover {
            background-color: #ff9f43;
            color: #0f172a;
        }
        .tags-section {
            margin: 30px 0;
        }
        .tags-section h4 {
            color: #ff9f43;
            margin-bottom: 15px;
            font-size: 18px;
        }
        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag-link {
            background-color: #1e293b;
            color: #f1f5f9;
            padding: 6px 12px;
            border-radius: 15px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .tag-link:hover {
            background-color: #ff3f34;
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #1e293b;
            color: #94a3b8;
            font-size: 15px;
            line-height: 1.8;
        }
        .copyright a {
            color: #ff9f43;
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 44px;
            }
            .hero p {
                font-size: 18px;
            }
            .section {
                padding: 35px;
            }
            .section h2 {
                font-size: 28px;
            }
            .section h3 {
                font-size: 24px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: #0f172a;
                padding: 30px;
                gap: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin-left: 0;
            }
            .nav-links a {
                font-size: 18px;
                padding: 10px 0;
            }
            .hamburger {
                display: block;
            }
            .btn-group {
                display: none;
            }
            .mobile-btn-group {
                display: flex;
                gap: 15px;
                margin-top: 20px;
                justify-content: center;
            }
            .hero {
                padding: 60px 0;
            }
            .hero h1 {
                font-size: 36px;
            }
            .hero p {
                font-size: 17px;
            }
            .hero .btn {
                padding: 10px 25px;
                font-size: 16px;
            }
            .section {
                padding: 30px 20px;
            }
            .section h2 {
                font-size: 26px;
            }
            .section h3 {
                font-size: 22px;
            }
            .section h4 {
                font-size: 20px;
            }
            .section p {
                font-size: 16px;
            }
            .game-image {
                max-width: 100%;
                height: auto;
            }
            .game-table th, .game-table td {
                padding: 12px 15px;
                font-size: 15px;
            }
            .stats-card {
                grid-template-columns: 1fr 1fr;
            }
            .stat-value {
                font-size: 30px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 24px;
            }
            .hero h1 {
                font-size: 30px;
            }
            .hero p {
                font-size: 16px;
            }
            .hero .btn-group {
                flex-direction: column;
                gap: 15px;
            }
            .stats-card {
                grid-template-columns: 1fr;
            }
            .footer-content {
                gap: 30px;
            }
            .section ul, .section ol {
                margin-left: 20px;
            }
            .tab {
                padding: 10px 15px;
                font-size: 15px;
            }
        }
        strong {
            color: #0f172a;
            font-weight: 600;
        }
        em {
            color: #ff3f34;
            font-style: italic;
        }
        .icon {
            margin-right: 10px;
            color: #ff9f43;
        }
        .mt-10 {
            margin-top: 10px;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mt-30 {
            margin-top: 30px;
        }
        .mb-10 {
            margin-bottom: 10px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }
        ::-webkit-scrollbar-thumb {
            background: #ff9f43;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ff3f34;
        }
