* {
            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: #f9f5f0;
            padding-bottom: 80px;
            font-size: 16px;
            word-spacing: 1px;
            letter-spacing: 0.2px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background: linear-gradient(135deg, #ff6b35, #e056fd);
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.8rem;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: 1.5px;
            text-shadow: 0 3px 5px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 15px;
            text-transform: uppercase;
        }
        .logo span {
            color: #ffd166;
            font-style: italic;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            color: #f8f9fa;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            text-transform: capitalize;
            position: relative;
        }
        .nav-links a:hover {
            color: #ffd166;
            transform: translateY(-2px);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffd166;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 2.5rem;
            cursor: pointer;
            color: #ffd166;
            background: transparent;
            border: none;
        }
        .btn {
            display: inline-block;
            padding: 16px 35px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s ease;
            text-align: center;
            margin: 15px 10px;
            font-size: 1.2rem;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.18);
        }
        .btn-download {
            background: linear-gradient(135deg, #06d6a0, #118ab2);
            color: white;
        }
        .btn-download:hover {
            background: linear-gradient(135deg, #118ab2, #06d6a0);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(6, 214, 160, 0.45);
            color: white;
        }
        .btn-login {
            background: linear-gradient(135deg, #7209b7, #f72585);
            color: white;
        }
        .btn-login:hover {
            background: linear-gradient(135deg, #f72585, #7209b7);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(114, 9, 183, 0.45);
            color: white;
        }
        h1 {
            font-size: 3.5rem;
            color: #ff6b35;
            margin: 70px 0 45px;
            text-align: center;
            border-bottom: 6px solid #ffd166;
            padding-bottom: 30px;
            font-weight: 900;
            text-shadow: 0 2px 4px rgba(0,0,0,0.18);
            text-transform: capitalize;
        }
        h2 {
            font-size: 2.5rem;
            color: #118ab2;
            margin: 80px 0 40px;
            padding-left: 30px;
            border-left: 7px solid #ff6b35;
            font-weight: 800;
            text-transform: capitalize;
            position: relative;
        }
        h2::before {
            content: "🏆";
            position: absolute;
            left: -25px;
            top: 5px;
            font-size: 1.8rem;
        }
        h3 {
            font-size: 2rem;
            color: #06d6a0;
            margin: 60px 0 35px;
            font-weight: 700;
            display: flex;
            align-items: center;
            text-transform: capitalize;
            gap: 20px;
        }
        h3::before {
            content: "🌟";
            font-size: 2.2rem;
        }
        h4 {
            font-size: 1.7rem;
            color: #ff6b35;
            margin: 50px 0 30px;
            font-weight: 600;
            text-transform: capitalize;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h4::before {
            content: "✅";
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.25rem;
            color: #34495e;
            line-height: 2;
            text-align: justify;
        }
        .highlight {
            font-weight: 900;
            color: #ff6b35;
            font-size: 1.35rem;
            text-shadow: 0 1px 2px rgba(0,0,0,0.12);
        }
        .desi-note {
            background-color: #fff8e6;
            padding: 30px;
            border-radius: 15px;
            border-left: 8px solid #ffd166;
            margin: 50px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        .desi-note p {
            margin-bottom: 0;
            font-size: 1.3rem;
            color: #2c3e50;
            font-weight: 500;
            text-align: left;
            line-height: 2.2;
        }
        .desi-note strong {
            color: #06d6a0;
            font-size: 1.4rem;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 18px;
            margin: 50px 0;
            box-shadow: 0 12px 35px rgba(0,0,0,0.2);
            display: block;
            border: 4px solid #ffd166;
        }
        .img-left {
            float: left;
            width: 48%;
            margin-right: 40px;
            margin-bottom: 30px;
        }
        .img-right {
            float: right;
            width: 48%;
            margin-left: 40px;
            margin-bottom: 30px;
        }
        .img-full {
            width: 100%;
            margin: 60px auto;
        }
        ul {
            margin: 35px 0 60px 70px;
            font-size: 1.25rem;
            color: #34495e;
        }
        ul li {
            margin-bottom: 30px;
            line-height: 2;
            position: relative;
            padding-left: 30px;
        }
        ul li::before {
            content: "⭐";
            position: absolute;
            left: -35px;
            top: 8px;
            font-size: 1.5rem;
        }
        ol {
            margin: 35px 0 60px 70px;
            font-size: 1.25rem;
            color: #34495e;
        }
        ol li {
            margin-bottom: 30px;
            line-height: 2;
            position: relative;
            padding-left: 30px;
        }
        ol li::before {
            content: counter(list-item) ".";
            position: absolute;
            left: -35px;
            top: 0;
            font-weight: 700;
            color: #118ab2;
            font-size: 1.4rem;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 60px 0;
            background-color: white;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        .stats-table th {
            background-color: #ff6b35;
            color: white;
            padding: 25px;
            text-align: left;
            font-size: 1.25rem;
            font-weight: 700;
            text-transform: capitalize;
        }
        .stats-table td {
            padding: 25px;
            border-bottom: 1px solid #f1f2f6;
            font-size: 1.2rem;
            color: #34495e;
            line-height: 2;
        }
        .stats-table tr:nth-child(even) {
            background-color: #fafafa;
        }
        .stats-table tr:hover {
            background-color: #fff3e0;
            transform: scale(1.005);
            transition: transform 0.3s ease;
        }
        .community-thread {
            background-color: white;
            border-radius: 18px;
            padding: 35px;
            margin: 50px 0;
            box-shadow: 0 7px 22px rgba(0,0,0,0.12);
            border-top: 7px solid #118ab2;
        }
        .thread-author {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        .author-avatar {
            width: 75px;
            height: 75px;
            border-radius: 50%;
            background-color: #06d6a0;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.8rem;
            margin-right: 25px;
            border: 4px solid #ffd166;
        }
        .author-info {
            flex: 1;
        }
        .author-name {
            font-weight: 700;
            color: #ff6b35;
            font-size: 1.4rem;
            text-transform: capitalize;
        }
        .thread-date {
            color: #7f8c8d;
            font-size: 1.1rem;
            font-style: italic;
        }
        .thread-content {
            font-size: 1.25rem;
            color: #34495e;
            line-height: 2.1;
            text-align: justify;
        }
        .thread-replies {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #f1f2f6;
        }
        .reply {
            margin-bottom: 25px;
            padding-left: 30px;
            border-left: 5px solid #ffd166;
        }
        .reply-author {
            font-weight: 600;
            color: #118ab2;
            margin-bottom: 10px;
            text-transform: capitalize;
            font-size: 1.2rem;
        }
        .guide-card {
            background-color: white;
            border-radius: 18px;
            padding: 35px;
            margin: 50px 0;
            box-shadow: 0 7px 22px rgba(0,0,0,0.12);
            border-bottom: 7px solid #06d6a0;
        }
        .guide-steps {
            margin: 35px 0;
        }
        .guide-tip {
            background-color: #e8f4fd;
            padding: 25px;
            border-radius: 12px;
            margin: 35px 0;
            border-left: 5px solid #118ab2;
        }
        .guide-tip p {
            margin-bottom: 0;
            font-weight: 500;
            color: #118ab2;
            font-size: 1.25rem;
        }
        .event-card {
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
            margin: 50px 0;
        }
        .event-item {
            flex: 1 1 320px;
            background-color: white;
            border-radius: 18px;
            padding: 30px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
            border-top: 7px solid #06d6a0;
            transition: transform 0.3s ease;
        }
        .event-item:hover {
            transform: translateY(-8px);
        }
        .event-title {
            font-size: 1.6rem;
            color: #ff6b35;
            margin-bottom: 20px;
            font-weight: 700;
            text-transform: capitalize;
        }
        .event-date {
            color: #7f8c8d;
            margin-bottom: 25px;
            font-style: italic;
            font-size: 1.15rem;
        }
        .event-desc {
            font-size: 1.2rem;
            line-height: 2;
            color: #34495e;
        }
        .game-types {
            margin: 70px 0 50px;
        }
        .type-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        .type-item {
            background-color: #ffe0b2;
            padding: 12px 28px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .type-item a {
            color: #ff6b35;
            text-decoration: none;
            font-size: 1.15rem;
            font-weight: 600;
            text-transform: capitalize;
        }
        .type-item:hover {
            background-color: #ff6b35;
            transform: translateY(-4px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.15);
        }
        .type-item:hover a {
            color: white;
        }
        .game-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin: 50px 0 70px;
        }
        .tag {
            background-color: #e3f2fd;
            padding: 12px 25px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .tag a {
            color: #118ab2;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            text-transform: lowercase;
        }
        .tag:hover {
            background-color: #118ab2;
            transform: translateY(-4px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.15);
        }
        .tag:hover a {
            color: white;
            font-weight: 600;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 80px 0 50px;
            margin-top: 150px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 60px;
            margin-bottom: 70px;
        }
        .footer-section h4 {
            font-size: 1.8rem;
            margin-bottom: 35px;
            color: #ffd166;
            border-bottom: 4px solid #118ab2;
            padding-bottom: 20px;
            font-weight: 700;
            text-transform: capitalize;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 25px;
            position: relative;
            padding-left: 30px;
        }
        .footer-links li::before {
            content: "👉";
            position: absolute;
            left: 0;
            top: 8px;
            font-size: 1.4rem;
        }
        .footer-links a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.2rem;
            text-transform: capitalize;
        }
        .footer-links a:hover {
            color: #ffd166;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .recommendation {
            text-align: center;
            margin: 60px 0;
            font-size: 1.35rem;
            color: #ecf0f1;
            line-height: 2.2;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
            font-size: 1.15rem;
            line-height: 2;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 30px;
            }
            .logo {
                font-size: 2.5rem;
            }
            h1 {
                font-size: 3.2rem;
            }
            h2 {
                font-size: 2.3rem;
            }
            h3 {
                font-size: 1.8rem;
            }
            .img-left, .img-right {
                width: 100%;
                float: none;
                margin-left: 0;
                margin-right: 0;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 25px;
            }
            .btn {
                padding: 14px 30px;
                font-size: 1.15rem;
            }
            p {
                font-size: 1.2rem;
            }
            ul, ol {
                margin-left: 55px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #ff6b35, #e056fd);
                padding: 45px 30px;
                gap: 35px;
                box-shadow: 0 18px 25px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .btn {
                width: 100%;
                margin: 15px 0;
                padding: 18px;
            }
            h1 {
                font-size: 2.8rem;
                margin: 55px 0 40px;
                padding-bottom: 25px;
            }
            h2 {
                font-size: 2.1rem;
                margin: 65px 0 35px;
                padding-left: 25px;
            }
            h3 {
                font-size: 1.7rem;
                margin: 55px 0 30px;
            }
            h4 {
                font-size: 1.5rem;
                margin: 45px 0 25px;
            }
            p {
                font-size: 1.15rem;
                margin-bottom: 28px;
                text-align: left;
            }
            ul, ol {
                margin-left: 45px;
                font-size: 1.15rem;
            }
            .desi-note {
                padding: 25px;
                margin: 45px 0;
            }
            .game-img {
                margin: 50px 0;
            }
            .footer-container {
                gap: 50px;
            }
            .community-thread {
                padding: 30px;
            }
            .guide-card {
                padding: 30px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2.3rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .footer-section h4 {
                font-size: 1.6rem;
            }
            .recommendation {
                font-size: 1.25rem;
            }
            .stats-table th, .stats-table td {
                padding: 20px;
                font-size: 1.1rem;
            }
            .event-item {
                padding: 25px;
            }
            .type-list, .game-tags {
                gap: 15px;
            }
            .type-item, .tag {
                padding: 10px 20px;
            }
        }
