* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-clinic: #0077B6;
    --blue-light: #00B4D8;
    --green-medical: #00B894;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-text: #6C757D;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 119, 182, 0.15);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
}

.profile-section {
    margin-bottom: 32px;
}

.avatar-container {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--blue-clinic), var(--green-medical));
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-clinic);
    margin-bottom: 8px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--gray-text);
    font-style: italic;
}

.progress-section {
    margin-bottom: 32px;
}

.progress-bar-container {
    background: var(--gray-light);
    border-radius: 12px;
    height: 24px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--blue-clinic), var(--blue-light), var(--green-medical));
    border-radius: 12px;
    width: 0%;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.progress-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--blue-clinic);
}

.countdown-section {
    margin-bottom: 32px;
}

.countdown-label {
    font-size: 1rem;
    color: var(--gray-text);
    margin-bottom: 16px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.time-unit {
    background: linear-gradient(135deg, var(--blue-clinic), var(--blue-light));
    border-radius: 12px;
    padding: 12px 8px;
    min-width: 60px;
}

.time-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.time-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.university-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gray-light);
    border-radius: 16px;
    padding: 16px 24px;
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 2rem;
}

.badge-text {
    text-align: left;
}

.university-name {
    display: block;
    font-weight: 700;
    color: var(--blue-clinic);
    font-size: 1.1rem;
}

.program {
    display: block;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.footer {
    color: var(--gray-text);
    font-size: 0.85rem;
}

.footer p {
    margin-bottom: 4px;
}

.footer-note {
    color: var(--green-medical);
    font-weight: 500;
}

@media (max-width: 480px) {
    .container {
        padding: 24px;
        border-radius: 16px;
    }

    .avatar-container {
        width: 120px;
        height: 120px;
    }

    .title {
        font-size: 2rem;
    }

    .time-unit {
        min-width: 50px;
        padding: 10px 6px;
    }

    .time-value {
        font-size: 1.2rem;
    }

    .countdown {
        gap: 8px;
    }
}
