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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    color: #1a2a4f;
}

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

/* Header - FIXED HEIGHT (DO NOT CHANGE) */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0;
    height: 80px;
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    width: 300px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu li a {
    text-decoration: none;
    color: #1a2a4f;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #2c3e6d;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-signin, .btn-signup {
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-signin {
    background: transparent;
    border: 2px solid #1a2a4f;
    color: #1a2a4f;
}

.btn-signin:hover {
    background: #1a2a4f;
    color: white;
}

.btn-signup {
    background: #1a2a4f;
    border: none;
    color: white;
}

.btn-signup:hover {
    background: #2c3e6d;
    transform: translateY(-2px);
}

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

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

/* Hero Banner - No overlay, no text */
.hero {
    height: 60vh;
    background: url('/media/bg-web.jpg') center/cover no-repeat;
    margin-top: 80px;
}

/* Live Stream Section */
.live-stream {
    padding: 60px 0;
    background: #f8f9fa;
}

.live-stream-container {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.live-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ff0000;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    z-index: 1;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.now-playing {
    background: linear-gradient(90deg, #1a2a4f, #2c3e6d);
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.engagement-section {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stats {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.action-btn {
    background: linear-gradient(135deg, #1a2a4f 0%, #2c3e6d 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.action-btn:hover {
    transform: translateY(-2px);
}

.comments-section {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comments-section h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.comment-form button {
    background: #1a2a4f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.comment-form button:hover {
    background: #2c3e6d;
}

.comments-list {
    max-height: 400px;
    overflow-y: auto;
    margin-top: 20px;
}

.comment-item {
    background: #f8f9fa;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    border-left: 4px solid #1a2a4f;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.comment-name {
    font-weight: bold;
    color: #1a2a4f;
}

.comment-time {
    color: #999;
}

.comment-text {
    color: #555;
    line-height: 1.4;
}

/* Section Styles */
section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a2a4f;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Video Cards */
.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.video-card iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

/* 2 Columns Grid for Mobile */
.videos-grid-2cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Swiper Sliders */
.swiper {
    padding: 20px 40px !important;
}

.swiper-slide {
    height: auto !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #1a2a4f !important;
    background: white;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #1a2a4f;
    color: white !important;
}

/* Get Involved Section */
.get-involved {
    background: linear-gradient(135deg, #1a2a4f 0%, #2c3e6d 100%);
    color: white;
}

.get-involved h2,
.get-involved .section-subtitle {
    color: white;
}

.involved-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.involved-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.involved-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.involved-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.involved-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.involved-card p {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.btn-involved {
    background: white;
    color: #1a2a4f;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 15px;
    transition: transform 0.3s;
}

.btn-involved:hover {
    transform: scale(1.05);
}

/* ============================================
   SOCIAL CONNECT SECTION - COLORFUL VERSION
   ============================================ */
.connect {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
}

.connect h2,
.connect .section-subtitle {
    color: white;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* WhatsApp Card */
.social-card.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-card.whatsapp::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.social-card.whatsapp:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.social-card.whatsapp:hover::before {
    opacity: 1;
}

.social-card.whatsapp .social-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: #25D366;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-card.whatsapp h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.social-card.whatsapp p {
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-card.whatsapp .btn-social {
    display: inline-block;
    background: white;
    color: #25D366;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
}

.social-card.whatsapp .btn-social:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Facebook Card */
.social-card.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0E5D9E 100%);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-card.facebook::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.social-card.facebook:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.social-card.facebook:hover::before {
    opacity: 1;
}

.social-card.facebook .social-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: #1877F2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-card.facebook h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.social-card.facebook p {
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-card.facebook .btn-social {
    display: inline-block;
    background: white;
    color: #1877F2;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
}

.social-card.facebook .btn-social:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* YouTube Card */
.social-card.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-card.youtube::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.social-card.youtube:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.social-card.youtube:hover::before {
    opacity: 1;
}

.social-card.youtube .social-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: #FF0000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-card.youtube h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.social-card.youtube p {
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-card.youtube .btn-social {
    display: inline-block;
    background: white;
    color: #FF0000;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
}

.social-card.youtube .btn-social:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: #0a1428;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-info p {
    line-height: 1.6;
    color: #ccc;
}

.footer-logo {
    width: 250px;
    height: auto;
    margin-bottom: 15px;
}

.footer-links h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

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

.footer-links ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .logo img {
        width: 220px;
    }
}

@media (max-width: 992px) {
    nav {
        display: none;
    }
    
    nav.active {
        display: block;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav-menu li a {
        display: block;
        padding: 10px;
        font-size: 1.1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .auth-buttons {
        gap: 8px;
    }
    
    .btn-signin, .btn-signup {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    header {
        height: 70px;
    }
    
    .logo img {
        width: 180px;
        max-height: 50px;
    }
    
    .hero {
        margin-top: 70px;
        height: 40vh;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
        padding: 10px 20px;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    /* 2 columns on mobile */
    .videos-grid-2cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .swiper {
        padding: 10px 30px !important;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px !important;
    }
    
    .involved-card {
        padding: 30px 20px;
    }
    
    .involved-card h3 {
        font-size: 1.1rem;
    }
    
    .social-card {
        padding: 25px 20px;
    }
    
    .social-card .social-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .social-card h3 {
        font-size: 1.4rem;
    }
    
    .footer-logo {
        width: 180px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .live-stream {
        padding: 40px 0;
    }
    
    .now-playing {
        font-size: 0.9rem;
        padding: 8px;
    }
    
    .comments-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .auth-buttons {
        gap: 5px;
    }
    
    .btn-signin, .btn-signup {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    .logo img {
        width: 140px;
    }
    
    .videos-grid-2cols {
        gap: 10px;
    }
    
    .hero {
        height: 30vh;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .involved-grid {
        gap: 20px;
    }
    
    .social-grid {
        gap: 20px;
    }
}

/* Small devices (landscape phones) */
@media (max-width: 576px) {
    .video-card iframe {
        aspect-ratio: 16/9;
    }
    
    .swiper {
        padding: 10px 25px !important;
    }
}

/* Fix for iOS devices */
@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll;
    }
}

/* Print styles */
@media print {
    header, .live-badge, .engagement-section, .comments-section, .connect, footer {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .hero {
        height: auto;
        margin-top: 0;
    }
}