:root {
    --primary-color: #9D00FF;
    /* Purple */
    --primary-light: #C47AFF;
    --primary-dark: #7100B8;
    --secondary-color: #1E90FF;
    /* Dodger Blue */
    --bg-color: #f6f5ff;
    /* Light Purple tint */
    --text-main: #000000;
    --text-muted: #000000;
    --glass-bg: #ffffff;
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(157, 0, 255, 0.1);

    --font-heading: 'Poppins', sans-serif;
    --font-subtitle: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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



body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: #0f2027;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(138, 43, 226, 0.25), transparent 60%),
        radial-gradient(circle at 85% 30%, rgba(75, 0, 130, 0.3), transparent 60%),
        linear-gradient(135deg, #0f2027 0%, #4b0082 50%, #8a2be2 100%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2 {
    font-family: var(--font-heading);
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 800;
}

h3,
h4,
h5,
h6,
.subtitle {
    font-family: var(--font-subtitle);
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.glass-panel h1, .glass-panel h2, .glass-panel h3, .glass-panel h4, .glass-panel h5, .glass-panel h6,
.glass-card h1, .glass-card h2, .glass-card h3, .glass-card h4, .glass-card h5, .glass-card h6 {
    color: #000000;
}

.hero .glass-panel h1, .hero .glass-panel h2, .hero .glass-panel h3, .hero .glass-panel h4, .hero .glass-panel h5, .hero .glass-panel h6 {
    color: #ffffff;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style-type: none;
}

/* Typography Classes */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    bottom: -10px;
    left: 25%;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
    border-radius: 2px;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

.mt-4 {
    margin-top: 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.85rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #0d1538 0%, #5e2894 40%, #e24ca6 75%, #ffcccd 100%);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    height: 35px;
    width: auto;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.navbar .logo h2 {
    margin: 0;
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    font-weight: 500;
    font-family: var(--font-heading);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e0d4ff;
}

.nav-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.report-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2.5px;
}

.nav-links a:hover .nav-icon {
    transform: scale(1.15);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

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

.nav-links a.btn::after {
    display: none;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 500;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    font-size: 1rem;
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: scale(1.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(157, 0, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 0, 255, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--glass-shadow);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow);
}

/* Sections Styling */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 5% 0 5%;
    overflow: hidden;
    background: linear-gradient(-45deg, #0d1538, #5e2894, #e24ca6, #ffcccd);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero .glass-panel {
    max-width: 1200px;
    text-align: center;
    z-index: 2;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero .subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero .description {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

.hero .cta-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 1;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 10s ease-in-out infinite;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.aim-list {
    margin-top: 1.5rem;
}

.aim-list ul {
    list-style-type: none;
}

.aim-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.aim-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.about, .releases, .business, .collaborations, .legal {
    position: relative;
}

/* Hero Shorts Carousel */
.hero-shorts-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
    padding: 2rem 0 6rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    z-index: 2;
}

.shorts-carousel {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollShorts 180s linear infinite;
}

.shorts-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollShorts {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

.short-card {
    width: clamp(220px, 20vw, 300px);
    aspect-ratio: 9/16;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(138, 43, 226, 0.4);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
    background: #000;
    flex-shrink: 0;
    position: relative;
}

.short-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.short-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 40px rgba(226, 76, 166, 0.6), 0 0 30px rgba(94, 40, 148, 0.8);
    z-index: 10;
}

/* Hero Videos Carousel */
.hero-videos-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
    padding: 2rem 0 6rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    z-index: 2;
}

.videos-carousel {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollVideos 260s linear infinite;
}

.videos-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollVideos {
    0% { transform: translateX(calc(-50% - 1rem)); }
    100% { transform: translateX(0); }
}

.video-card {
    width: clamp(280px, 30vw, 450px);
    aspect-ratio: 16/9;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(138, 43, 226, 0.4);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
    background: #000;
    flex-shrink: 0;
    position: relative;
}

.video-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.video-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 40px rgba(226, 76, 166, 0.6), 0 0 30px rgba(94, 40, 148, 0.8);
    z-index: 10;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.short-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.short-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.short-link:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 4rem;
    color: #ff0000;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

.short-link:hover .play-overlay i {
    transform: scale(1.1);
}

.releases-content {
    background: #ffffff !important;
    backdrop-filter: none;
    border: none;
}

/* Business Section */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: white;
    backdrop-filter: none;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.2);
    transition: transform 0.3s ease;
}

.feature-card h4, .feature-card p {
    color: white;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 210, 255, 0.4);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.tag {
    background: rgba(157, 0, 255, 0.1);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Collaborations */
.collab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.collab-card ul {
    margin-left: 1rem;
}

.collab-card li {
    margin-bottom: 0.8rem;
    list-style-type: disc;
    color: var(--text-muted);
}

.collab-card li strong {
    color: var(--text-main);
}

.highlight-box {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    text-align: center;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 210, 255, 0.3);
}

.highlight-box h3,
.highlight-box p,
.highlight-box strong,
.highlight-box small {
    color: white;
}

.email-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    display: block;
    margin: 1rem 0;
}

/* Legal Tabs */
.legal-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(157, 0, 255, 0.05);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(157, 0, 255, 0.2);
}

.tab-content {
    animation: fadeIn 0.5s ease;
}

.disclaimer-items h4 {
    margin-top: 1.5rem;
    color: var(--primary-dark);
}

/* Footer */
footer {
    background-image: linear-gradient(to top right, #0d1538 0%, #5e2894 40%, #e24ca6 75%, #ffcccd 100%);
    padding: 4rem 0 0;
    color: white;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    margin-bottom: 0.5rem;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-icon {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.custom-x-icon {
    stroke: currentColor;
}

.social-icon i, .social-icon svg {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-icon svg.lucide {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
}

.social-icon:hover {
    color: white;
    transform: translateX(5px);
}



.social-icon:hover i, .social-icon:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.9rem;
}

/* Form Styling */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-control {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(157, 0, 255, 0.1);
}

textarea.form-control {
    resize: vertical;
}

/* Contact Success Page Styling */
.contact-success {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-animate {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.section-animate.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.fade-in-up {
    transform: translateY(50px);
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-right {
    transform: translateX(50px);
}

/* Responsive */
@media (max-width: 900px) {

    .about-grid,
    .collab-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero .cta-buttons {
        flex-direction: column;
    }
    
    .business-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .glass-panel {
        padding: 1.5rem;
    }

    .glass-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(15, 32, 39, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
    }

    .nav-links a {
        display: block;
        padding: 1rem;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .business-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero .description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero .description {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    p {
        font-size: 0.95rem;
    }

    .glass-panel, .glass-card {
        padding: 1.2rem;
    }

    .about, .releases, .business, .collaborations, .legal {
        margin: 1rem auto;
        max-width: 98%;
        border-radius: 20px;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .navbar .logo h2 {
        font-size: 1.2rem;
    }

    .nav-logo-img {
        height: 30px;
    }

    .legal-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .tab-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .footer-top {
        gap: 1.5rem;
    }

    .footer-brand h2 {
        font-size: 1.5rem;
    }

    .footer-logo-img {
        height: 40px;
    }
}