* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
            padding: 0;
            margin: 0;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            background-color: #1a237e;
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffd700;
            text-decoration: none;
            display: inline-block;
        }
        .logo span {
            color: white;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .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: color 0.3s;
        }
        .nav-links a:hover {
            color: #ffd700;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #e91e63;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
            margin-right: 10px;
        }
        .btn:hover {
            background-color: #c2185b;
        }
        .btn-login {
            background-color: #03a9f4;
        }
        .btn-login:hover {
            background-color: #0288d1;
        }
        main {
            padding: 30px 0;
        }
        .content-section {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        h1 {
            color: #1a237e;
            font-size: 2.2rem;
            margin-bottom: 20px;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 10px;
        }
        h2 {
            color: #283593;
            font-size: 1.8rem;
            margin: 25px 0 15px;
            position: relative;
            padding-left: 10px;
            border-left: 4px solid #e91e63;
        }
        h3 {
            color: #0277bd;
            font-size: 1.4rem;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 15px;
            text-align: justify;
            line-height: 1.7;
        }
        .highlight {
            background-color: #fff8e1;
            padding: 15px;
            border-left: 4px solid #ffc107;
            margin: 20px 0;
        }
        ul {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        ul li {
            margin-bottom: 10px;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .game-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .feature-card {
            background-color: #fafafa;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            transition: transform 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .feature-card h3 {
            color: #e91e63;
            margin-top: 0;
        }
        .table-container {
            overflow-x: auto;
            margin: 30px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
        }
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: #1a237e;
            color: white;
        }
        tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        footer {
            background-color: #1a237e;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-section ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-section ul li {
            margin-bottom: 10px;
        }
        .footer-section a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-section a:hover {
            color: #ffd700;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #283593;
            color: #e0e0e0;
            font-size: 0.9rem;
        }
        .daman-link {
            color: #ffd700 !important;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #1a237e;
                padding: 20px;
                box-shadow: 0 5px 5px rgba(0,0,0,0.1);
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
