        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #333;
            background-color: #f9f7f1;
            padding-bottom: 50px;
        }
        .header {
            background-color: #2c3e50;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffd700;
            text-decoration: none;
            display: inline-block;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #ffd700;
        }
        .btn {
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            display: inline-block;
            margin-left: 15px;
        }
        .btn-download {
            background-color: #27ae60;
            color: white;
        }
        .btn-download:hover {
            background-color: #219653;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: #3498db;
            color: white;
        }
        .btn-login:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://host.com/images/sasaram-stride-master-hero.jpg') center/cover no-repeat;
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 50px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #ffd700;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .section {
            margin-bottom: 60px;
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        .section h2 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: #2c3e50;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 10px;
            display: inline-block;
        }
        .section h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: #34495e;
        }
        .section p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .section ul {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        .section ul li {
            margin-bottom: 10px;
            font-size: 1.05rem;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 15px;
            border-left: 4px solid #ffd700;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .game-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .feature-card {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-5px);
        }
        .feature-card h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #27ae60;
        }
        .screenshot-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .screenshot-gallery img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transition: all 0.3s;
        }
        .screenshot-gallery img:hover {
            transform: scale(1.02);
        }
        .table-container {
            overflow-x: auto;
            margin: 30px 0;
        }
        .game-stats {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        .game-stats th, .game-stats td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .game-stats th {
            background-color: #2c3e50;
            color: white;
            font-size: 1.1rem;
        }
        .game-stats tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .game-stats tr:hover {
            background-color: #f1f1f1;
        }
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 60px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 8px;
            display: inline-block;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column ul li {
            margin-bottom: 12px;
        }
        .footer-column a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-column a:hover {
            color: #ffd700;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            margin-top: 30px;
            font-size: 0.95rem;
            color: #bdc3c7;
        }
        .daman-recommendation {
            background-color: #e8f4f8;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            border-left: 4px solid #3498db;
        }
        .daman-recommendation h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #2980b9;
        }
        @media (max-width: 900px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #2c3e50;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0 10px 30px;
            }
            .hamburger {
                display: block;
            }
            .btn {
                margin: 10px 0 10px 30px;
                width: 80%;
                text-align: center;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section h2 {
                font-size: 1.8rem;
            }
            .section h3 {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 600px) {
            .logo {
                font-size: 1.4rem;
            }
            .hero {
                padding: 50px 0;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .screenshot-gallery {
                grid-template-columns: 1fr;
            }
            .game-features {
                grid-template-columns: 1fr;
            }
        }
