* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        html {
            scroll-behavior: smooth;
            line-height: 1.6;
        }
        body {
            color: #2d2d2d;
            background-color: #faf6ed;
            padding-bottom: 80px;
            font-size: 16px;
        }
        .header-container {
            background-color: #1a2456;
            color: #ffffff;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 12px rgba(0,0,0,0.2);
        }
        .nav-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: #ff9f1c;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo emoji {
            font-size: 1.8rem;
        }
        .main-nav {
            display: flex;
            gap: 35px;
        }
        .main-nav a {
            color: #f8f9fa;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 6px 0;
            border-bottom: 3px solid transparent;
        }
        .main-nav a:hover {
            color: #ff9f1c;
            border-bottom: 3px solid #ff9f1c;
        }
        .daman-link {
            background-color: #ff9f1c;
            color: #1a2456 !important;
            padding: 10px 22px;
            border-radius: 35px;
            border-bottom: none !important;
            font-weight: 700;
            box-shadow: 0 2px 6px rgba(255,159,28,0.2);
        }
        .daman-link:hover {
            background-color: #e68a00;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(255,159,28,0.3);
        }
        .hamburger-btn {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: #ff9f1c;
            background: transparent;
            border: none;
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #1a2456;
                padding: 30px 25px;
                gap: 25px;
                border-top: 2px solid #ff9f1c;
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger-btn {
                display: block;
            }
            .logo {
                font-size: 1.7rem;
            }
            .logo emoji {
                font-size: 1.5rem;
            }
        }
        .container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a2456;
            margin-bottom: 40px;
            text-align: center;
            border-bottom: 5px solid #ff9f1c;
            padding-bottom: 25px;
            font-weight: 900;
            letter-spacing: 0.5px;
        }
        h2 {
            font-size: 2.2rem;
            color: #1a2456;
            margin: 70px 0 30px;
            padding-left: 25px;
            border-left: 6px solid #ff9f1c;
            font-weight: 800;
        }
        h3 {
            font-size: 1.7rem;
            color: #2c3e50;
            margin: 45px 0 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h3 emoji {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #34495e;
            margin: 35px 0 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #e68a00;
            text-decoration: underline;
            text-underline-offset: 5px;
        }
        .keyword {
            font-weight: 900;
            color: #1a2456;
            font-size: 1.2rem;
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 5px 18px rgba(0,0,0,0.07);
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            align-items: center;
        }
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 180px;
            padding: 15px;
            border-radius: 10px;
            background-color: #f9f5f0;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 900;
            color: #1a2456;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #64748b;
            font-weight: 500;
        }
        .img-container {
            margin: 50px 0;
            text-align: center;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 22px rgba(0,0,0,0.12);
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .img-caption {
            background-color: #ffffff;
            padding: 15px;
            font-size: 1rem;
            color: #475569;
            font-style: italic;
        }
        .btn-section {
            text-align: center;
            margin: 70px 0;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 20px 40px;
            font-size: 1.3rem;
            font-weight: 800;
            border: none;
            border-radius: 40px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #ff9f1c;
            color: #1a2456;
        }
        .download-btn:hover {
            background-color: #e68a00;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(255,159,28,0.3);
        }
        .login-btn {
            background-color: #1a2456;
            color: #ffffff;
        }
        .login-btn:hover {
            background-color: #2c3e50;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(26,36,86,0.3);
        }
        ul, ol {
            margin: 30px 0 35px 50px;
            font-size: 1.15rem;
            line-height: 2.2;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 15px;
            padding-left: 12px;
        }
        .tab-container {
            margin: 50px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 18px rgba(0,0,0,0.07);
        }
        .tab-header {
            background-color: #1a2456;
            color: #ffffff;
            padding: 18px 25px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
        }
        .tab-content {
            background-color: #ffffff;
            padding: 25px;
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .game-categories {
            background-color: #ffffff;
            border-radius: 15px;
            padding: 35px;
            margin: 70px 0 50px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.07);
        }
        .categories-title, .tags-title {
            font-size: 1.6rem;
            color: #1a2456;
            margin-bottom: 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .categories-list, .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .category-link, .tag-link {
            color: #1a2456;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1.05rem;
        }
        .category-link {
            background-color: #f9f5f0;
            border: 2px solid #ff9f1c;
        }
        .category-link:hover {
            background-color: #1a2456;
            color: #ffffff;
            border-color: #1a2456;
        }
        .tag-link {
            background-color: #fff4e6;
            color: #e68a00;
            border: 1px solid #ff9f1c;
        }
        .tag-link:hover {
            background-color: #ff9f1c;
            color: #ffffff;
            border-color: #ff9f1c;
        }
        .recommendation {
            background-color: #f9f5f0;
            border-radius: 15px;
            padding: 40px;
            margin: 50px 0;
            text-align: center;
            border: 2px solid #ff9f1c;
        }
        .recommendation-text {
            font-size: 1.3rem;
            color: #1a2456;
            margin-bottom: 25px;
            line-height: 2;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            color: #64748b;
            padding: 35px 25px;
            border-top: 2px solid #f1e9dc;
            margin-top: 70px;
            font-size: 1rem;
            background-color: #ffffff;
            border-radius: 15px 15px 0 0;
        }
        <script type="application/ld+json">
        {
            "@context": "https://schema.org",
            "@type": "Game",
            "name": "Port Baron Mangalore",
            "description": "Port Baron Mangalore is India's leading port simulation and management mobile game, offering 11+ regional languages, desi festive events, and authentic Indian port experiences for gamers across the country.",
            "gameGenre": "Simulation, Strategy, Management, Mobile Game",
            "publisher": {
                "@type": "Organization",
                "name": "Daman Games",
                "url": "https://www.damangames.center"
            },
            "platform": "Android, iOS",
            "keywords": "Port Baron Mangalore, Indian port simulation game, Daman Games, desi gaming, port management game India, mobile strategy game",
            "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"
        }
