* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            background-color: #f5f5f5;
            padding: 0;
            margin: 0;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            background-color: #1a237e;
            color: #ffd700;
            padding: 15px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffd700;
            text-decoration: none;
            display: inline-block;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #e3f2fd;
        }
        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: #e3f2fd;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            color: #1a237e;
            background-color: #ffd700;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: #e3f2fd;
        }
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #b71c1c;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
            margin-right: 10px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #8b0000;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: #0d47a1;
        }
        .btn-login:hover {
            background-color: #002171;
        }
        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.08);
            border-top: 5px solid #1a237e;
        }
        h1 {
            color: #1a237e;
            font-size: 2.2rem;
            margin-bottom: 20px;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 10px;
            font-family: 'Georgia', serif;
        }
        h2 {
            color: #4a148c;
            font-size: 1.8rem;
            margin: 25px 0 15px;
            position: relative;
            padding-left: 15px;
            border-left: 4px solid #b71c1c;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #0d47a1;
            font-size: 1.4rem;
            margin: 20px 0 10px;
            font-family: 'Georgia', serif;
        }
        p {
            margin-bottom: 15px;
            text-align: justify;
            line-height: 1.7;
            color: #333;
        }
        .highlight {
            background-color: #fff8e1;
            padding: 15px;
            border-left: 4px solid #ff9800;
            margin: 20px 0;
            border-radius: 0 4px 4px 0;
        }
        ul {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 10px;
        }
        ul li:before {
            content: "•";
            color: #1a237e;
            font-weight: bold;
            position: absolute;
            left: -15px;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.15);
            border: 2px solid #c5cae9;
        }
        .game-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .feature-card {
            background-color: #e8eaf6;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #c5cae9;
            transition: all 0.3s;
            border-top: 4px solid #1a237e;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background-color: #f3f5ff;
        }
        .feature-card h3 {
            color: #1a237e;
            margin-top: 0;
            border-bottom: 1px dotted #1a237e;
            padding-bottom: 8px;
        }
        .table-container {
            overflow-x: auto;
            margin: 30px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: #1a237e;
            color: white;
            font-weight: bold;
        }
        tr:nth-child(even) {
            background-color: #e8eaf6;
        }
        tr:hover {
            background-color: #f3f5ff;
        }
        footer {
            background-color: #1a237e;
            color: #e3f2fd;
            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;
            border-bottom: 1px dotted #ffd700;
            padding-bottom: 8px;
        }
        .footer-section ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-section ul li {
            margin-bottom: 10px;
            padding-left: 0;
        }
        .footer-section ul li:before {
            display: none;
        }
        .footer-section a {
            color: #c5cae9;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-section a:hover {
            color: #ffd700;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #303f9f;
            color: #c5cae9;
            font-size: 0.9rem;
        }
        .daman-link {
            color: #ffd700 !important;
            font-weight: bold;
            text-decoration: underline;
        }
        @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);
                z-index: 100;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
                padding: 5px 0;
                border-bottom: 1px dotted #303f9f;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .game-features {
                grid-template-columns: 1fr;
            }
            .buttons {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }
            .btn {
                margin-right: 0;
                text-align: center;
            }
        }
