/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2563eb;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 0.75rem;
    object-fit: contain;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #2563eb;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-video {
    position: relative;
}

.video-player-wrapper {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    position: relative;
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.hero-text h1 {
    color: #ffffff;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-subtitle {
    color: #60a5fa;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-description {
    color: #cbd5e1;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.tv-mockup {
    position: relative;
    width: 300px;
    height: 200px;
    background: #000;
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.tv-mockup i {
    font-size: 4rem;
    color: #333;
    position: absolute;
    top: 20px;
    left: 20px;
}

.screen-content {
    text-align: center;
    color: #fff;
}

.screen-content i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
    display: block;
}

.screen-content span {
    font-size: 1.2rem;
    font-weight: 600;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave path {
    fill: #fff;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-text h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

.about-text p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.founder-card {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.founder-image {
    flex-shrink: 0;
}

.founder-image i {
    font-size: 4rem;
    color: #3b82f6;
}

.founder-info h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.founder-title {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.founder-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.stat-item i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1.5rem;
}

.stat-item h3 {
    color: #1e293b;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-item p {
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Live TV Section */
.live-tv {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #fff;
    position: relative;
}

.live-tv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.live-tv .section-header h2 {
    color: #ffffff;
    font-weight: 800;
}

.live-tv .section-header p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.live-player-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.player-main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.player-wrapper {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    position: relative;
}

.player-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.live-indicator {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.channel-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.channel-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.channel-details h4 {
    color: #fff;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.channel-details span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.player-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.video-container {
    position: relative;
    background: #000;
}

.live-player {
    width: 100%;
    height: 450px;
    background: #000;
    border: none;
    outline: none;
    display: block;
}

.player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

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

.play-button {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.play-button:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 20px 45px rgba(255, 215, 0, 0.5);
}

.play-icon i {
    font-size: 2.5rem;
    color: #333;
    margin-left: 4px;
}

.play-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.loading-spinner {
    text-align: center;
    color: #FFD700;
}

.spinner-ring {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 215, 0, 0.3);
    border-top: 4px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 1rem;
    display: none;
    z-index: 5;
}

.player-wrapper:hover .custom-controls {
    display: block;
}

/* Progress bar removed - treating as live stream */
.progress-bar {
    display: none !important;
}

.progress-fill {
    display: none !important;
}

.control-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.volume-slider {
    flex: 1;
    max-width: 100px;
}

.volume-slider input {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.volume-slider input::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: #FFD700;
    border-radius: 50%;
    cursor: pointer;
}

.time-display {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.separator {
    display: none;
}

/* Fullscreen mode styles - ensure same behavior */
/* Hide native video controls in fullscreen */
video:fullscreen::-webkit-media-controls,
video:-webkit-full-screen::-webkit-media-controls,
video:-moz-full-screen::-webkit-media-controls,
video:-ms-fullscreen::-webkit-media-controls {
    display: none !important;
}

video:fullscreen::-webkit-media-controls-panel,
video:-webkit-full-screen::-webkit-media-controls-panel,
video:-moz-full-screen::-webkit-media-controls-panel,
video:-ms-fullscreen::-webkit-media-controls-panel {
    display: none !important;
}

video:fullscreen::-webkit-media-controls-play-button,
video:-webkit-full-screen::-webkit-media-controls-play-button,
video:-moz-full-screen::-webkit-media-controls-play-button,
video:-ms-fullscreen::-webkit-media-controls-play-button {
    display: none !important;
}

video:fullscreen::-webkit-media-controls-timeline,
video:-webkit-full-screen::-webkit-media-controls-timeline,
video:-moz-full-screen::-webkit-media-controls-timeline,
video:-ms-fullscreen::-webkit-media-controls-timeline {
    display: none !important;
}

video:fullscreen::-webkit-media-controls-current-time-display,
video:-webkit-full-screen::-webkit-media-controls-current-time-display,
video:-moz-full-screen::-webkit-media-controls-current-time-display,
video:-ms-fullscreen::-webkit-media-controls-current-time-display {
    display: none !important;
}

video:fullscreen::-webkit-media-controls-time-remaining-display,
video:-webkit-full-screen::-webkit-media-controls-time-remaining-display,
video:-moz-full-screen::-webkit-media-controls-time-remaining-display,
video:-ms-fullscreen::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

video:fullscreen::-webkit-media-controls-mute-button,
video:-webkit-full-screen::-webkit-media-controls-mute-button,
video:-moz-full-screen::-webkit-media-controls-mute-button,
video:-ms-fullscreen::-webkit-media-controls-mute-button {
    display: none !important;
}

video:fullscreen::-webkit-media-controls-volume-slider,
video:-webkit-full-screen::-webkit-media-controls-volume-slider,
video:-moz-full-screen::-webkit-media-controls-volume-slider,
video:-ms-fullscreen::-webkit-media-controls-volume-slider {
    display: none !important;
}

/* Hide custom controls progress bar and time in fullscreen */
:fullscreen .custom-controls .progress-bar,
:-webkit-full-screen .custom-controls .progress-bar,
:-moz-full-screen .custom-controls .progress-bar,
:-ms-fullscreen .custom-controls .progress-bar {
    display: none !important;
}

:fullscreen .custom-controls .progress-fill,
:-webkit-full-screen .custom-controls .progress-fill,
:-moz-full-screen .custom-controls .progress-fill,
:-ms-fullscreen .custom-controls .progress-fill {
    display: none !important;
}

:fullscreen .custom-controls .time-display .separator,
:-webkit-full-screen .custom-controls .time-display .separator,
:-moz-full-screen .custom-controls .time-display .separator,
:-ms-fullscreen .custom-controls .time-display .separator {
    display: none !important;
}

:fullscreen .custom-controls .time-display #currentTime,
:-webkit-full-screen .custom-controls .time-display #currentTime,
:-moz-full-screen .custom-controls .time-display #currentTime,
:-ms-fullscreen .custom-controls .time-display #currentTime {
    display: none !important;
}

/* Ensure video fills fullscreen */
video:fullscreen,
video:-webkit-full-screen,
video:-moz-full-screen,
video:-ms-fullscreen {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    background: #000;
}

.player-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.program-info {
    margin-bottom: 2rem;
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.live-badge {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(231, 76, 60, 0.5); }
    100% { box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3); }
}

.live-dot-small {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.program-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.program-time i {
    color: #FFD700;
}

.current-program {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.current-program::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #8B4513);
}

.current-program:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.program-category {
    color: #FFD700;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.program-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.program-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.program-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-item i {
    color: #FFD700;
    font-size: 0.9rem;
    width: 16px;
}

/* Status Cards Below Player */
.stream-stats-below {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.stream-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: #333;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.stat-value.live {
    color: #e74c3c;
    font-weight: 700;
    font-size: 0.95rem;
}

.social-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-actions .action-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 16px;
    background: linear-gradient(45deg, #8B4513, #FFD700);
    border: none;
    color: #333;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-actions .action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.social-actions .action-btn i {
    font-size: 1rem;
}

/* Platforms Section */
.platforms {
    padding: 8rem 0;
    background: #f8fafc;
}

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

.platform-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.platform-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.platform-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.platform-card p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.platform-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* Videos Section */
.videos {
    padding: 8rem 0;
    background: #ffffff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.video-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.8), rgba(29, 78, 216, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-thumbnail::before {
    opacity: 1;
}

.video-thumbnail i {
    font-size: 4rem;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.video-card:hover .video-thumbnail i {
    transform: scale(1.2);
}

.video-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
}

.video-duration {
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.video-info {
    padding: 2rem;
}

.video-info h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 700;
    font-size: 1.2rem;
}

.video-info p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.video-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.video-meta i {
    color: #3b82f6;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.contact-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    width: 30px;
}

.contact-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-item p {
    color: #64748b;
    font-weight: 500;
}

.social-links h4 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* Registration Section */
.registration {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff8ef 0%, #fff 100%);
}

.registration-content {
    display: flex;
    justify-content: center;
}

.registration-card {
    width: 100%;
    max-width: 960px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: 40px;
    position: relative;
}

.registration-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #8B4513, #FFD700);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

.registration-card-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #8B4513;
}

.registration-card-header p {
    color: #555;
    margin-bottom: 24px;
}

.registration-form {
    position: relative;
    z-index: 1;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid rgba(139, 69, 19, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    font-family: inherit;
    transition: border 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
    outline: none;
}

.mobile-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid rgba(139, 69, 19, 0.2);
    border-radius: 12px;
    background: #fff;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.mobile-input-wrapper:focus-within {
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.country-code {
    padding: 12px 12px 12px 16px;
    font-weight: 600;
    color: #8B4513;
    font-size: 15px;
    border-right: 1px solid rgba(139, 69, 19, 0.2);
    white-space: nowrap;
    user-select: none;
}

.mobile-input-wrapper input {
    border: none;
    border-radius: 0;
    padding: 12px 16px;
    flex: 1;
    box-shadow: none;
}

.mobile-input-wrapper input:focus {
    border: none;
    box-shadow: none;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-declaration {
    margin-top: 32px;
    margin-bottom: 24px;
}

.declaration-box {
    background: #f8f9fa;
    border: 2px solid rgba(139, 69, 19, 0.2);
    border-radius: 12px;
    padding: 24px;
}

.declaration-box h4 {
    color: #8B4513;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.declaration-box > p {
    color: #333;
    font-weight: 600;
    margin-bottom: 12px;
}

.declaration-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.declaration-box ul li {
    color: #555;
    padding: 8px 0 8px 24px;
    position: relative;
    line-height: 1.6;
}

.declaration-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8B4513;
    font-weight: bold;
    font-size: 16px;
}

.declaration-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(139, 69, 19, 0.2);
}

.declaration-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #8B4513;
    flex-shrink: 0;
}

.declaration-checkbox label {
    color: #333;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.5;
    margin: 0;
}

.declaration-checkbox input[type="checkbox"]:checked + label {
    color: #8B4513;
}

.form-actions {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-actions .btn {
    padding: 14px 32px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    background: linear-gradient(135deg, #8B4513, #FFD700);
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.25);
}

.form-note {
    margin-top: 12px;
    font-size: 14px;
    color: #666;
    text-align: right;
}

.alert {
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: rgba(46, 204, 113, 0.12);
    color: #1d7a46;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.alert-error {
    background: rgba(231, 76, 60, 0.12);
    color: #a01f0f;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.alert-error ul {
    margin: 8px 0 0 18px;
    padding: 0;
}

@media (max-width: 768px) {
    .registration-card {
        padding: 24px;
    }

    .form-actions {
        justify-content: center;
    }

    .form-note {
        text-align: center;
    }
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo .logo-img {
    height: 30px;
    width: auto;
    margin-right: 0.5rem;
    object-fit: contain;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section p i {
    margin-right: 0.5rem;
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .founder-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .player-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .live-player {
        height: 300px;
    }

    .player-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .channel-info {
        justify-content: center;
    }

    .stream-stats-below {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stream-stats {
        grid-template-columns: 1fr;
    }

    .program-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .program-meta {
        justify-content: center;
    }

    .current-program {
        padding: 1.5rem;
    }

    .program-title {
        font-size: 1.2rem;
    }

    .social-actions {
        flex-direction: column;
    }

    .social-actions .action-btn {
        min-width: auto;
    }

    .stream-stats-below {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

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

    .section-header h2 {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .platform-card {
        padding: 2rem 1.5rem;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-image,
.section-header,
.about-content,
.platforms-grid,
.video-grid,
.contact-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #8B4513, #FFD700);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #654321, #E6C200);
}
