* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        body {
            background-color: #f5fafe;
            color: #162e4d;
            line-height: 1.8;
            padding-bottom: 90px;
            font-size: 16px;
            letter-spacing: 0.3px;
        }
        .container {
            max-width: 1450px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background: linear-gradient(135deg, #0f4c81, #1e88e5);
            color: #ffffff;
            padding: 22px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 5px 18px rgba(0,0,0,0.2);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 3rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #ffd600;
            text-shadow: 4px 4px 6px rgba(0,0,0,0.3);
            white-space: nowrap;
            text-decoration: none;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .logo span {
            color: #ffffff;
            font-size: 2rem;
            font-weight: 700;
        }
        .nav-links {
            display: flex;
            gap: 40px;
            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.15rem;
            position: relative;
            padding: 8px 0;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffd600;
            transition: width 0.3s ease;
        }
        .nav-links a:hover {
            color: #ffd600;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 2.6rem;
            cursor: pointer;
            color: #ffffff;
            z-index: 10000;
        }
        .btn {
            display: inline-block;
            padding: 18px 40px;
            border-radius: 12px;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
            font-size: 1.2rem;
            box-shadow: 0 6px 15px rgba(0,0,0,0.25);
            white-space: nowrap;
            text-transform: uppercase;
            letter-spacing: 0.6px;
        }
        .btn-download {
            background-color: #2e7d32;
            color: white;
            margin-right: 25px;
        }
        .btn-download:hover {
            background-color: #1b5e20;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(46, 125, 50, 0.4);
        }
        .btn-login {
            background-color: #ffd600;
            color: #162e4d;
        }
        .btn-login:hover {
            background-color: #ffb300;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 179, 0, 0.4);
        }
        .btn-container {
            margin: 60px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
            justify-content: center;
        }
        h1 {
            font-size: 3.5rem;
            color: #0f4c81;
            margin: 70px 0 40px;
            text-align: center;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.15);
            line-height: 1.8;
            font-weight: 900;
            letter-spacing: 0.6px;
        }
        h2 {
            font-size: 2.6rem;
            color: #162e4d;
            margin: 80px 0 35px;
            padding-bottom: 18px;
            border-bottom: 5px solid #1e88e5;
            line-height: 1.8;
            font-weight: 800;
        }
        h3 {
            font-size: 2.1rem;
            color: #1e88e5;
            margin: 60px 0 25px;
            line-height: 1.8;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 18px;
        }
        h3::before {
            content: '🚢';
            font-size: 2.2rem;
        }
        h4 {
            font-size: 1.8rem;
            color: #162e4d;
            margin: 45px 0 22px;
            line-height: 1.8;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h4::before {
            content: '🌊';
            font-size: 1.9rem;
        }
        p {
            margin-bottom: 30px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 2.1;
            letter-spacing: 0.4px;
        }
        strong {
            color: #1e88e5;
            font-weight: 800;
            font-size: 1.2rem;
        }
        .img-container {
            margin: 60px 0;
            text-align: center;
        }
        .img-responsive {
            max-width: 100%;
            height: auto;
            border-radius: 18px;
            box-shadow: 0 12px 25px rgba(0,0,0,0.18);
            transition: transform 0.5s ease;
            border: 5px solid #ffd600;
        }
        .img-responsive:hover {
            transform: scale(1.04);
        }
        ul, ol {
            margin: 35px 0 45px 70px;
        }
        li {
            margin-bottom: 25px;
            font-size: 1.15rem;
            line-height: 2.1;
            position: relative;
        }
        ul li::before {
            content: '✅';
            position: absolute;
            left: -45px;
            top: 8px;
            color: #2e7d32;
            font-size: 1.3rem;
        }
        ol li::before {
            content: counter(list-item) '. ';
            position: absolute;
            left: -45px;
            top: 8px;
            font-weight: 800;
            color: #1e88e5;
            font-size: 1.3rem;
        }
        .section {
            background-color: white;
            border-radius: 25px;
            padding: 60px;
            margin-bottom: 70px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }
        .desi-highlight {
            background-color: #fff8e1;
            color: #162e4d;
            padding: 35px;
            border-radius: 18px;
            margin: 50px 0;
            border-left: 6px solid #1e88e5;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        .desi-highlight strong {
            color: #1e88e5;
            font-size: 1.25rem;
        }
        .stats-box {
            background-color: #e3f2fd;
            color: #162e4d;
            padding: 45px;
            border-radius: 18px;
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
            justify-content: center;
            align-items: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .stats-item {
            text-align: center;
            flex: 1;
            min-width: 200px;
        }
        .stats-value {
            font-size: 3.8rem;
            font-weight: 900;
            color: #1e88e5;
            margin-bottom: 12px;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.15);
        }
        .stats-label {
            font-size: 1.2rem;
            font-weight: 600;
            line-height: 1.8;
        }
        .guide-card {
            background-color: #fafafa;
            border-radius: 18px;
            padding: 40px;
            margin: 50px 0;
            border: 3px solid #e3f2fd;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }
        .guide-card h4 {
            color: #1e88e5;
            margin-bottom: 30px;
        }
        .event-card {
            background-color: #fce4ec;
            border-radius: 18px;
            padding: 40px;
            margin: 50px 0;
            border: 3px solid #f8bbd0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }
        .event-card h4 {
            color: #1e88e5;
            margin-bottom: 30px;
        }
        .community-post {
            background-color: #f5f5f5;
            border-radius: 18px;
            padding: 35px;
            margin: 40px 0;
            border: 3px solid #e0e0e0;
        }
        .community-post .author {
            font-weight: 800;
            color: #162e4d;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            font-size: 1.3rem;
        }
        .community-post .author::before {
            content: '👤';
            margin-right: 15px;
            font-size: 1.6rem;
        }
        .community-post .date {
            font-size: 1.05rem;
            color: #616161;
            margin-bottom: 25px;
            font-style: italic;
        }
        .game-categories {
            margin: 70px 0 60px;
        }
        .game-categories h3 {
            margin-bottom: 35px;
            text-align: center;
            justify-content: center;
        }
        .categories-list {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
        }
        .category-link {
            background-color: #e3f2fd;
            color: #162e4d;
            padding: 15px 30px;
            border-radius: 35px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        .category-link:hover {
            background-color: #1e88e5;
            color: white;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(30, 136, 229, 0.3);
        }
        .tags-section {
            margin: 70px 0 80px;
        }
        .tags-section h3 {
            margin-bottom: 35px;
            text-align: center;
            justify-content: center;
        }
        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .tag-link {
            background-color: #f5fafe;
            color: #162e4d;
            padding: 12px 28px;
            border-radius: 35px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .tag-link:hover {
            background-color: #2e7d32;
            color: white;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(46, 125, 50, 0.3);
        }
        footer {
            background-color: #162e4d;
            color: white;
            padding: 70px 0 50px;
            border-radius: 30px 30px 0 0;
            margin-top: 90px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
        }
        .footer-col h4 {
            font-size: 1.4rem;
            margin-bottom: 35px;
            color: #ffd600;
            padding-bottom: 20px;
            border-bottom: 3px solid rgba(255,255,255,0.25);
        }
        .footer-col a {
            color: #f5f5f5;
            text-decoration: none;
            display: block;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        .footer-col a:hover {
            color: #ffd600;
            padding-left: 15px;
        }
        .recommendation {
            text-align: center;
            margin: 60px 0;
            font-size: 1.3rem;
            color: #f5f5f5;
            line-height: 2.2;
            padding: 0 25px;
        }
        .recommendation a {
            color: #ffd600;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.35rem;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            border-top: 3px solid rgba(255,255,255,0.25);
            font-size: 1.1rem;
            color: #e0e0e0;
            line-height: 2;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 35px;
            }
            h1 {
                font-size: 3.2rem;
            }
            h2 {
                font-size: 2.4rem;
            }
            h3 {
                font-size: 2rem;
            }
            .section {
                padding: 55px;
            }
            .stats-value {
                font-size: 3.5rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 30px;
            }
            .logo {
                font-size: 2.8rem;
            }
            .logo span {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 3rem;
                margin: 65px 0 35px;
            }
            h2 {
                font-size: 2.2rem;
                margin: 75px 0 30px;
            }
            h3 {
                font-size: 1.9rem;
                margin: 55px 0 22px;
            }
            .btn {
                padding: 16px 36px;
                font-size: 1.15rem;
            }
            .section {
                padding: 50px;
            }
            ul, ol {
                margin: 30px 0 40px 60px;
            }
            .stats-box {
                gap: 30px;
            }
        }
        @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, #0f4c81, #1e88e5);
                padding: 150px 35px;
                gap: 35px;
                box-shadow: 0 25px 25px rgba(0,0,0,0.3);
                z-index: 9999;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 2.5rem;
            }
            .logo span {
                font-size: 1.7rem;
            }
            h1 {
                font-size: 2.8rem;
                margin: 60px 0 30px;
            }
            h2 {
                font-size: 2rem;
                margin: 70px 0 25px;
            }
            h3 {
                font-size: 1.8rem;
                margin: 50px 0 20px;
            }
            .btn-container {
                gap: 25px;
            }
            .section {
                padding: 45px;
            }
            ul, ol {
                margin: 25px 0 35px 55px;
            }
            .stats-box {
                gap: 25px;
            }
            .stats-value {
                font-size: 3.2rem;
            }
            .img-container {
                margin: 55px 0;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2.3rem;
            }
            .logo span {
                font-size: 1.6rem;
            }
            h1 {
                font-size: 2.5rem;
                margin: 55px 0 25px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 65px 0 22px;
            }
            h3 {
                font-size: 1.7rem;
                margin: 45px 0 18px;
            }
            h4 {
                font-size: 1.5rem;
            }
            .btn-container {
                flex-direction: column;
                gap: 20px;
            }
            .btn-download {
                margin-right: 0;
                width: 100%;
            }
            .btn-login {
                width: 100%;
            }
            .section {
                padding: 40px;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 25px;
                line-height: 2;
            }
            li {
                font-size: 1.1rem;
                margin-bottom: 20px;
                line-height: 2;
            }
            .img-container {
                margin: 50px 0;
            }
            .desi-highlight {
                padding: 30px;
            }
            .stats-item {
                min-width: 170px;
            }
            .stats-value {
                font-size: 2.8rem;
            }
            .footer-container {
                gap: 50px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 2.1rem;
            }
            .logo span {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .section {
                padding: 35px;
            }
            .stats-box {
                gap: 20px;
            }
            .stats-item {
                min-width: 150px;
            }
            .stats-value {
                font-size: 2.5rem;
            }
            .stats-label {
                font-size: 1.1rem;
            }
        }
