* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.8;
            color: #212121;
            background-color: #fafafa;
            padding-bottom: 60px;
        }
        .container {
            width: 92%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #0d47a1, #1565c0);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        .logo {
            font-size: 1.9rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #ffca28;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffca28;
            border-bottom: 2px solid #ffca28;
        }
        .hamburger {
            display: none;
            font-size: 1.7rem;
            cursor: pointer;
            color: #ffca28;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('mumbai-tt-dynamo-bg.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 90px 0;
            text-align: center;
            margin-bottom: 45px;
            border-radius: 0 0 15px 15px;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 35px;
            line-height: 1.7;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(45deg, #ff9800, #ff5722);
            color: white;
            padding: 14px 28px;
            text-decoration: none;
            border-radius: 7px;
            font-weight: bold;
            transition: all 0.3s ease;
            margin: 0 12px;
            box-shadow: 0 3px 7px rgba(0,0,0,0.2);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.25);
            background: linear-gradient(45deg, #f57c00, #e64a19);
        }
        .content {
            background-color: white;
            padding: 45px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0,0,0,0.06);
            margin-bottom: 35px;
        }
        h2 {
            color: #0d47a1;
            margin-bottom: 22px;
            padding-bottom: 12px;
            border-bottom: 3px solid #ff9800;
            font-size: 1.7rem;
        }
        h3 {
            color: #1565c0;
            margin: 28px 0 18px;
            font-size: 1.3rem;
            position: relative;
            padding-left: 14px;
        }
        h3:before {
            content: "•";
            color: #ff5722;
            font-size: 1.7rem;
            position: absolute;
            left: 0;
            top: -4px;
        }
        p {
            margin-bottom: 18px;
            text-align: justify;
            font-size: 1rem;
        }
        .section {
            margin-bottom: 45px;
        }
        .gameplay-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 22px;
            margin: 35px 0;
        }
        .feature-card {
            background: linear-gradient(180deg, #f8f8f8, #f0f0f0);
            padding: 22px;
            border-radius: 8px;
            border-left: 5px solid #1565c0;
            transition: transform 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-4px);
        }
        .feature-card h4 {
            color: #0d47a1;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 28px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        table th, table td {
            padding: 14px;
            border: 1px solid #e0e0e0;
            text-align: left;
        }
        table th {
            background: linear-gradient(45deg, #1565c0, #0d47a1);
            color: white;
            font-weight: bold;
        }
        table tr:nth-child(even) {
            background-color: #f5f5f5;
        }
        table tr:hover {
            background-color: #e3f2fd;
        }
        .blockquote {
            font-style: italic;
            border-left: 5px solid #ff9800;
            padding: 18px 22px;
            margin: 22px 0;
            color: #424242;
            background-color: #fff8e1;
            border-radius: 0 7px 7px 0;
        }
        footer {
            background: linear-gradient(135deg, #1565c0, #0d47a1);
            color: white;
            padding: 45px 0 22px;
            margin-top: 55px;
            border-radius: 15px 15px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 35px;
            margin-bottom: 35px;
        }
        .footer-section h3 {
            color: #ffca28;
            margin-bottom: 22px;
            font-size: 1.2rem;
            padding-left: 0;
        }
        .footer-section h3:before {
            content: "";
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 11px;
        }
        .footer-section a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #ffca28;
            padding-left: 4px;
        }
        .copyright {
            text-align: center;
            padding-top: 28px;
            border-top: 1px solid #1976d2;
            color: #bbdefb;
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 22px 0;
        }
        .tag {
            background: linear-gradient(45deg, #2196f3, #1976d2);
            color: white;
            padding: 7px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: linear-gradient(45deg, #1976d2, #0d47a1);
            transform: translateY(-2px);
        }
        .highlight-box {
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            border-radius: 8px;
            padding: 18px;
            margin: 28px 0;
            border-left: 4px solid #1565c0;
        }
        .highlight-box h4 {
            color: #0d47a1;
            margin-bottom: 9px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 22px;
                background-color: rgba(13, 71, 161, 0.95);
                padding: 18px;
                border-radius: 7px;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                margin: 9px 0;
                padding: 4px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hero h1 {
                font-size: 2.1rem;
            }
            .content {
                padding: 22px;
            }
            h2 {
                font-size: 1.4rem;
            }
            .btn {
                display: block;
                margin: 12px auto;
                width: 80%;
            }
        }
