/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 50%, #ff006e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Space Background - Removed */
.space-bg {
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Hero Video Section - styles moved to .hero-video-wrapper */
.hero-video {
    background: transparent;
    position: relative;
    overflow: visible;
}

/* Hero Video Wrapper - contains navbar and hero with video background */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrapper .hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.hero-video-wrapper .hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top-left, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at bottom-right, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 500;
    background: transparent;
    backdrop-filter: none;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.navbar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
    justify-content: end;
    flex: 1;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: clamp(0.75rem, 2vw, 1rem);
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #00d4ff;
}

.btn-login {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: clamp(0.75rem, 1vw, 0.95rem);
    white-space: nowrap;
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

/* Hero Section */
.hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1rem 4rem 1rem;
    position: relative;
    z-index: 100;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 100;
}

.hero-title {
    font-size: clamp(1.8rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 1;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 1;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    color: #000;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    padding: 0.9rem 2rem;
    border: 2px solid #00d4ff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #000;
    transform: translateY(-5px);
}

/* Section Styling */
section {
    padding: clamp(2rem, 8vw, 5rem) clamp(1rem, 5vw, 2rem);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

section:not(#hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

section:not(#hero)::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 1.5rem;
    color: #00d4ff;
}

.about-text p {
    color: #b0b0b0;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-box {
    background: rgba(0, 212, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #00d4ff;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateX(10px);
}

.feature-box h4 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.feature-box p {
    color: #b0b0b0;
    font-size: 0.85rem;
}

/* Reels Section */
.reels-container {
    position: relative;
}

.swiper {
    width: 100%;
    padding: 1rem 0;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    transition: all 0.3s ease;
}

.reel-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 0, 110, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.reel-card h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 0.8rem;
    color: #00d4ff;
}

.reel-card p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
}

.reel-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00d4ff;
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
}

.reel-btn {
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    color: #000;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    font-size: 0.85rem;
}

.reel-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

/* Images Section */
.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.image-card {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 110, 0.2));
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.image-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
}

/* More Section */
.more-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(255, 0, 110, 0.05) 100%);
    border-radius: 20px;
    padding: clamp(1.5rem, 5vw, 4rem);
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.more-card {
    background: rgba(0, 212, 255, 0.1);
    padding: 1.5rem;

/* Guest preview styling for reels on homepage */
.guest-preview {
     filter: blur(2px) saturate(0.7);
     transform: scale(1.02);
}
.guest-overlay {
     position: absolute;
     inset: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-weight: 600;
     background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.45));
     pointer-events: none;
}
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.more-card:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
}

.more-card h3 {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #00d4ff;
    margin-bottom: 0.8rem;
}

.more-card p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.faq-question {
    background: rgba(0, 212, 255, 0.1);
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    gap: 1rem;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.15);
}

.faq-question h4 {
    color: #00d4ff;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin: 0;
    text-align: left;
    flex: 1;
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 1rem;
    color: #00d4ff;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1rem;
    color: #b0b0b0;
    display: none;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    line-height: 1.6;
    font-size: 0.85rem;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 50%, #ff006e 100%);
    border-radius: 15px;
    padding: clamp(2rem, 5vw, 4rem) 1.5rem;
    text-align: center;
    color: #000;
}

.cta-section h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: #000;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(0, 0, 0, 0.8);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    background: #000;
    color: #00d4ff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: #050505;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 2rem 1rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: #00d4ff;
    margin-bottom: 0.8rem;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.4rem;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
}

.footer-section a:hover {
    color: #00d4ff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    color: #707070;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.social-links a:hover {
    background: #00d4ff;
    color: #000;
    transform: translateY(-5px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    animation: slideUp 0.3s ease;
    position: relative;
    margin: auto;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    color: #00d4ff;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #b0b0b0;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.modal-close:hover {
    color: #00d4ff;
    transform: rotate(90deg);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.85rem;
}

.form-group input {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.05);
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.form-group input::placeholder {
    color: #707070;
}

.form-group input:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    cursor: pointer;
    accent-color: #00d4ff;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.form-checkbox label {
    margin: 0;
    cursor: pointer;
    font-size: 0.8rem;
    color: #b0b0b0;
    line-height: 1.4;
}

.modal-submit {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.modal-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.modal-footer {
    text-align: center;
    margin-top: 1rem;
    color: #b0b0b0;
    font-size: 0.8rem;
}

.modal-footer a {
    color: #00d4ff;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
}

.modal-footer a:hover {
    text-decoration: underline;
}

.error-message {
    background: rgba(255, 0, 110, 0.1);
    border-left: 4px solid #ff006e;
    color: #ff6b9d;
    padding: 0.8rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    font-weight: bold;
    font-size: 1.1rem;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-content {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        gap: 0.8rem;
        flex: none;
        width: 100%;
        margin: 1rem 0 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .swiper-slide {
        min-height: 250px;
    }

    .more-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-content {
        width: 90%;
        max-width: 350px;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .navbar-content {
        gap: 0.5rem;
        padding: 1rem;
    }

    .logo {
        font-size: 1rem;
    }

    .nav-menu {
        gap: 0.5rem;
        width: 100%;
        margin: 0.5rem 0 0;
    }

    .nav-menu a {
        font-size: 0.7rem;
    }

    .btn-login {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .hero {
        min-height: 80vh;
        padding: 1rem 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary,
    .cta-btn {
        width: 100%;
        font-size: 0.85rem;
        padding: 0.7rem 1.5rem;
    }

    .more-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        padding: 1rem;
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1rem;
    }
}
