/* Yorzian Live Page Styles */

.yorzian-page {
    background: #0a0e27;
    color: #e2e8f0;
}

/* Hero Section */
.yorzian-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 3px solid #8b5cf6;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-avatar {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.main-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid #8b5cf6;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.6);
}

.avatar-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.hero-text {
    text-align: center;
}

.yorzian-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Twitch Section */
.twitch-section {
    padding: 60px 20px;
    background: #0f172a;
}

.twitch-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.twitch-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #f1f5f9;
}

.twitch-container {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

#twitch-player {
    width: 100%;
    height: 600px;
}

.offline-message {
    padding: 80px 20px;
    text-align: center;
}

.offline-content {
    max-width: 500px;
    margin: 0 auto;
}

.offline-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
}

.offline-message h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #f1f5f9;
}

.offline-message p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 30px;
}

.twitch-cta {
    text-align: center;
}

.btn-twitch {
    background: #9146FF;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(145, 70, 255, 0.3);
}

.btn-twitch:hover {
    background: #7c2ed6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(145, 70, 255, 0.4);
}

/* Schedule Section */
.schedule-section {
    padding: 60px 20px;
    background: #1e293b;
}

.schedule-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #f1f5f9;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.schedule-item {
    background: #0f172a;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #8b5cf6;
    transition: transform 0.3s ease;
}

.schedule-item:hover {
    transform: translateX(5px);
}

.schedule-day {
    font-size: 1.25rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 10px;
}

.schedule-time {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 10px;
}

.schedule-topic {
    font-size: 1rem;
    color: #94a3b8;
}

.schedule-placeholder {
    text-align: center;
    padding: 40px;
    background: #0f172a;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #94a3b8;
}

/* Replays Section */
.replays-section {
    padding: 60px 20px;
    background: #0f172a;
}

.replays-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.replays-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #f1f5f9;
}

.replays-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.replay-card {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.replay-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.replay-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.replay-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.replay-card:hover .replay-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.replay-card:hover .play-overlay {
    opacity: 1;
}

.replay-info {
    padding: 20px;
}

.replay-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #f1f5f9;
}

.replay-info h3 a {
    color: #f1f5f9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.replay-info h3 a:hover {
    color: #8b5cf6;
}

.replay-duration {
    display: inline-block;
    background: #0f172a;
    color: #94a3b8;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.875rem;
}

.replays-cta {
    text-align: center;
}

.btn-youtube {
    background: #FF0000;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.replays-placeholder {
    text-align: center;
    padding: 40px;
    background: #1e293b;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #94a3b8;
}

/* Community Section */
.community-section {
    padding: 60px 20px;
    background: #1e293b;
    border-top: 1px solid rgba(88, 101, 242, 0.1);
}

.community-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.community-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.08) 0%, rgba(114, 137, 218, 0.08) 100%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(88, 101, 242, 0.15);
}

.community-text {
    flex: 1;
}

.community-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.community-section p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.btn-discord {
    background: #5865F2;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

/* Cross-Sell Section */
.cross-sell-section {
    padding: 80px 20px;
    background: #0f172a;
    text-align: center;
}

.cross-sell-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.cross-sell-content {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.cross-sell-content h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: #f1f5f9;
    font-weight: 700;
}

.cross-sell-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cross-sell-section .btn-primary {
    background: #3B82F6;
    color: white;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.cross-sell-section .btn-primary:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        gap: 30px;
    }

    .yorzian-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .avatar-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    #twitch-player {
        height: 400px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .replays-grid {
        grid-template-columns: 1fr;
    }

    .community-content {
        flex-direction: column;
        text-align: center;
    }

    .cross-sell-content h2 {
        font-size: 1.75rem;
    }

    .cross-sell-content p {
        font-size: 1rem;
    }
}
