* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', 'Segoe UI', Roboto, sans-serif;
        }
        body {
            background-color: #faf6ed;
            color: #2d2d2d;
            line-height: 1.9;
            padding-bottom: 500px;
            font-size: 16px;
            letter-spacing: 0.3px;
        }
        .header {
            background: linear-gradient(135deg, #ff6b35 0%, #ee4b2b 100%);
            padding: 20px 22px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 32px;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 0 3px 10px rgba(0,0,0,0.2);
            letter-spacing: 1px;
            white-space: nowrap;
            background: #c13515;
            padding: 12px 28px;
            border-radius: 50px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.25);
            border: 3px solid #ffd166;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: #ffd166;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            font-size: 17px;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            color: #fff3cd;
            border-bottom: 2px solid #ffd166;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 32px;
            color: white;
            cursor: pointer;
            z-index: 10000;
            background: rgba(255,255,255,0.2);
            border-radius: 10px;
            padding: 5px 12px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #ff6b35 0%, #ee4b2b 100%);
                padding: 120px 22px 50px;
                gap: 28px;
                box-shadow: 0 15px 30px rgba(0,0,0,0.2);
                border-bottom: 4px solid #ffd166;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 26px;
                padding: 10px 22px;
            }
        }
        .container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 22px;
        }
        h1 {
            font-size: 42px;
            color: #c13515;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 900;
            line-height: 1.8;
            text-shadow: 0 2px 8px rgba(0,0,0,0.1);
            padding: 0 15px;
            border-bottom: 3px solid #06d6a0;
            padding-bottom: 20px;
            display: inline-block;
            width: 100%;
            text-transform: Uppercase;
            letter-spacing: 1.2px;
        }
        h2 {
            font-size: 32px;
            color: #06d6a0;
            margin: 80px 0 35px;
            padding-bottom: 18px;
            border-bottom: 2px solid #ff6b35;
            font-weight: 800;
            line-height: 1.7;
            text-transform: Capitalize;
            position: relative;
        }
        h2::after {
            content: "🦏";
            position: absolute;
            right: 0;
            bottom: -10px;
            font-size: 30px;
        }
        h3 {
            font-size: 26px;
            color: #118ab2;
            margin: 60px 0 30px;
            font-weight: 700;
            line-height: 1.7;
            position: relative;
            padding-left: 35px;
            text-transform: Capitalize;
        }
        h3::before {
            content: "🚀";
            color: #ff6b35;
            position: absolute;
            left: 0;
            font-size: 32px;
        }
        h4 {
            font-size: 23px;
            color: #073b4c;
            margin: 45px 0 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 15px;
            text-transform: Capitalize;
        }
        h4::before {
            content: "🌟";
            font-size: 30px;
        }
        p {
            margin-bottom: 28px;
            text-align: justify;
            font-size: 18px;
            color: #333333;
            line-height: 2.2;
            padding: 0 8px;
        }
        .highlight {
            font-weight: 900;
            color: #ff6b35;
            font-size: 20px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.08);
        }
        .game-img {
            width: 100%;
            height: auto;
            border-radius: 22px;
            margin: 40px 0;
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
            transition: transform 0.4s ease;
            border: 3px solid #06d6a0;
        }
        .game-img:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }
        .btn-container {
            display: flex;
            gap: 30px;
            justify-content: center;
            margin: 70px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 20px 40px;
            font-size: 24px;
            font-weight: 800;
            border: none;
            border-radius: 60px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 8px 22px rgba(0,0,0,0.2);
            min-width: 240px;
            text-transform: Uppercase;
            letter-spacing: 1px;
        }
        .download-btn {
            background: linear-gradient(135deg, #06d6a0 0%, #059669 100%);
            color: white;
            border: 3px solid #ffffff;
        }
        .login-btn {
            background: linear-gradient(135deg, #118ab2 0%, #073b4c 100%);
            color: white;
            border: 3px solid #ffffff;
        }
        .btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.25);
            border-color: #ffd166;
        }
        @media (max-width: 768px) {
            .btn {
                width: 100%;
                padding: 18px 25px;
                font-size: 22px;
            }
            .btn-container {
                gap: 22px;
                margin: 60px 0;
            }
        }
        ul, ol {
            margin: 30px 0 40px 50px;
            font-size: 18px;
            color: #333333;
            line-height: 2.4;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 18px;
            padding-left: 15px;
        }
        li strong {
            color: #118ab2;
            font-size: 20px;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 50px 0;
            overflow: hidden;
            border-radius: 18px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }
        .stats-table th, .stats-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #e8e8e8;
            font-size: 17px;
        }
        .stats-table th {
            background: linear-gradient(135deg, #ff6b35 0%, #ee4b2b 100%);
            color: white;
            font-weight: 700;
            text-transform: Uppercase;
            letter-spacing: 1px;
        }
        .stats-table tr:hover {
            background-color: #fff8e6;
            transform: scale(1.005);
            transition: all 0.2s ease;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        @media (max-width: 768px) {
            .stats-table th, .stats-table td {
                padding: 16px;
                font-size: 16px;
            }
            ul, ol {
                margin-left: 35px;
            }
        }
        .event-card {
            background-color: #ffffff;
            border-radius: 22px;
            padding: 35px;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            border-left: 5px solid #06d6a0;
            border-top: 3px solid #ff6b35;
            transition: transform 0.3s ease;
        }
        .event-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }
        .event-card h4 {
            margin-top: 0;
            color: #ff6b35;
            font-size: 26px;
        }
        .event-date {
            display: inline-block;
            background-color: #ffd166;
            color: #c13515;
            padding: 10px 20px;
            border-radius: 35px;
            font-weight: 700;
            margin-bottom: 22px;
            font-size: 18px;
            border: 2px solid #06d6a0;
        }
        .categories {
            margin: 70px 0 50px;
        }
        .categories h3 {
            margin-bottom: 30px;
        }
        .category-links {
            display: flex;
            flex-wrap: wrap;
            gap: 22px;
        }
        .category-links a {
            background: linear-gradient(135deg, #ffd166 0%, #fca311 100%);
            color: #c13515;
            padding: 12px 25px;
            border-radius: 35px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 18px;
            text-transform: Capitalize;
        }
        .category-links a:hover {
            background: linear-gradient(135deg, #fca311 0%, #ffd166 100%);
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }
        .tags {
            margin: 50px 0 70px;
        }
        .tags h3 {
            margin-bottom: 28px;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .tag-links a {
            background: linear-gradient(135deg, #118ab2 0%, #073b4c 100%);
            color: white;
            padding: 10px 22px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 17px;
            text-transform: Lowercase;
        }
        .tag-links a:hover {
            background: linear-gradient(135deg, #073b4c 0%, #118ab2 100%);
            transform: translateY(-4px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.12);
        }
        .footer {
            background-color: #c13515;
            color: white;
            padding: 60px 22px;
            margin-top: 100px;
            border-top: 4px solid #ffd166;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 50px;
        }
        .game-types h3 {
            color: #ffd166;
            border-bottom: 2px solid #ffd166;
            padding-bottom: 12px;
            margin-bottom: 35px;
            padding-left: 0;
        }
        .game-types h3::before {
            display: none;
        }
        .tag-section {
            margin-bottom: 60px;
        }
        .tag-section h3 {
            color: #ffd166;
            border-bottom: 2px solid #ffd166;
            padding-bottom: 12px;
            margin-bottom: 35px;
            padding-left: 0;
        }
        .tag-section h3::before {
            display: none;
        }
        .recommendation {
            font-size: 20px;
            margin-bottom: 50px;
            text-align: center;
            line-height: 2.2;
            padding: 0 15px;
            background: rgba(255,255,255,0.07);
            padding: 25px;
            border-radius: 18px;
            border: 1px solid rgba(255,255,255,0.12);
        }
        .recommendation a {
            color: #ffd166;
            font-weight: 800;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .recommendation a:hover {
            color: #fff3cd;
            border-bottom: 2px solid #fff3cd;
        }
        .copyright {
            text-align: center;
            font-size: 18px;
            opacity: 0.8;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.12);
        }
        .desi-note {
            background-color: #fff3cd;
            border-left: 5px solid #fca311;
            padding: 28px 32px;
            margin: 40px 0;
            border-radius: 0 22px 22px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.07);
        }
        .desi-note p {
            margin-bottom: 0;
            font-size: 20px;
            color: #2d2d2d;
            font-weight: 600;
            line-height: 2.3;
        }
        .desi-note strong {
            color: #c13515;
            font-size: 22px;
        }
        .pro-tip-card {
            background-color: #e0f7fa;
            border-radius: 22px;
            padding: 32px;
            margin: 55px 0;
            border-top: 5px solid #118ab2;
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
        }
        .pro-tip-card h4 {
            color: #073b4c;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .pro-tip-card h4::before {
            content: "💡";
            font-size: 34px;
        }
        .community-thread {
            background-color: #fdf2f8;
            border-radius: 22px;
            padding: 32px;
            margin: 55px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
            border-bottom: 4px solid #d946ef;
        }
        .community-thread .thread-author {
            display: flex;
            align-items: center;
            gap: 22px;
            margin-bottom: 22px;
        }
        .author-avatar {
            font-size: 42px;
            background-color: #ff6b35;
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border: 2px solid #ffd166;
        }
        .thread-author .author-name {
            font-weight: 800;
            color: #ff6b35;
            font-size: 22px;
        }
        .thread-author .author-location {
            color: #6c757d;
            font-size: 17px;
            margin-top: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .thread-author .author-location::before {
            content: "📍";
            font-size: 19px;
        }
        .thread-content {
            font-size: 19px;
            color: #333333;
            line-height: 2.3;
        }
        .thread-reply {
            margin-top: 28px;
            padding-top: 28px;
            border-top: 1px solid #fcc367;
        }
        .reply-author {
            font-weight: 700;
            color: #d946ef;
            margin-bottom: 8px;
            font-size: 20px;
        }
        .reply-content {
            font-size: 18px;
            color: #333333;
            line-height: 2.2;
        }
        .faq-item {
            margin: 32px 0;
            background-color: #ffffff;
            border-radius: 18px;
            padding: 28px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.07);
        }
        .faq-question {
            font-size: 21px;
            font-weight: 700;
            color: #c13515;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .faq-question::before {
            content: "❓";
            font-size: 26px;
        }
        .faq-answer {
            font-size: 18px;
            color: #333333;
            line-height: 2.2;
        }
        .tournament-banner {
            background: linear-gradient(135deg, #d946ef 0%, #9333ea 100%);
            color: white;
            border-radius: 22px;
            padding: 35px;
            margin: 60px 0;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.18);
            border: 3px solid #ffd166;
        }
        .tournament-banner h3 {
            color: white;
            margin: 0 0 22px;
            padding-left: 0;
            text-shadow: 0 2px 6px rgba(0,0,0,0.15);
        }
        .tournament-banner h3::before {
            display: none;
        }
        .tournament-banner p {
            color: white;
            font-size: 20px;
            margin-bottom: 28px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 36px;
                margin-bottom: 35px;
                padding-bottom: 18px;
            }
            h2 {
                font-size: 28px;
                margin: 65px 0 30px;
                padding-bottom: 16px;
            }
            h3 {
                font-size: 24px;
                margin: 50px 0 25px;
                padding-left: 30px;
            }
            h4 {
                font-size: 21px;
            }
            p {
                font-size: 17px;
                margin-bottom: 24px;
                line-height: 2.1;
            }
            .container {
                padding: 0 18px;
                margin: 50px auto;
            }
            .event-card, .pro-tip-card, .community-thread {
                padding: 28px;
            }
            .desi-note {
                padding: 24px 28px;
            }
            .footer {
                padding: 50px 18px;
            }
            .recommendation {
                font-size: 19px;
            }
            .author-avatar {
                width: 65px;
                height: 65px;
                font-size: 38px;
            }
            .thread-author {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 24px;
            }
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 26px;
            }
            .btn-container {
                gap: 18px;
            }
            ul, ol {
                margin-left: 25px;
            }
        }
