:root {
    --primary-pink: #ff8fa3;
    --secondary-pink: #ffc2d1;
    --dark-pink: #ff4d6d;
    --bg-pink: #fff0f3;
    --text-dark: #590d22;
    --text-light: #fff;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.8);
    --shadow: 0 8px 32px 0 rgba(255, 143, 163, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-pink);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 2rem;
}

/* Background Animations */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 10s infinite ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-pink);
    top: -50px;
    left: -50px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-pink);
    bottom: 50px;
    right: -50px;
    animation-delay: 2s;
}

.blob-3 {
    width: 200px;
    height: 200px;
    background: var(--dark-pink);
    top: 40%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    z-index: 1;
}

/* Glass Panel Styles */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

/* Header Section */
.header-panel {
    padding: 1.5rem 3rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.date-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.menu-item .label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--dark-pink);
    margin-bottom: 0.5rem;
}

.menu-item .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.divider {
    width: 2px;
    height: 40px;
    background-color: var(--glass-border);
    border-radius: 2px;
}

/* Page Title */
.page-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.day-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 77, 109, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

.day-card h2 {
    color: var(--dark-pink);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-pink);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.lesson-list {
    list-style: none;
}

.lesson-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px dashed var(--secondary-pink);
    font-size: 1.1rem;
}

.lesson-list li:last-child {
    border-bottom: none;
}

.lesson-list .time {
    font-weight: 600;
    color: var(--primary-pink);
    background: #fff;
    padding: 2px 8px;
    border-radius: 8px;
}

.lesson-list .subject {
    font-weight: 500;
    text-align: right;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-panel {
        padding: 1rem;
    }

    .date-menu {
        gap: 1rem;
    }

    .divider {
        display: none;
    }

    .menu-item {
        min-width: unset;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.5);
        padding: 0.5rem 1rem;
        border-radius: 10px;
    }
}