:root {
            --primary-color: #FF6B00;
            --secondary-color: #1A1A2E;
            --accent-color: #F7D94C;
            --text-color: #333333;
            --light-bg: #F9F9F9;
            --dark-bg: #121212;
            --white: #FFFFFF;
            --gray: #707070;
            --light-gray: #E5E5E5;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: var(--text-color);
            background-color: var(--light-bg);
            padding-bottom: 50px;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 15px 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-color);
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--primary-color);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 1rem;
        }
        .nav-links a:hover {
            color: var(--accent-color);
        }
        .daman-link {
            color: var(--primary-color) !important;
            font-weight: 600;
        }
        .btn {
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            text-align: center;
        }
        .btn-download {
            background-color: var(--primary-color);
            color: var(--white);
            margin-right: 15px;
        }
        .btn-download:hover {
            background-color: #E05A00;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255,107,0,0.3);
        }
        .btn-login {
            background-color: var(--accent-color);
            color: var(--secondary-color);
        }
        .btn-login:hover {
            background-color: #E6C83C;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(247,217,76,0.3);
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }
        .hero {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #2A2A4A 100%);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            border-bottom-left-radius: 50px;
            border-bottom-right-radius: 50px;
            margin-bottom: 60px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--accent-color);
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: #F0F0F0;
            line-height: 1.9;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .hero-image {
            margin-top: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            max-width: 100%;
            height: auto;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
        }
        .section {
            background-color: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }
        .section-title {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--primary-color);
            display: inline-block;
        }
        .section-subtitle {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin: 30px 0 20px;
        }
        .section-content {
            font-size: 1.1rem;
            line-height: 1.9;
        }
        .section-content p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(247,217,76,0.1);
            border-left: 4px solid var(--accent-color);
            padding: 15px 20px;
            border-radius: 0 10px 10px 0;
            margin: 30px 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 500;
            color: var(--secondary-color);
        }
        .list-container {
            margin: 30px 0;
        }
        .game-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .game-list li {
            background-color: var(--light-bg);
            padding: 15px;
            border-radius: 10px;
            border-left: 3px solid var(--primary-color);
            transition: all 0.3s ease;
        }
        .game-list li:hover {
            transform: translateX(5px);
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .game-list li:before {
            content: "🎮 ";
            color: var(--primary-color);
            font-weight: bold;
        }
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .gallery-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .gallery-image:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .table-container {
            overflow-x: auto;
            margin: 30px 0;
        }
        .game-table {
            width: 100%;
            border-collapse: collapse;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .game-table th, .game-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--light-gray);
        }
        .game-table th {
            background-color: var(--secondary-color);
            color: var(--white);
            font-weight: 600;
        }
        .game-table tr:nth-child(even) {
            background-color: var(--light-bg);
        }
        .game-table tr:hover {
            background-color: rgba(255,107,0,0.05);
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .feature-card {
            background-color: var(--light-bg);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary-color);
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .feature-title {
            font-size: 1.3rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }
        .feature-desc {
            color: var(--gray);
            line-height: 1.7;
        }
        .testimonials {
            background-color: rgba(26,26,46,0.03);
            padding: 50px 0;
            border-radius: 20px;
            margin: 40px 0;
        }
        .testimonial-slider {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .testimonial-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
        }
        .testimonial-quote {
            font-size: 3rem;
            color: var(--primary-color);
            opacity: 0.3;
            position: absolute;
            top: 10px;
            left: 20px;
            line-height: 1;
        }
        .testimonial-text {
            margin: 15px 0 20px;
            color: var(--text-color);
            line-height: 1.8;
            font-style: italic;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--light-gray);
        }
        .author-info h4 {
            color: var(--secondary-color);
            font-weight: 600;
        }
        .author-info p {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        footer {
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 80px 0 40px;
            margin-top: 80px;
            border-top-left-radius: 50px;
            border-top-right-radius: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        .footer-logo span {
            color: var(--primary-color);
        }
        .footer-about p {
            color: #CCCCCC;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .footer-title {
            font-size: 1.3rem;
            color: var(--accent-color);
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #CCCCCC;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        .tag {
            background-color: rgba(255,255,255,0.1);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag a {
            color: #CCCCCC;
            text-decoration: none;
        }
        .tag:hover {
            background-color: var(--primary-color);
        }
        .tag:hover a {
            color: var(--white);
        }
        .recommendation {
            background-color: rgba(247,217,76,0.1);
            border-radius: 15px;
            padding: 25px;
            margin-top: 30px;
            border: 1px solid rgba(247,217,76,0.3);
        }
        .recommendation h4 {
            color: var(--accent-color);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        .recommendation p {
            color: #E0E0E0;
            line-height: 1.8;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #AAAAAA;
            font-size: 0.95rem;
        }
        .copyright p {
            margin-bottom: 10px;
        }
        .copyright-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }
        .copyright-links a {
            color: #AAAAAA;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .copyright-links a:hover {
            color: var(--accent-color);
        }
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .section-subtitle {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: var(--secondary-color);
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
                border-bottom-left-radius: 20px;
                border-bottom-right-radius: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 60px 0;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section {
                padding: 30px;
            }
            .features-grid {
                gap: 20px;
            }
            .footer-content {
                gap: 30px;
            }
        }
        @media (max-width: 576px) {
            .header-content {
                flex-wrap: wrap;
            }
            .logo {
                font-size: 1.5rem;
            }
            .btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            .btn-download {
                margin-right: 0;
                margin-bottom: 15px;
                width: 100%;
                max-width: 300px;
            }
            .btn-login {
                width: 100%;
                max-width: 300px;
            }
            .section {
                padding: 25px;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .section-subtitle {
                font-size: 1.3rem;
            }
            .section-content {
                font-size: 1rem;
            }
            .image-gallery {
                grid-template-columns: 1fr;
            }
            .gallery-image {
                height: 180px;
            }
            .testimonial-slider {
                gap: 20px;
            }
        }
