* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }
        body {
            line-height: 1.8;
            color: #2c3e50;
            background-color: #f5f2ed;
            padding-bottom: 80px;
            font-size: 16px;
            word-spacing: 1.2px;
            letter-spacing: 0.3px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #ff7e5f, #feb47b);
            color: white;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.6rem;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: 1.8px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
        }
        .logo span {
            color: #ffd700;
            font-style: italic;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .nav-links a {
            color: #f8f9fa;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            text-transform: capitalize;
            position: relative;
        }
        .nav-links a:hover {
            color: #ffd700;
            transform: translateY(-2px);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2.5px;
            background-color: #ffd700;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: #ffd700;
            background: transparent;
            border: none;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s ease;
            text-align: center;
            margin: 12px 8px;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.7px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.15);
        }
        .btn-download {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
        }
        .btn-download:hover {
            background: linear-gradient(135deg, #20c997, #28a745);
            transform: translateY(-4px);
            box-shadow: 0 8px 22px rgba(40, 167, 69, 0.4);
            color: white;
        }
        .btn-login {
            background: linear-gradient(135deg, #17a2b8, #0d6efd);
            color: white;
        }
        .btn-login:hover {
            background: linear-gradient(135deg, #0d6efd, #17a2b8);
            transform: translateY(-4px);
            box-shadow: 0 8px 22px rgba(23, 162, 184, 0.4);
            color: white;
        }
        h1 {
            font-size: 3.2rem;
            color: #ff7e5f;
            margin: 60px 0 35px;
            text-align: center;
            border-bottom: 5px solid #ffd700;
            padding-bottom: 25px;
            font-weight: 900;
            text-shadow: 0 2px 3px rgba(0,0,0,0.15);
            text-transform: capitalize;
        }
        h2 {
            font-size: 2.3rem;
            color: #0d6efd;
            margin: 70px 0 35px;
            padding-left: 25px;
            border-left: 6px solid #ff7e5f;
            font-weight: 800;
            text-transform: capitalize;
            position: relative;
        }
        h2::before {
            content: "🏆";
            position: absolute;
            left: -22px;
            top: 3px;
            font-size: 1.6rem;
        }
        h3 {
            font-size: 1.9rem;
            color: #28a745;
            margin: 50px 0 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            text-transform: capitalize;
            gap: 18px;
        }
        h3::before {
            content: "🌟";
            font-size: 2rem;
        }
        h4 {
            font-size: 1.6rem;
            color: #ff7e5f;
            margin: 40px 0 25px;
            font-weight: 600;
            text-transform: capitalize;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h4::before {
            content: "✅";
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.2rem;
            color: #34495e;
            line-height: 1.9;
            text-align: justify;
        }
        .highlight {
            font-weight: 800;
            color: #ff7e5f;
            font-size: 1.3rem;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }
        .desi-note {
            background-color: #fff9e6;
            padding: 28px;
            border-radius: 12px;
            border-left: 7px solid #ffd700;
            margin: 45px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .desi-note p {
            margin-bottom: 0;
            font-size: 1.25rem;
            color: #2c3e50;
            font-weight: 500;
            text-align: left;
            line-height: 2.1;
        }
        .desi-note strong {
            color: #28a745;
            font-size: 1.35rem;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 45px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.18);
            display: block;
            border: 3px solid #ffd700;
        }
        .img-left {
            float: left;
            width: 47%;
            margin-right: 35px;
            margin-bottom: 25px;
        }
        .img-right {
            float: right;
            width: 47%;
            margin-left: 35px;
            margin-bottom: 25px;
        }
        .img-full {
            width: 100%;
            margin: 50px auto;
        }
        ul {
            margin: 30px 0 50px 60px;
            font-size: 1.2rem;
            color: #34495e;
        }
        ul li {
            margin-bottom: 25px;
            line-height: 1.9;
            position: relative;
            padding-left: 25px;
        }
        ul li::before {
            content: "⭐";
            position: absolute;
            left: -30px;
            top: 6px;
            font-size: 1.4rem;
        }
        ol {
            margin: 30px 0 50px 60px;
            font-size: 1.2rem;
            color: #34495e;
        }
        ol li {
            margin-bottom: 25px;
            line-height: 1.9;
            position: relative;
            padding-left: 25px;
        }
        ol li::before {
            content: counter(list-item) ".";
            position: absolute;
            left: -30px;
            top: 0;
            font-weight: 700;
            color: #0d6efd;
            font-size: 1.3rem;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 50px 0;
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 7px 22px rgba(0,0,0,0.12);
        }
        .stats-table th {
            background-color: #ff7e5f;
            color: white;
            padding: 22px;
            text-align: left;
            font-size: 1.15rem;
            font-weight: 700;
            text-transform: capitalize;
        }
        .stats-table td {
            padding: 22px;
            border-bottom: 1px solid #f1f2f6;
            font-size: 1.1rem;
            color: #34495e;
            line-height: 1.9;
        }
        .stats-table tr:nth-child(even) {
            background-color: #fafafa;
        }
        .stats-table tr:hover {
            background-color: #fff3e0;
            transform: scale(1.003);
            transition: transform 0.3s ease;
        }
        .community-thread {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            margin: 45px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            border-top: 6px solid #0d6efd;
        }
        .thread-author {
            display: flex;
            align-items: center;
            margin-bottom: 22px;
        }
        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: #28a745;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.7rem;
            margin-right: 22px;
            border: 3px solid #ffd700;
        }
        .author-info {
            flex: 1;
        }
        .author-name {
            font-weight: 700;
            color: #ff7e5f;
            font-size: 1.3rem;
            text-transform: capitalize;
        }
        .thread-date {
            color: #7f8c8d;
            font-size: 1.05rem;
            font-style: italic;
        }
        .thread-content {
            font-size: 1.15rem;
            color: #34495e;
            line-height: 2;
            text-align: justify;
        }
        .thread-replies {
            margin-top: 28px;
            padding-top: 28px;
            border-top: 1px solid #f1f2f6;
        }
        .reply {
            margin-bottom: 22px;
            padding-left: 25px;
            border-left: 4px solid #ffd700;
        }
        .reply-author {
            font-weight: 600;
            color: #0d6efd;
            margin-bottom: 8px;
            text-transform: capitalize;
            font-size: 1.15rem;
        }
        .guide-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            margin: 45px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            border-bottom: 6px solid #28a745;
        }
        .guide-steps {
            margin: 30px 0;
        }
        .guide-tip {
            background-color: #e8f4fd;
            padding: 22px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 4px solid #0d6efd;
        }
        .guide-tip p {
            margin-bottom: 0;
            font-weight: 500;
            color: #0d6efd;
            font-size: 1.15rem;
        }
        .event-card {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 45px 0;
        }
        .event-item {
            flex: 1 1 300px;
            background-color: white;
            border-radius: 15px;
            padding: 28px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.1);
            border-top: 6px solid #28a745;
            transition: transform 0.3s ease;
        }
        .event-item:hover {
            transform: translateY(-6px);
        }
        .event-title {
            font-size: 1.5rem;
            color: #ff7e5f;
            margin-bottom: 18px;
            font-weight: 700;
            text-transform: capitalize;
        }
        .event-date {
            color: #7f8c8d;
            margin-bottom: 22px;
            font-style: italic;
            font-size: 1.05rem;
        }
        .event-desc {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #34495e;
        }
        .game-types {
            margin: 60px 0 40px;
        }
        .type-list {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin: 25px 0;
        }
        .type-item {
            background-color: #ffe0b2;
            padding: 10px 25px;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .type-item a {
            color: #ff7e5f;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 600;
            text-transform: capitalize;
        }
        .type-item:hover {
            background-color: #ff7e5f;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.12);
        }
        .type-item:hover a {
            color: white;
        }
        .game-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 45px 0 60px;
        }
        .tag {
            background-color: #e3f2fd;
            padding: 10px 22px;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .tag a {
            color: #0d6efd;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            text-transform: lowercase;
        }
        .tag:hover {
            background-color: #0d6efd;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.12);
        }
        .tag:hover a {
            color: white;
            font-weight: 600;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 70px 0 40px;
            margin-top: 120px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }
        .footer-section h4 {
            font-size: 1.7rem;
            margin-bottom: 30px;
            color: #ffd700;
            border-bottom: 3px solid #0d6efd;
            padding-bottom: 18px;
            font-weight: 700;
            text-transform: capitalize;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 22px;
            position: relative;
            padding-left: 25px;
        }
        .footer-links li::before {
            content: "👉";
            position: absolute;
            left: 0;
            top: 6px;
            font-size: 1.3rem;
        }
        .footer-links a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.1rem;
            text-transform: capitalize;
        }
        .footer-links a:hover {
            color: #ffd700;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .recommendation {
            text-align: center;
            margin: 50px 0;
            font-size: 1.25rem;
            color: #ecf0f1;
            line-height: 2;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 25px;
            }
            .logo {
                font-size: 2.3rem;
            }
            h1 {
                font-size: 2.9rem;
            }
            h2 {
                font-size: 2.1rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            .img-left, .img-right {
                width: 100%;
                float: none;
                margin-left: 0;
                margin-right: 0;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 20px;
            }
            .btn {
                padding: 12px 28px;
                font-size: 1.05rem;
            }
            p {
                font-size: 1.15rem;
            }
            ul, ol {
                margin-left: 50px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #ff7e5f, #feb47b);
                padding: 40px 25px;
                gap: 30px;
                box-shadow: 0 15px 20px rgba(0,0,0,0.25);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .btn {
                width: 100%;
                margin: 12px 0;
                padding: 16px;
            }
            h1 {
                font-size: 2.5rem;
                margin: 50px 0 30px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 1.9rem;
                margin: 60px 0 30px;
                padding-left: 20px;
            }
            h3 {
                font-size: 1.6rem;
                margin: 45px 0 25px;
            }
            h4 {
                font-size: 1.4rem;
                margin: 35px 0 20px;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 20px;
                text-align: left;
            }
            ul, ol {
                margin-left: 40px;
                font-size: 1.1rem;
            }
            .desi-note {
                padding: 22px;
                margin: 40px 0;
            }
            .game-img {
                margin: 40px 0;
            }
            .footer-container {
                gap: 40px;
            }
            .community-thread {
                padding: 25px;
            }
            .guide-card {
                padding: 25px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .footer-section h4 {
                font-size: 1.5rem;
            }
            .recommendation {
                font-size: 1.15rem;
            }
            .stats-table th, .stats-table td {
                padding: 18px;
                font-size: 1rem;
            }
            .event-item {
                padding: 22px;
            }
            .type-list, .game-tags {
                gap: 12px;
            }
            .type-item, .tag {
                padding: 8px 18px;
            }
        }
