/* ============================================
   STUDIOBET THEME - main.css (moban-174)
   Studio Broadcast Style with Lighting Effects
   Colors: #0D0D0D, #BDBDBD, #D32F2F
   Fonts: Barlow Condensed, Roboto
   ============================================ */

/* === KEYFRAMES === */
@keyframes studioLight {
    0% { opacity: 0.3; transform: translateY(0) scale(1); }
    25% { opacity: 0.7; transform: translateY(-10px) scale(1.05); }
    50% { opacity: 1; transform: translateY(-5px) scale(1.1); }
    75% { opacity: 0.6; transform: translateY(-15px) scale(1.03); }
    100% { opacity: 0.3; transform: translateY(0) scale(1); }
}

@keyframes broadcastPulse {
    0% { transform: scale(1); opacity: 0.8; box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4); }
    50% { transform: scale(1.05); opacity: 1; box-shadow: 0 0 20px 10px rgba(211, 47, 47, 0.2); }
    100% { transform: scale(1); opacity: 0.8; box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

@keyframes cameraOn {
    0% { opacity: 0; transform: scale(0.8) rotate(-10deg); }
    30% { opacity: 0.5; transform: scale(0.95) rotate(-3deg); }
    60% { opacity: 0.8; transform: scale(1.02) rotate(1deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes liveSignal {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes studioBeamSweep {
    0% { transform: rotate(-30deg) translateY(0); opacity: 0.3; }
    50% { transform: rotate(30deg) translateY(-20px); opacity: 0.8; }
    100% { transform: rotate(-30deg) translateY(0); opacity: 0.3; }
}

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

@keyframes floatUp {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-30px); opacity: 0; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(211, 47, 47, 0.3); }
    50% { box-shadow: 0 0 20px rgba(211, 47, 47, 0.6), 0 0 40px rgba(211, 47, 47, 0.2); }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes marqueeScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0D0D0D;
    color: #BDBDBD;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: #D32F2F;
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(211, 47, 47, 0.5);
}

img {
    max-width: 100%;
    height: auto;
}

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

.red-text {
    color: #D32F2F;
    text-shadow: 0 0 10px rgba(211, 47, 47, 0.3);
}

.silver-text {
    color: #BDBDBD;
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.announcement-modal.active {
    display: flex;
    animation: cameraOn 0.5s ease forwards;
}

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0D0D0D 100%);
    border: 2px solid #D32F2F;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    z-index: 10001;
    box-shadow: 0 0 40px rgba(211, 47, 47, 0.3), inset 0 0 20px rgba(211, 47, 47, 0.05);
}

.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #BDBDBD;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.announcement-close:hover {
    color: #D32F2F;
    transform: rotate(90deg);
}

.announcement-header-icon {
    text-align: center;
    margin-bottom: 15px;
}

.announcement-header-icon i {
    font-size: 48px;
    color: #D32F2F;
    animation: broadcastPulse 2s ease infinite;
}

.announcement-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(211, 47, 47, 0.05);
    border: 1px solid rgba(211, 47, 47, 0.2);
    border-radius: 8px;
    transition: all 0.3s;
    color: #BDBDBD;
}

.announcement-item:hover {
    background: rgba(211, 47, 47, 0.1);
    border-color: #D32F2F;
    transform: translateX(5px);
    color: #fff;
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
    white-space: nowrap;
}

.announcement-badge.hot {
    background: #D32F2F;
    color: #fff;
}

.announcement-badge.new {
    background: #BDBDBD;
    color: #0D0D0D;
}

.announcement-badge.info {
    background: transparent;
    border: 1px solid #D32F2F;
    color: #D32F2F;
}

.announcement-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
}

.announcement-footer {
    text-align: center;
}

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: #D32F2F;
    color: #fff;
    border-radius: 25px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    animation: pulseGlow 2s ease infinite;
}

.announcement-cta:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.4);
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #1a1a1a 0%, #0D0D0D 100%);
    border-bottom: 2px solid #D32F2F;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo img {
    height: 45px;
    width: auto;
    transition: all 0.3s;
}

.logo img:hover {
    filter: brightness(1.2);
}

.header-time {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    color: #BDBDBD;
    letter-spacing: 1px;
    background: rgba(211, 47, 47, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(211, 47, 47, 0.3);
}

.header-btn-group {
    display: flex;
    gap: 10px;
}

.btn-login {
    padding: 8px 20px;
    background: transparent;
    color: #BDBDBD;
    border: 1px solid #BDBDBD;
    border-radius: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #BDBDBD;
    color: #0D0D0D;
    box-shadow: 0 0 15px rgba(189, 189, 189, 0.3);
}

.btn-register {
    padding: 8px 20px;
    background: #D32F2F;
    color: #fff;
    border: 1px solid #D32F2F;
    border-radius: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-register:hover {
    background: #b71c1c;
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.4);
    color: #fff;
}

.btn-demo {
    padding: 8px 20px;
    background: transparent;
    color: #D32F2F;
    border: 1px solid #D32F2F;
    border-radius: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-demo:hover {
    background: rgba(211, 47, 47, 0.1);
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.2);
    color: #D32F2F;
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(13, 13, 13, 0.95);
    border-top: 1px solid rgba(211, 47, 47, 0.2);
    border-bottom: 1px solid rgba(211, 47, 47, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #BDBDBD;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #D32F2F;
    background: rgba(211, 47, 47, 0.05);
    text-shadow: 0 0 10px rgba(211, 47, 47, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #D32F2F;
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #BDBDBD;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #D32F2F, #b71c1c, #D32F2F);
    background-size: 200% 100%;
    animation: liveSignal 4s ease infinite;
    overflow: hidden;
    height: 35px;
    display: flex;
    align-items: center;
}

.notification-content {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
    gap: 50px;
}

.notification-content span {
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* === HERO SECTION === */
.studiobet-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0D0D0D 70%);
    margin-bottom: 40px;
    border-radius: 0 0 20px 20px;
}

.studio-light-beams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.studio-beam {
    position: absolute;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgba(211, 47, 47, 0.6) 0%, transparent 70%);
    animation: studioBeamSweep 6s ease infinite;
}

.beam-1 { left: 10%; animation-delay: 0s; }
.beam-2 { left: 30%; animation-delay: 1.2s; }
.beam-3 { left: 50%; animation-delay: 2.4s; }
.beam-4 { left: 70%; animation-delay: 0.8s; }
.beam-5 { left: 90%; animation-delay: 1.6s; }

.studio-camera-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
    animation: cameraOn 1s ease forwards;
}

.camera-lens {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, #D32F2F 30%, #0D0D0D 70%);
    border: 2px solid #BDBDBD;
    animation: broadcastPulse 2s ease infinite;
}

.camera-rec {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D32F2F;
    animation: signalBlink 1.5s ease infinite;
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.5);
}

.live-signal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(211, 47, 47, 0.03) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: liveSignal 8s ease infinite;
    pointer-events: none;
    z-index: 2;
}

.hero-inner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.hero-main-title {
    margin-bottom: 25px;
}

.hero-brand {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(211, 47, 47, 0.5), 0 0 60px rgba(211, 47, 47, 0.2);
    animation: studioLight 3s ease infinite;
}

.hero-divider-line {
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D32F2F, transparent);
    margin: 15px auto;
}

.hero-tagline {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #BDBDBD;
    letter-spacing: 5px;
}

.hero-description {
    font-size: 15px;
    color: #BDBDBD;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #D32F2F;
    text-shadow: 0 0 10px rgba(211, 47, 47, 0.3);
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: #BDBDBD;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-red-primary {
    display: inline-block;
    padding: 14px 35px;
    background: #D32F2F;
    color: #fff;
    border-radius: 25px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid #D32F2F;
}

.btn-red-primary:hover {
    background: #b71c1c;
    box-shadow: 0 5px 25px rgba(211, 47, 47, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline-silver {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: #BDBDBD;
    border-radius: 25px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid #BDBDBD;
}

.btn-outline-silver:hover {
    background: #BDBDBD;
    color: #0D0D0D;
    box-shadow: 0 5px 25px rgba(189, 189, 189, 0.3);
    transform: translateY(-2px);
}
