* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        body {
            background-color: #f0f7ff;
            color: #1a365d;
            line-height: 1.8;
            padding-bottom: 80px;
            font-size: 16px;
            letter-spacing: 0.4px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a5276, #2980b9);
            color: #ffffff;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.18);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.8rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #f1c40f;
            text-shadow: 3px 3px 5px rgba(0,0,0,0.25);
            white-space: nowrap;
            text-decoration: none;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo span {
            color: #ffffff;
            font-size: 1.9rem;
            font-weight: 700;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            position: relative;
            padding: 6px 0;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #f1c40f;
            transition: width 0.3s ease;
        }
        .nav-links a:hover {
            color: #f1c40f;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 2.4rem;
            cursor: pointer;
            color: #ffffff;
            z-index: 10000;
        }
        .btn {
            display: inline-block;
            padding: 16px 36px;
            border-radius: 10px;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
            font-size: 1.15rem;
            box-shadow: 0 5px 12px rgba(0,0,0,0.2);
            white-space: nowrap;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn-download {
            background-color: #27ae60;
            color: white;
            margin-right: 20px;
        }
        .btn-download:hover {
            background-color: #219653;
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(39, 174, 96, 0.35);
        }
        .btn-login {
            background-color: #f1c40f;
            color: #1a365d;
        }
        .btn-login:hover {
            background-color: #f39c12;
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(243, 156, 18, 0.35);
        }
        .btn-container {
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            align-items: center;
            justify-content: center;
        }
        h1 {
            font-size: 3.2rem;
            color: #1a5276;
            margin: 60px 0 35px;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.12);
            line-height: 1.7;
            font-weight: 900;
            letter-spacing: 0.5px;
        }
        h2 {
            font-size: 2.4rem;
            color: #1a365d;
            margin: 70px 0 30px;
            padding-bottom: 15px;
            border-bottom: 4px solid #2980b9;
            line-height: 1.7;
            font-weight: 800;
        }
        h3 {
            font-size: 1.9rem;
            color: #2980b9;
            margin: 50px 0 22px;
            line-height: 1.7;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h3::before {
            content: '⚓';
            font-size: 2rem;
        }
        h4 {
            font-size: 1.6rem;
            color: #1a365d;
            margin: 40px 0 20px;
            line-height: 1.7;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h4::before {
            content: '🌊';
            font-size: 1.7rem;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 2;
            letter-spacing: 0.3px;
        }
        strong {
            color: #2980b9;
            font-weight: 800;
            font-size: 1.15rem;
        }
        .img-container {
            margin: 50px 0;
            text-align: center;
        }
        .img-responsive {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
            transition: transform 0.4s ease;
            border: 4px solid #f1c40f;
        }
        .img-responsive:hover {
            transform: scale(1.03);
        }
        ul, ol {
            margin: 30px 0 40px 60px;
        }
        li {
            margin-bottom: 22px;
            font-size: 1.1rem;
            line-height: 2;
            position: relative;
        }
        ul li::before {
            content: '✅';
            position: absolute;
            left: -40px;
            top: 5px;
            color: #27ae60;
            font-size: 1.2rem;
        }
        ol li::before {
            content: counter(list-item) '. ';
            position: absolute;
            left: -40px;
            top: 5px;
            font-weight: 800;
            color: #2980b9;
            font-size: 1.2rem;
        }
        .section {
            background-color: white;
            border-radius: 20px;
            padding: 50px;
            margin-bottom: 60px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .desi-highlight {
            background-color: #fff9e6;
            color: #1a365d;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            border-left: 5px solid #2980b9;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        .desi-highlight strong {
            color: #2980b9;
            font-size: 1.2rem;
        }
        .stats-box {
            background-color: #e8f4f8;
            color: #1a365d;
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            align-items: center;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        }
        .stats-item {
            text-align: center;
            flex: 1;
            min-width: 180px;
        }
        .stats-value {
            font-size: 3.2rem;
            font-weight: 900;
            color: #2980b9;
            margin-bottom: 10px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        .stats-label {
            font-size: 1.1rem;
            font-weight: 600;
            line-height: 1.6;
        }
        .guide-card {
            background-color: #f8f9fa;
            border-radius: 15px;
            padding: 35px;
            margin: 40px 0;
            border: 2px solid #e1f0fa;
            box-shadow: 0 6px 15px rgba(0,0,0,0.06);
        }
        .guide-card h4 {
            color: #2980b9;
            margin-bottom: 25px;
        }
        .event-card {
            background-color: #fdf2f8;
            border-radius: 15px;
            padding: 35px;
            margin: 40px 0;
            border: 2px solid #fce4ec;
            box-shadow: 0 6px 15px rgba(0,0,0,0.06);
        }
        .event-card h4 {
            color: #2980b9;
            margin-bottom: 25px;
        }
        .community-post {
            background-color: #f5f5f5;
            border-radius: 15px;
            padding: 30px;
            margin: 35px 0;
            border: 2px solid #e9e9e9;
        }
        .community-post .author {
            font-weight: 800;
            color: #1a365d;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 1.2rem;
        }
        .community-post .author::before {
            content: '👤';
            margin-right: 12px;
            font-size: 1.4rem;
        }
        .community-post .date {
            font-size: 1rem;
            color: #7f8c8d;
            margin-bottom: 20px;
            font-style: italic;
        }
        .game-categories {
            margin: 60px 0 50px;
        }
        .game-categories h3 {
            margin-bottom: 30px;
            text-align: center;
            justify-content: center;
        }
        .categories-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .category-link {
            background-color: #e1f0fa;
            color: #1a365d;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .category-link:hover {
            background-color: #2980b9;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(41, 128, 185, 0.25);
        }
        .tags-section {
            margin: 60px 0 70px;
        }
        .tags-section h3 {
            margin-bottom: 30px;
            text-align: center;
            justify-content: center;
        }
        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        .tag-link {
            background-color: #f0f7ff;
            color: #1a365d;
            padding: 10px 22px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .tag-link:hover {
            background-color: #27ae60;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(39, 174, 96, 0.25);
        }
        footer {
            background-color: #1a365d;
            color: white;
            padding: 60px 0 40px;
            border-radius: 25px 25px 0 0;
            margin-top: 80px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-col h4 {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: #f1c40f;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(255,255,255,0.2);
        }
        .footer-col a {
            color: #ecf0f1;
            text-decoration: none;
            display: block;
            margin-bottom: 18px;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-col a:hover {
            color: #f1c40f;
            padding-left: 10px;
        }
        .recommendation {
            text-align: center;
            margin: 50px 0;
            font-size: 1.2rem;
            color: #ecf0f1;
            line-height: 2;
            padding: 0 20px;
        }
        .recommendation a {
            color: #f1c40f;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.25rem;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 2px solid rgba(255,255,255,0.2);
            font-size: 1.05rem;
            color: #bdc3c7;
            line-height: 1.8;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 30px;
            }
            h1 {
                font-size: 2.9rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            h3 {
                font-size: 1.8rem;
            }
            .section {
                padding: 45px;
            }
            .stats-value {
                font-size: 3rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 25px;
            }
            .logo {
                font-size: 2.5rem;
            }
            .logo span {
                font-size: 1.7rem;
            }
            h1 {
                font-size: 2.7rem;
                margin: 55px 0 30px;
            }
            h2 {
                font-size: 2rem;
                margin: 65px 0 25px;
            }
            h3 {
                font-size: 1.7rem;
                margin: 45px 0 20px;
            }
            .btn {
                padding: 14px 32px;
                font-size: 1.1rem;
            }
            .section {
                padding: 40px;
            }
            ul, ol {
                margin: 25px 0 35px 50px;
            }
            .stats-box {
                gap: 25px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, #1a5276, #2980b9);
                padding: 120px 30px;
                gap: 30px;
                box-shadow: 0 20px 20px rgba(0,0,0,0.25);
                z-index: 9999;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 2.3rem;
            }
            .logo span {
                font-size: 1.6rem;
            }
            h1 {
                font-size: 2.5rem;
                margin: 50px 0 25px;
            }
            h2 {
                font-size: 1.9rem;
                margin: 60px 0 22px;
            }
            h3 {
                font-size: 1.6rem;
                margin: 40px 0 18px;
            }
            .btn-container {
                gap: 20px;
            }
            .section {
                padding: 35px;
            }
            ul, ol {
                margin: 22px 0 30px 45px;
            }
            .stats-box {
                gap: 22px;
            }
            .stats-value {
                font-size: 2.7rem;
            }
            .img-container {
                margin: 45px 0;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2.1rem;
            }
            .logo span {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 2.3rem;
                margin: 45px 0 22px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 55px 0 20px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 35px 0 16px;
            }
            h4 {
                font-size: 1.4rem;
            }
            .btn-container {
                flex-direction: column;
                gap: 18px;
            }
            .btn-download {
                margin-right: 0;
                width: 100%;
            }
            .btn-login {
                width: 100%;
            }
            .section {
                padding: 30px;
            }
            p {
                font-size: 1.05rem;
                margin-bottom: 22px;
                line-height: 1.9;
            }
            li {
                font-size: 1.05rem;
                margin-bottom: 18px;
                line-height: 1.9;
            }
            .img-container {
                margin: 40px 0;
            }
            .desi-highlight {
                padding: 25px;
            }
            .stats-item {
                min-width: 150px;
            }
            .stats-value {
                font-size: 2.4rem;
            }
            .footer-container {
                gap: 40px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.9rem;
            }
            .logo span {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .section {
                padding: 25px;
            }
            .stats-box {
                gap: 18px;
            }
            .stats-item {
                min-width: 130px;
            }
            .stats-value {
                font-size: 2.2rem;
            }
            .stats-label {
                font-size: 1rem;
            }
        }
