:root {
    --primary: #ffffff;
    --primary-glow: rgba(255, 255, 255, 0.2);
    --secondary: #a1a1aa;
    --accent: #ffffff;
    --bg-dark: #000000;
    --text-light: #ffffff;
    --text-muted: #a1a1aa;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
}

a {
    text-decoration: none !important;
    color: inherit;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.glass-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, #18181b 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, #09090b 0%, transparent 40%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

nav {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.current-time {
    font-weight: 600;
    color: var(--text-light);
}

@media (max-width: 576px) {
    .current-time {
        font-size: 0.8rem;
    }
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo .sbs {
    color: var(--text-light);
}

.logo .live {
    color: var(--primary);
    background: linear-gradient(135deg, #ffffff, #71717a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-light);
}

.btn-live {
    background: #ffffff;
    color: #000000 !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: slideInLeft 1s ease-out 0.2s both;
    border: 1px solid var(--glass-border);
}

.live-indicator .dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.hero h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ffffff;
    border: none;
    color: #000000;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: var(--glass);
}

.hero-visual {
    perspective: 1000px;
    animation: float 6s ease-in-out infinite;
}

.tv-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.tv-frame {
    background: #18181b;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 255, 255, 0.05);
    transform: rotateY(-10deg);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.tv-frame::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.03),
            transparent);
    transform: rotate(45deg);
    animation: glimmer 4s infinite;
}

.tv-frame:hover {
    transform: rotateY(0deg) scale(1.05);
    border-color: #ffffff;
}

.tv-screen {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-screen img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.8s ease;
    filter: grayscale(100%);
    /* B&W Image */
}

.tv-frame:hover .tv-screen img {
    transform: scale(1.1);
    filter: grayscale(0%);
    /* Highlight on hover */
}

/* Schedule Section */
.schedule-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.schedule-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.schedule-card:hover {
    transform: translateY(-10px);
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.schedule-card.active {
    border-color: #ffffff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.schedule-card.active::after {
    content: 'CURRENTLY PLAYING';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 0.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.slot-time {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.slot-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.slot-inner {
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
}

.program-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.program-item:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 10px;
    padding-right: 10px;
}

.program-time {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.program-name {
    font-weight: 500;
}

/* Tips Section */
.tips-section {
    padding: 6rem 0;
}

.tips-card {
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.5), rgba(9, 9, 11, 0.8));
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 4rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.tips-card h2 {
    font-size: 2.2rem;
}


.tip-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: var(--glass);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.tip-icon {
    font-size: 2rem;
    filter: grayscale(100%);
}

/* Footer */
footer {
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-info p {
    margin-top: 1rem;
    color: var(--text-muted);
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-5px);
    border-color: #ffffff;
}

/* Subscription Section */
.subscription-section {
    padding: 6rem 0;
}


.sub-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.4s ease;
    text-align: center;
}

.sub-card:hover {
    transform: translateY(-10px);
    border-color: #ffffff;
}

.sub-card.featured {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.3);
    position: relative;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.05);
}

.sub-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: #ffffff;
    color: #000000;
    padding: 0.3rem 1rem;
    border-radius: 50px;
}

.sub-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.sub-header .price {
    font-size: 3rem;
    font-weight: 800;
}

.sub-header .price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.sub-features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.sub-features li {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sub-features li::before {
    content: '✓';
    color: #ffffff;
    font-weight: 800;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotateY(-10deg);
    }

    50% {
        transform: translateY(-20px) rotateY(-5deg);
    }
}

@keyframes glimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        margin: 0 auto 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .tv-frame {
        transform: rotateY(0);
    }

    .hero-visual {
        animation: float-mobile 6s ease-in-out infinite;
    }

}

@keyframes float-mobile {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}