* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #FF6B6B;
            --secondary: #4ECDC4;
            --accent: #FFD166;
            --light: #F7FFF7;
            --dark: #292F36;
            --text: #1A535C;
            --shadow: 0 4px 15px rgba(0,0,0,0.12);
            --border-radius: 15px;
            --spacing-sm: 12px;
            --spacing-md: 24px;
            --spacing-lg: 36px;
            --spacing-xl: 48px;
        }
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.9;
            padding-bottom: 80px;
            font-size: 16px;
            letter-spacing: 0.3px;
        }
        .container {
            width: 93%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 18px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #E84A5F);
            color: white;
            padding: 20px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        header.scroll {
            padding: 14px 0;
            background: linear-gradient(135deg, #E84A5F, #C33764);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--accent);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.25);
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: white;
            margin-left: 8px;
            font-style: italic;
        }
        .logo::after {
            content: '🎈';
            margin-left: 10px;
            font-size: 1.8rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }
        .nav-links li {
            margin-left: 40px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            padding: 6px 0;
            position: relative;
            display: inline-block;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent);
            transition: width 0.3s ease;
            border-radius: 3px;
        }
        .nav-links a:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .daman-link {
            color: var(--accent) !important;
            font-weight: 600;
            border-bottom: 3px solid var(--accent);
        }
        .daman-link:hover {
            color: #FFE082 !important;
            border-color: #FFE082;
        }
        .btn {
            padding: 12px 28px;
            border-radius: 35px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            margin-left: 25px;
            text-align: center;
            font-size: 1.08rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: var(--accent);
            color: var(--dark);
            box-shadow: 0 4px 10px rgba(255,209,102,0.4);
        }
        .btn-download:hover {
            background-color: #FFE082;
            transform: translateY(-4px);
            box-shadow: 0 6px 16px rgba(255,209,102,0.5);
            color: var(--dark);
        }
        .btn-login {
            background-color: transparent;
            color: white;
            border: 3px solid var(--accent);
        }
        .btn-login:hover {
            background-color: var(--accent);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(255,209,102,0.3);
        }
        .hamburger {
            display: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: white;
            transition: all 0.3s ease;
        }
        .hamburger:hover {
            color: var(--accent);
            transform: scale(1.1);
        }
        .hero {
            background: url('https://host.com/images/ball-bounce-bosses-hero.jpg') center/cover no-repeat;
            height: 620px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            color: white;
            position: relative;
            margin-bottom: var(--spacing-xl);
            border-radius: 0 0 30px 30px;
            overflow: hidden;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0,0,0,0.8), rgba(0,0,0,0.5), rgba(0,0,0,0.7));
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 750px;
            padding: 0 25px;
            margin-left: 4%;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: var(--spacing-md);
            color: var(--accent);
            text-shadow: 3px 3px 9px rgba(0,0,0,0.7);
            line-height: 1.35;
            font-weight: 800;
        }
        .hero p {
            font-size: 1.4rem;
            margin-bottom: var(--spacing-lg);
            line-height: 1.8;
            text-align: left;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
            font-weight: 400;
        }
        .hero-buttons {
            display: flex;
            gap: var(--spacing-md);
            flex-wrap: wrap;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-xl);
        }
        .content-section {
            background: white;
            border-radius: var(--border-radius);
            padding: var(--spacing-xl);
            box-shadow: var(--shadow);
            border: 1px solid rgba(78,205,196,0.15);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-md);
        }
        .sidebar-card {
            background: white;
            border-radius: var(--border-radius);
            padding: var(--spacing-md);
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid var(--secondary);
        }
        .sidebar-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .sidebar-card h3 {
            color: var(--primary);
            margin-bottom: var(--spacing-sm);
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent);
            font-size: 1.4rem;
            display: flex;
            align-items: center;
        }
        .sidebar-card h3::before {
            content: '🎯';
            margin-right: 10px;
        }
        .info-list {
            list-style: none;
        }
        .info-list li {
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            padding-bottom: 10px;
            border-bottom: 1px dashed #eee;
            font-size: 1.02rem;
            align-items: center;
        }
        .info-list li:last-child {
            border-bottom: none;
        }
        .info-list span:first-child {
            font-weight: 600;
            color: var(--dark);
        }
        .info-list span:last-child {
            color: var(--primary);
            font-weight: 600;
            background-color: rgba(255,107,107,0.1);
            padding: 4px 10px;
            border-radius: 20px;
        }
        h1, h2, h3, h4, h5 {
            color: var(--primary);
            margin-bottom: var(--spacing-md);
            position: relative;
            padding-bottom: 15px;
            font-weight: 700;
        }
        h1 {
            font-size: 2.6rem;
            border-bottom: 5px solid var(--accent);
            padding-bottom: 20px;
            margin-bottom: var(--spacing-lg);
            display: inline-block;
            width: 100%;
            text-align: center;
        }
        h1::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 5px;
            background-color: var(--secondary);
            border-radius: 5px;
        }
        h2 {
            font-size: 2.1rem;
            border-bottom: 4px solid var(--accent);
            margin-top: var(--spacing-xl);
            color: var(--text);
        }
        h2::before {
            content: '🔹';
            margin-right: 12px;
            color: var(--primary);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin-top: var(--spacing-lg);
            padding-bottom: 12px;
            border-bottom: 2px solid #eee;
        }
        h3::before {
            content: '🔸';
            margin-right: 10px;
            color: var(--secondary);
        }
        h4 {
            font-size: 1.35rem;
            color: var(--primary);
            margin-top: var(--spacing-md);
            padding-bottom: 8px;
        }
        h4::before {
            content: '▶';
            margin-right: 8px;
            color: var(--accent);
        }
        h5 {
            font-size: 1.15rem;
            color: var(--dark);
            margin-top: var(--spacing-sm);
            padding-bottom: 0;
        }
        p {
            margin-bottom: var(--spacing-md);
            text-align: justify;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        ul, ol {
            margin-bottom: var(--spacing-md);
            padding-left: 35px;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 15px;
            font-size: 1.05rem;
            line-height: 1.7;
        }
        .content-image {
            width: 100%;
            border-radius: 15px;
            margin: var(--spacing-lg) 0;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            display: block;
            border: 4px solid white;
        }
        .content-image:hover {
            transform: scale(1.04);
            box-shadow: 0 8px 25px rgba(0,0,0,0.18);
        }
        .image-caption {
            text-align: center;
            color: #666;
            font-style: italic;
            margin-top: -20px;
            margin-bottom: var(--spacing-lg);
            font-size: 1rem;
            background-color: rgba(0,0,0,0.03);
            padding: 8px 15px;
            border-radius: 0 0 10px 10px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: var(--spacing-lg) 0;
            box-shadow: var(--shadow);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        th, td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #eee;
            font-size: 1.02rem;
        }
        th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        tr:hover {
            background-color: #f0f8f7;
            transform: scale(1.01);
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        blockquote {
            border-left: 5px solid var(--secondary);
            padding: 20px 30px;
            margin: var(--spacing-lg) 0;
            background-color: #f8f8f8;
            border-radius: 0 10px 10px 0;
            font-style: italic;
            color: var(--dark);
            font-size: 1.1rem;
            position: relative;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        blockquote::before {
            content: '"';
            font-size: 4rem;
            color: var(--secondary);
            opacity: 0.25;
            position: absolute;
            top: -20px;
            left: 15px;
        }
        blockquote::after {
            content: '"';
            font-size: 4rem;
            color: var(--secondary);
            opacity: 0.25;
            position: absolute;
            bottom: -40px;
            right: 15px;
        }
        .highlight {
            background-color: rgba(255,209,102,0.1);
            border-left: 5px solid var(--accent);
            padding: 25px;
            margin: var(--spacing-lg) 0;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 500;
            color: var(--dark);
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight strong {
            color: var(--primary);
            font-weight: 700;
        }
        .tabs {
            display: flex;
            margin: var(--spacing-lg) 0;
            border-bottom: 3px solid #eee;
            overflow-x: auto;
            scrollbar-width: none;
            background-color: #f9f9f9;
            border-radius: 10px 10px 0 0;
        }
        .tabs::-webkit-scrollbar {
            display: none;
        }
        .tab {
            padding: 16px 30px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-size: 1.05rem;
            color: var(--dark);
        }
        .tab.active {
            border-bottom: 3px solid var(--primary);
            color: var(--primary);
            background-color: white;
        }
        .tab:hover:not(.active) {
            border-bottom: 3px solid var(--secondary);
            color: var(--text);
            background-color: #f0f0f0;
        }
        .tab-content {
            display: none;
            padding: var(--spacing-md) 0;
        }
        .tab-content.active {
            display: block;
            animation: fadeIn 0.6s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-md);
            margin: var(--spacing-lg) 0;
        }
        .feature-card {
            background-color: #f9f9f9;
            border-radius: var(--border-radius);
            padding: var(--spacing-md);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid var(--secondary);
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            background-color: white;
        }
        .feature-card h4 {
            color: var(--primary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        .feature-card h4::before {
            content: '✅';
            margin-right: 12px;
            font-size: 1.2rem;
        }
        .feature-card p {
            font-size: 1.02rem;
            margin-bottom: 0;
            color: var(--text);
        }
        .stats-section {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: var(--spacing-md);
            margin: var(--spacing-lg) 0;
            background-color: #f8f9fa;
            padding: var(--spacing-lg);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .stat-card {
            flex: 1;
            min-width: 180px;
            background-color: white;
            border-radius: var(--border-radius);
            padding: var(--spacing-md);
            box-shadow: var(--shadow);
            text-align: center;
            border: 2px solid var(--secondary);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: scale(1.05);
            border-color: var(--primary);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 8px;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--dark);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .badge {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        .badge-primary {
            background-color: rgba(255,107,107,0.15);
            color: var(--primary);
        }
        .badge-secondary {
            background-color: rgba(78,205,196,0.15);
            color: var(--secondary);
        }
        .badge-accent {
            background-color: rgba(255,209,102,0.15);
            color: var(--accent);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: var(--spacing-xl) 0 40px;
            margin-top: var(--spacing-xl);
            border-radius: 30px 30px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-xl);
        }
        .footer-column h3 {
            color: var(--accent);
            margin-bottom: var(--spacing-md);
            font-size: 1.4rem;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 12px;
            display: inline-block;
            border-radius: 0 0 5px 5px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.02rem;
            display: flex;
            align-items: center;
        }
        .footer-links a::before {
            content: '→';
            margin-right: 10px;
            color: var(--secondary);
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 10px;
        }
        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(5px);
        }
        .game-categories, .game-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: var(--spacing-sm);
        }
        .category-link, .tag-link {
            background-color: rgba(255,255,255,0.1);
            padding: 8px 18px;
            border-radius: 30px;
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .category-link:hover, .tag-link:hover {
            background-color: var(--accent);
            color: var(--dark);
            transform: translateY(-3px);
            border-color: var(--accent);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .recommendation {
            background-color: rgba(255,209,102,0.1);
            border-radius: var(--border-radius);
            padding: var(--spacing-md);
            margin-top: var(--spacing-md);
            border-left: 5px solid var(--accent);
            border-right: 5px solid var(--accent);
        }
        .recommendation h4 {
            color: var(--accent);
            margin-bottom: 12px;
            font-size: 1.3rem;
            border-bottom: 2px solid rgba(255,209,102,0.3);
            padding-bottom: 8px;
        }
        .recommendation p {
            font-size: 1.05rem;
            margin-bottom: 0;
            color: #eee;
        }
        .copyright {
            text-align: center;
            padding-top: var(--spacing-md);
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 1rem;
            color: #aaa;
            margin-top: var(--spacing-lg);
        }
        .copyright p {
            margin-bottom: 15px;
            text-align: center;
        }
        .copyright-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        .copyright-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .copyright-links a:hover {
            color: var(--accent);
        }
        @media (max-width: 1200px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
            .hero h1 {
                font-size: 3rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                padding: var(--spacing-md);
                box-shadow: 0 15px 20px rgba(0,0,0,0.2);
                border-radius: 0 0 20px 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 15px 0;
                padding: 8px 0;
                border-bottom: 1px solid rgba(255,255,255,0.15);
                width: 100%;
                text-align: center;
            }
            .nav-links li:last-child {
                border-bottom: none;
            }
            .nav-links a {
                font-size: 1.15rem;
                width: 100%;
            }
            .btn {
                margin: 12px 0;
                width: 100%;
            }
            .hamburger {
                display: block;
            }
            .hero {
                height: 550px;
                justify-content: center;
                text-align: center;
            }
            .hero-content {
                margin-left: 0;
                max-width: 90%;
            }
            .hero p {
                text-align: center;
            }
            .hero-buttons {
                justify-content: center;
            }
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 1.8rem;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .content-section {
                padding: var(--spacing-md);
            }
            .stats-section {
                flex-direction: column;
            }
            .stat-card {
                width: 100%;
                margin-bottom: var(--spacing-sm);
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 576px) {
            .hero {
                height: 480px;
            }
            .hero h1 {
                font-size: 2.1rem;
            }
            .btn {
                padding: 10px 22px;
                font-size: 1rem;
            }
            .content-image:hover {
                transform: none;
            }
            table {
                font-size: 0.95rem;
            }
            th, td {
                padding: 14px;
            }
            blockquote {
                padding: 15px 20px;
                font-size: 1rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .copyright-links {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }
        img {
            loading: lazy;
            transition: opacity 0.4s ease;
            opacity: 0;
            animation: imageFadeIn 0.8s ease forwards;
        }
        @keyframes imageFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        img:hover {
            opacity: 0.97;
        }
        html {
            scroll-behavior: smooth;
        }
        .back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            background-color: var(--primary);
            color: white;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            font-size: 1.5rem;
            border: 2px solid white;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--accent);
            transform: translateY(-5px);
            color: var(--dark);
            box-shadow: 0 8px 15px rgba(255,209,102,0.4);
        }
        .section-divider {
            height: 8px;
            width: 100%;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
            border-radius: 4px;
            margin: var(--spacing-xl) 0;
        }
        .indian-decoration {
            text-align: center;
            margin: var(--spacing-lg) 0;
            color: var(--accent);
            font-size: 2rem;
        }
        .indian-decoration::before, .indian-decoration::after {
            content: '🔹';
            margin: 0 15px;
        }
