:root {
    --main-pink: #FF9EB5;
    --soft-purple: #D4ADFF;
    --bg-color: #fff5f9;
    --text-dark: #5A5A5A;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: '루원', 'Luwon', sans-serif;
    background: linear-gradient(45deg, #fff5f9, #ffeef4);
    color: var(--text-dark);
    min-height: 100vh;
    padding-bottom: 50px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    position: relative;
    animation: fadeInContainer 1.2s cubic-bezier(0.4,0,0.2,1);
}
@keyframes fadeInContainer {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.profile-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-top: 80px;
}
.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 5px solid white;
    margin-top: -70px;
    box-shadow: 0 15px 30px rgba(255, 158, 181, 0.25), 0 2px 8px #d4adff33;
    object-fit: cover;
    background: white;
    position: relative;
    z-index: 2;
    pointer-events: none;
    user-select: none;
    transition: box-shadow 0.3s, transform 0.3s;
}
.title-section {
    margin-top: 30px;
    padding-bottom: 30px;
}
.title {
    font-size: 2.4em;
    color: var(--text-dark);
    margin: 20px 0;
    position: relative;
    display: inline-block;
    padding: 0 30px;
}
.title::before,
.title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--main-pink), var(--soft-purple));
}
.title::before {
    left: -60px;
}
.title::after {
    right: -60px;
}
.live-link {
    display: block;
    text-align: center;
    margin: 20px auto;
    padding: 12px 25px;
    background: linear-gradient(45deg, #FF69B4, #FF1493);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    width: fit-content;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 4px 16px #ff69b44d;
    font-size: 1.15em;
    letter-spacing: 0.02em;
}
.live-link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px #ff69b47a;
    background: linear-gradient(45deg, #FF1493, #FF69B4);
}
.schedule-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}
.day-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(212, 173, 255, 0.13), 0 2px 8px rgba(255, 158, 181, 0.08);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInCard 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
    animation-delay: 0.2s;
    background: linear-gradient(135deg, #fff5f9 80%, #ffeef4 100%);
}
@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.day-card:nth-child(2) { animation-delay: 0.3s; }
.day-card:nth-child(3) { animation-delay: 0.4s; }
.day-card:nth-child(4) { animation-delay: 0.5s; }
.day-card:nth-child(5) { animation-delay: 0.6s; }
.day-card:nth-child(6) { animation-delay: 0.7s; }
.day-card:nth-child(7) { animation-delay: 0.8s; }
.day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main-pink), var(--soft-purple));
}
.day-card:hover {
    transform: translateY(-5px);
}
.day-header {
    font-size: 1.4em;
    color: var(--main-pink);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffebf0;
}
.day-header i {
    font-size: 1.2em;
    width: 30px;
    text-align: center;
    color: var(--soft-purple);
}
.schedule-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff9fb;
    border-radius: 12px;
    position: relative;
    transition: box-shadow 0.3s, background 0.3s;
}
.schedule-item:hover {
    background: #ffeef4;
    box-shadow: 0 2px 12px #ffb6c1a1;
}
.time-badge {
    background: linear-gradient(45deg, var(--main-pink), var(--soft-purple));
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9em;
    min-width: 100px;
    text-align: center;
    flex-shrink: 0;
}
.schedule-content {
    font-size: 0.95em;
    line-height: 1.6;
    padding-right: 10px;
}
.live-indicator {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(90deg, #ff4757 60%, #ff6b81 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    animation: blinkLive 1s steps(2, start) infinite;
    box-shadow: 0 0 8px #ff4757a0;
}
@keyframes blinkLive {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.social-separator {
    max-width: 300px;
    height: 2px;
    margin: 40px auto 30px;
    background: linear-gradient(90deg, var(--main-pink), var(--soft-purple));
    position: relative;
    border-radius: 2px;
    opacity: 0.3;
    box-shadow: 0 2px 8px rgba(255, 158, 181, 0.1);
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}
.social-icons a {
    font-size: 2.5em;
    color: var(--text-dark);
    transition: transform 0.3s, color 0.3s, text-shadow 0.3s;
    text-shadow: 0 2px 8px #ffb6c133;
}
.social-icons a:hover {
    transform: translateY(-5px);
    text-shadow: 0 4px 16px #d4adff77;
    filter: brightness(1.2);
}
.discord:hover {
    color: #5865F2;
}
.chzzk:hover {
    color: #00FF7F;
}
@media (max-width: 768px) {
    .schedule-container {
        grid-template-columns: 1fr;
    }
    .title {
        font-size: 2em;
        padding: 0 20px;
    }
    .title::before,
    .title::after {
        width: 30px;
    }
    .title::before {
        left: -40px;
    }
    .title::after {
        right: -40px;
    }
    .day-card {
        padding: 15px;
        border-radius: 15px;
    }
    .day-header {
        font-size: 1.2em;
        margin-bottom: 15px;
    }
    .schedule-item {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }
    .time-badge {
        min-width: auto;
        width: 100%;
        padding: 6px 10px;
        font-size: 0.8em;
    }
    .schedule-content {
        font-size: 0.9em;
    }
    .live-indicator {
        top: 5px;
        right: 5px;
        font-size: 0.7em;
        padding: 4px 8px;
    }
    .social-separator {
        margin: 30px auto 20px;
        max-width: 200px;
    }
    .social-icons {
        gap: 20px;
        margin-top: 30px;
    }
    .social-icons a {
        font-size: 2em;
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .schedule-container {
        grid-template-columns: repeat(2, 1fr);
    }
}