/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --green: #22c55e;
    --gold: #f59e0b;
    --gold-hover: #d97706;
    --font-main: 'Inter', sans-serif;
    --font-title: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-title);
    font-weight: 800;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Helpers */
.text-green { color: var(--green); }
.text-gold { color: var(--gold); }
.text-white { color: var(--text-white); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 2rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--green);
    color: white;
}

.btn-primary:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.btn-small {
    padding: 8px 20px;
    background-color: var(--gold);
    color: var(--bg-dark);
    border-radius: 6px;
    font-weight: bold;
}

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 10px 30px -10px rgba(2, 6, 23, 0.8);
    height: 70px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-title);
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Live Banner */
.live-banner {
    background: linear-gradient(90deg, #1e293b 0%, #0f172a 100%);
    border-bottom: 2px solid var(--green);
    padding: 15px 0;
    position: relative;
    z-index: 900;
    margin-top: 80px; /* Below fixed navbar */
}

.live-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.live-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid var(--green);
}

.pulse-red {
    width: 10px;
    height: 10px;
    background-color: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(239, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.live-info h4 {
    font-size: 1rem;
    color: var(--text-white);
    margin: 0;
}

.live-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.btn-live {
    background-color: var(--green);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-live:hover {
    background-color: #16a34a;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .live-content { flex-direction: column; text-align: center; }
    .btn-live { width: 100%; justify-content: center; }
}

/* Stats Bar */
.stats-bar {
    background: var(--bg-card);
    padding: 40px 0;
    border-bottom: 4px solid var(--green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--gold);
}

/* About */
.about {
    padding: 100px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.features-list {
    margin-top: 2rem;
}

.features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-card);
    position: relative;
}

.aspect-16-9 {
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-sound-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-sound-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.demo-video {
    width: 100%;
    height: auto;
    display: block;
}

.image-placeholder {
    background: var(--bg-card);
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--gold);
}

/* Squad */
.squad {
    padding: 100px 0;
    background-color: rgba(30, 41, 59, 0.5);
}

.squad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.squad-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

.squad-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--gold);
}

.member-img {
    width: 80px;
    height: 80px;
    background: var(--bg-dark);
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.role {
    color: var(--green);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.description {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Sponsors & Partners */
.sponsors {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #1e293b);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 4rem;
}

.partner-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--green);
}

.partner-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--green);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.partner-logo-img {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 12px;
    padding: 8px;
    object-fit: contain;
}

.partner-title h3 {
    font-size: 1.2rem;
    color: var(--text-white);
    margin: 0;
}

.partner-title span {
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 600;
}

.partner-body {
    flex-grow: 1;
}

.partner-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.partner-info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.partner-info-list li {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.partner-info-list i {
    color: var(--gold);
    width: 15px;
}

.partner-qr {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.partner-footer {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-partner {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.btn-whats {
    background-color: #25d366;
    color: white;
}

.btn-partner:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.be-partner-card {
    border: 2px dashed rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 300px;
}

.be-partner-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.video-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(34, 197, 94, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: 0.3s;
}

.video-card:hover .play-icon {
    opacity: 1;
}

.live-tag-small {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.video-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: rgba(30, 41, 59, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--green);
    transform: scale(1.05);
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
}

.price-header h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.price-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.price-features {
    text-align: left;
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-features i {
    color: var(--green);
}

@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1);
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(to bottom, #1e293b, var(--bg-dark));
}

.contact-email {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.contact-email:hover {
    color: var(--green);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .contact-email {
        font-size: 1.2rem;
    }
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.footer-social i:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle { 
        display: block; 
        cursor: pointer;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.5s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        display: flex;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hero h1 { font-size: 2.5rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}