* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    padding: 30px 15px;
    color: #ffffff;
}

/* Main Heading */
.main-heading {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(to right, #38bdf8, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description */
.description {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #e5e7eb;
}

/* Quiz Card */
.quiz-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 650px;
    margin: 25px auto;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.quiz-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}

.quiz-card h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #38bdf8;
    text-align: center;
}

.quiz-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: transform 0.4s ease;
}

.quiz-card img:hover {
    transform: scale(1.05);
}

/* ===== SPECIAL SECTION (Different Style) ===== */
.special-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 35px;
    background: linear-gradient(135deg, #22c55e, #38bdf8);
    border-radius: 20px;
    text-align: center;
    color: #0f172a;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.special-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.special-section img {
    width: 100%;
    height: auto;              /* IMPORTANT */
    max-height: none;          /* REMOVE HEIGHT LIMIT */
    object-fit: contain;       /* SHOW FULL IMAGE */
    border-radius: 16px;
    margin-bottom: 20px;
    border: 4px solid #ffffff;
    background-color: #ffffff; /* nice contrast */
}


.special-section p {
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
}

/* Footer */
footer {
    margin-top: 60px;
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

footer p {
    margin-bottom: 8px;
    font-size: 16px;
    color: #e5e7eb;
}

footer a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .main-heading {
        font-size: 32px;
    }

    .special-section h2 {
        font-size: 26px;
    }
}
