* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    min-height: 100vh;
    background: radial-gradient(circle at top, #0b1c2d, #000 70%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
}
.light-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, #3a7bd5, transparent);
    box-shadow: 0 0 25px #3a7bd5;
}
.theater {
    max-width: 900px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}
.intro h1 {
font-family: 'Iceland', sans-serif;
font-size: 45px;
margin-bottom: 18px;
color: #eaf0ff;
text-shadow: 
0 0 12px rgba(58, 123, 213, 0.6),
0 0 30px rgba(58, 123, 213, 0.4);
}
.emoji {
    font-size: 22px;
    margin-left: 6px;
}
.subtitle {
    font-family: 'Iceland', sans-serif;
    letter-spacing: 4px;
    color: #f6d88c;
    margin-bottom: 28px;
    font-size: 15px;
text-transform: uppercase;
text-shadow: 
0 0 10px rgba(246, 216, 140, 0.8),
0 0 25px rgba(246, 216, 140, 0.5),
}
.description {
    font-family: 'Iceland', sans-serif;
    max-width: 520px;
    color: #d6dbf2;
    font-size: 15px;
    line-height: 1.9;
    margin: 0 auto 45px;
    text-shadow: 0 0 8px rgba(100, 160, 225, 0.3);
}
.video-frame {
    position: relative;
    padding: 12px;
    border-radius: 18px;
    background: linear-gradient(
        180deg,
        rgba(120,190,255,0.9),
        rgba(0,90,180,0.6)
    );
    box-shadow:
        0 0 25px rgba(120,190,255,0.9),
        0 0 60px rgba(0,120,255,0.8),
        0 0 120px rgba(0,80,200,0.6);
}
.video-frame iframe {
    width: 360px;
    height: 210px;
    border-radius: 12px;
    border: none;
    display: block;
    background: #000;
}
.video-frame::before,
.video-frame::after {
    content: '';
    position: absolute;
    left: -10px;
    right: -10px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #7cc6ff,
        transparent
    );
    box-shadow: 0 0 20px #7cc6ff;
}
.video-frame::before {
    top: -12px;
}
.video-frame::after {
    bottom: -12px;
}
.screen {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.btn {
    padding: 12px 28px;
    font-size: 11px;
    letter-spacing: 1.4px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    border-radius: 6px;
   background: transparent;
   transition: all 0.3s ease;
}
.btn.play {
    color: #fff;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    box-shadow: 0 8px 22px rgba(42,82,152,0.7);
}
.btn.play:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(42, 82, 152, 0.8);
}
.btn.rate {
    color: #f1f4ff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(225, 255, 255, 0.03);
    box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}
.btn.rate:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
}


