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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f9679d;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 680px;
    width: 100%;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Profile */
.profile {
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #9b59b6;
    margin-bottom: 1rem;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.profile-bio {
    font-size: 1rem;
    color: #fff;
}

.about {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.75rem;
    max-width: 420px;
    line-height: 1.5;
}

/* Live banner */
.live-banner {
    background: #e74c3c;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    width: 100%;
    text-align: center;
    animation: pulse-glow 2s ease-in-out infinite;
}

.live-banner a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(231, 76, 60, 0.4); }
    50% { box-shadow: 0 0 20px rgba(231, 76, 60, 0.8); }
}

/* Video sections */
.video-section {
    width: 100%;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.75rem;
    text-align: center;
}

.video-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-embed {
    width: 100%;
    margin-bottom: 0;
}

.video-embed iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
}

/* Link buttons */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.link-button:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.link-button:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 1rem;
    color: #666;
    font-size: 0.85rem;
}
