* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            line-height: 1.9;
            color: #2d2d2d;
            background-color: #f8f9fa;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .header-container {
            background-color: #0f172a;
            color: #ffffff;
            padding: 12px 20px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .nav-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ffb703;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #ffffff;
            font-size: 1.5rem;
        }
        .main-nav {
            display: flex;
            gap: 30px;
        }
        .main-nav a {
            color: #f1f5f9;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover {
            color: #ffb703;
            border-bottom: 2px solid #ffb703;
        }
        .daman-link {
            background-color: #ffb703;
            color: #0f172a !important;
            padding: 8px 20px;
            border-radius: 30px;
            border-bottom: none !important;
            font-weight: 600;
        }
        .daman-link:hover {
            background-color: #f59e0b;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255,183,3,0.3);
        }
        .hamburger-btn {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffb703;
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #0f172a;
                padding: 25px 20px;
                gap: 20px;
                border-top: 1px solid #27272a;
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger-btn {
                display: block;
            }
            .logo {
                font-size: 1.5rem;
            }
            .logo span {
                font-size: 1.2rem;
            }
        }
        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.7rem;
            color: #0f172a;
            margin-bottom: 35px;
            text-align: center;
            border-bottom: 4px solid #ffb703;
            padding-bottom: 20px;
            font-weight: 800;
            letter-spacing: 0.3px;
        }
        h2 {
            font-size: 2.1rem;
            color: #0f172a;
            margin: 60px 0 25px;
            padding-left: 20px;
            border-left: 5px solid #ffb703;
            font-weight: 700;
        }
        h3 {
            font-size: 1.6rem;
            color: #1e293b;
            margin: 40px 0 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3::before {
            content: "📍";
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 700;
            color: #f59e0b;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .keyword {
            font-weight: 800;
            color: #0f172a;
            font-size: 1.15rem;
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
        }
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 150px;
        }
        .stat-value {
            font-size: 2.2rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 5px;
        }
        .stat-label {
            font-size: 1rem;
            color: #64748b;
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            border: 1px solid #e2e8f0;
        }
        .btn-section {
            text-align: center;
            margin: 60px 0;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 18px 35px;
            font-size: 1.2rem;
            font-weight: 700;
            border: none;
            border-radius: 35px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #ffb703;
            color: #0f172a;
        }
        .download-btn:hover {
            background-color: #f59e0b;
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(255,183,3,0.3);
        }
        .login-btn {
            background-color: #0f172a;
            color: #ffffff;
        }
        .login-btn:hover {
            background-color: #1e293b;
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(15,23,42,0.3);
        }
        ul, ol {
            margin: 25px 0 30px 45px;
            font-size: 1.1rem;
            line-height: 2.1;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 12px;
            padding-left: 10px;
        }
        .tab-container {
            margin: 40px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .tab-header {
            background-color: #0f172a;
            color: #ffffff;
            padding: 15px 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .tab-content {
            background-color: #ffffff;
            padding: 20px;
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .game-categories {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 30px;
            margin: 60px 0 40px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .categories-title, .tags-title {
            font-size: 1.5rem;
            color: #0f172a;
            margin-bottom: 20px;
            font-weight: 600;
        }
        .categories-list, .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .category-link, .tag-link {
            color: #0f172a;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .category-link {
            background-color: #f1f5f9;
            border: 1px solid #e2e8f0;
        }
        .category-link:hover {
            background-color: #0f172a;
            color: #ffffff;
            border-color: #0f172a;
        }
        .tag-link {
            background-color: #fef3c7;
            color: #92400e;
        }
        .tag-link:hover {
            background-color: #f59e0b;
            color: #ffffff;
        }
        .recommendation {
            background-color: #f8fafc;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            text-align: center;
            border: 1px solid #e2e8f0;
        }
        .recommendation-text {
            font-size: 1.2rem;
            color: #0f172a;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        .copyright {
            text-align: center;
            color: #64748b;
            padding: 30px 20px;
            border-top: 1px solid #e2e8f0;
            margin-top: 60px;
            font-size: 0.95rem;
        }
        <script type="application/ld+json">
        {
            "@context": "https://schema.org",
            "@type": "Game",
            "name": "Mangalore Port Empire Builder",
            "description": "Mangalore Port Empire Builder is India's premier port simulation and management mobile game, offering localized content, desi events, and authentic Indian port experiences for players across the country.",
            "gameGenre": "Simulation, Strategy, Management, Mobile Game",
            "publisher": {
                "@type": "Organization",
                "name": "Daman Games",
                "url": "https://www.damangames.center"
            },
            "platform": "Android, iOS",
            "keywords": "Mangalore Port Empire Builder, India port simulation game, Daman Games, Indian mobile game, port management game, desi gaming",
            "aggregateRating": {
                "@type": "AggregateRating",
                "ratingValue": "4.8",
                "reviewCount": "2,150,000"
            },
            "offers": {
                "@type": "Offer",
                "url": "https://down.com",
                "price": "0",
                "priceCurrency": "INR",
                "availability": "https://schema.org/InStock"
            },
            "downloadUrl": "https://down.com",
            "loginUrl": "https://login.com",
            "operatingSystem": "Android, iOS",
            "gamePlatform": "Mobile Devices"
        }
