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

/* Body */
body {
    background-color: #0F172A;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

/* Marquee */
marquee {
    font-size: 18px;
    font-weight: bold;
    color: #FACC15;
    background: rgba(255, 204, 0, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Title */
.title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #FACC15;
    text-shadow: 3px 3px 8px rgba(255, 204, 0, 0.6);
}

/* Merit Table */
.merit-table {
    width: 80%;
    margin: auto;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(255, 204, 0, 0.4);
    transition: 0.3s ease-in-out;
}

/* Table Header */
.merit-table thead {
    background: linear-gradient(135deg, #FF8C00, #FF5733);
    color: white;
}

/* Table Cells */
.merit-table th, .merit-table td {
    padding: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

/* Alternate Row Styling */
.merit-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

/* Hover Effect */
.merit-table tbody tr:hover {
    background: rgba(255, 204, 0, 0.3);
    transition: 0.3s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .merit-table {
        width: 100%;
    }

    .title {
        font-size: 28px;
    }

    marquee {
        font-size: 16px;
    }
}
