 body {
            margin: 0;
            background: #0b1220;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            display: flex;
            justify-content: center;
        }

        .container {
            width: 90%;
            max-width: 700px;
            margin-top: 40px;
        }

        .title {
            color: #fff;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .box {
            background: #16213a;
            border: 1px solid #d4a017;
            color: #fff;
            padding: 18px;
            border-radius: 12px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: 0.3s;
            text-align: center;
            font-weight: 600;
        }

        .box:hover {
            background: #1e2b4a;
        }

        .ads {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }