* {
        margin: 0;
        padding: 0;
    }

    @keyframes slideInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes glow {
        0%, 100% {
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        }
        50% {
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    body {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        min-height: 100vh;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    h1 {
        animation: slideInDown 0.8s ease-out, glow 2s ease-in-out infinite;
        color: #ffffff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        margin: 30px 0;
        text-align: center;
        font-size: 2.5rem;
    }

    table {
        animation: fadeInUp 0.8s ease-out !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        border-radius: 10px !important;
        overflow: hidden;
        width: 100%;
        max-width: 900px;
        border-collapse: collapse;
    }

    th {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: #ffffff !important;
        font-weight: bold;
        padding: 20px 15px !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    th:hover {
        transform: scale(1.05);
        box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3);
    }

    tr {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        animation: fadeInUp 0.8s ease-out both;
    }

    tr:nth-child(1) { animation-delay: 0s; }
    tr:nth-child(2) { animation-delay: 0.1s; }
    tr:nth-child(3) { animation-delay: 0.2s; }
    tr:nth-child(4) { animation-delay: 0.3s; }
    tr:nth-child(5) { animation-delay: 0.4s; }
    tr:nth-child(6) { animation-delay: 0.5s; }
    tr:nth-child(7) { animation-delay: 0.6s; }
    tr:nth-child(8) { animation-delay: 0.7s; }
    tr:nth-child(9) { animation-delay: 0.8s; }
    tr:nth-child(10) { animation-delay: 0.9s; }

    td {
        padding: 15px !important;
        transition: all 0.3s ease;
    }

    tr:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        background-color: rgb(247, 237, 239);
    }

    tr:hover td {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    .morning {
        background: linear-gradient(135deg, #ffeb3b 0%, #fdd835 100%);
        color: #000000;
        font-weight: bold;
        box-shadow: 0 4px 15px rgba(255, 235, 59, 0.4);
    }

    .morning:hover {
        background: linear-gradient(135deg, #fdd835 0%, #ffeb3b 100%);
        box-shadow: 0 6px 20px rgba(255, 235, 59, 0.6);
        transform: scale(1.05);
    }

    .afternoon {
        background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
        color: #ffffff;
        font-weight: bold;
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    }

    .afternoon:hover {
        background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
        transform: scale(1.05);
    }

    .evening {
        background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
        color: #ffffff;
        font-weight: bold;
        box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
    }

    .evening:hover {
        background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
        box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
        transform: scale(1.05);
    }

    .night {
        background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
        color: #ffffff;
        font-weight: bold;
        box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
    }

    .night:hover {
        background: linear-gradient(135deg, #7b1fa2 0%, #9c27b0 100%);
        box-shadow: 0 6px 20px rgba(156, 39, 176, 0.6);
        transform: scale(1.05);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        h1 {
            font-size: 2rem;
            margin: 20px 0;
        }

        table {
            font-size: 0.95rem;
        }

        th {
            padding: 15px 10px !important;
            font-size: 0.9rem;
        }

        td {
            padding: 12px 8px !important;
            font-size: 0.9rem;
        }

        tr:hover {
            transform: translateY(-3px) scale(1.01);
        }

        .morning, .afternoon, .evening, .night {
            transform: scale(1);
        }

        .morning:hover, .afternoon:hover, .evening:hover, .night:hover {
            transform: scale(1.03);
        }
    }

    @media (max-width: 480px) {
        h1 {
            font-size: 1.5rem;
            margin: 15px 0;
        }

        table {
            font-size: 0.85rem;
            max-width: 100%;
        }

        th {
            padding: 10px 5px !important;
            font-size: 0.8rem;
            letter-spacing: 0.5px;
        }

        td {
            padding: 10px 5px !important;
            font-size: 0.8rem;
        }

        tr:hover {
            transform: translateY(-2px) scale(1.005);
        }

        .morning:hover, .afternoon:hover, .evening:hover, .night:hover {
            transform: scale(1.02);
        }
    }
