* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.correct {
    background-color: #4CAF50 !important; /* Green */
}
.incorrect {
    background-color: #FF5252 !important; /* Red */
}
/* Close button for popup */
.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

.close-popup:hover {
    color: #FF5252; /* Red color on hover */
}
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #162447;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 1000;
}
.popup button {
    background-color: #3f72af;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}
.popup button:hover {
    background-color: #0f3460;
}
.mainContainer {
    font-family: 'Poppins', sans-serif;
    background-color: #1b2430;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}
.container {
    max-width: 400px;
    background: #162447;
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    padding: 20px;
    text-align: center;
}
.game-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

/* Individual game card */
.game-card {
    background-color: #162447;
    border-radius: 12px;
    padding: 20px;
    width: 180px;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
}

/* Game images */
.game-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Play button */
.play-now-btn {
    background-color: #3f72af;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
}

.play-now-btn:hover {
    background-color: #0f3460;
}

/* Ad slot styling */
.ad-slot {
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.header {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.sub-header {
    font-size: 14px;
    margin-bottom: 20px;
    color: #bbb;
}
.question-section {
    background: #0f3460;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}
.question-count {
    background: #3f72af;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}
.question-text {
    font-size: 18px;
    margin-bottom: 20px;
}
.options button {
    background: #3f72af;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 10px;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s;
}
.options button:hover {
    background: #112d4e;
}
.fun-fact {
    background: #1b1b3a;
    padding: 20px;
    margin-top: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.play-section {
    padding: 20px;
    background: #0f3460;
    border-radius: 12px;
}
.play-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.play-section ul {
    list-style: none;
    font-size: 14px;
    color: #bbb;
}
.play-section ul li {
    margin-bottom: 8px;
}
.header {
    background-color: #26547c;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 60px;
}
/* Coin container */
.coin-container {
    display: flex;
    align-items: center;
    height: 28px;
    background-color: #fff;
    color: #1D4E89;
    padding: 5px 10px;
    border-radius: 20px;
}
.coin-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.coin-count {
    font-weight: bold;
    font-size: medium;
}

/* Menu icon styling */
.menu-icon {
    font-size: 24px;
    cursor: pointer;
}

/* Title styling */
.title {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}


/* google search engine */
.gsc-control-cse {
    background: transparent !important;
    border: none !important;
}

.gsc-input-box{
    border-radius: 50px !important;
}

.gsc-search-button-v2{
    border-radius: 50px !important;
}

p {
    text-align: justify;
}
