:root {
    --primary-color: #9333EA;
    --secondary-color: #4B0082;
    --text-color: #FFFFFF;
    --background-color: #1E0B34;
    --highlight-color: #8B5CF6;
}

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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(180deg, var(--background-color) 0%, #0D0118 100%);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    padding: 10px;
    text-align: center;
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.5);
}

.header h1 span {
    background: linear-gradient(90deg, var(--highlight-color), var(--primary-color));
    padding: 5px 15px;
    border-radius: 4px;
    display: inline-block;
    margin: 5px 0;
}

.viewers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
}

.viewers i {
    color: var(--primary-color);
}

.watching-now {
    color: #888;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 30px;
    background-color: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    text-align: center;
    color: white;
}

.play-button i {
    font-size: 48px;
    margin-bottom: 10px;
    display: block;
    color: var(--highlight-color);
}

.play-button span {
    font-size: 18px;
    display: block;
}

#player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

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

.cta-button {
    background: var(--highlight-color);
    color: var(--text-color);
    border: none;
    padding: 20px 40px;
    font-size: 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.social-proof {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    margin-top: 20px;
    animation: fadeInOut 5s infinite;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.2rem;
    }

    .viewers {
        font-size: 1rem;
    }
}
