/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Great+Vibes&display=swap');

@font-face {
    font-family: 'Alcantera';
    src: url('../fonts/AlcanteraScript-owYBo.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-red: #e50914;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

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

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

.w-100 {
    width: 100%;
}

.highlight {
    color: #555;
}

/* Based on original where creativity meets production */
.highlight-red {
    color: var(--accent-red);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--accent-red);
    color: #fff;
    border: 2px solid var(--accent-red);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-red);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.main-nav a:hover {
    color: var(--accent-red);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    padding: 10px 0;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    display: block;
    width: 100%;
}

.dropdown a {
    padding: 10px 20px;
    display: block;
    font-size: 13px;
}

.dropdown a:hover {
    background: var(--glass-bg);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* About Section */
.about-section {
    padding: 100px 20px;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-section p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 20px;
}

.divider {
    height: 2px;
    width: 100px;
    background: var(--accent-red);
    margin: 40px auto;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    height: 300px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

/* Clients Section */
.clients-section {
    padding: 80px 20px;
    background: #0a0a0a;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    -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);
}

.marquee-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: marquee 25s linear infinite;
    align-items: center;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-track img {
    max-width: 150px;
    max-height: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 12px;
}

.marquee-track img:hover {
    filter: none;
    background-color: #ffffff;
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Portfolio Page */
.page-header {
    padding: 150px 20px 80px;
    text-align: center;
    background: #0a0a0a;
}

.page-header h1 {
    font-size: 3rem;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px auto;
    flex-wrap: wrap;
}

.portfolio-filters .btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.portfolio-filters .btn.active,
.portfolio-filters .btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 100px;
}

.portfolio-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 450px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.portfolio-img-container {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
}

.portfolio-img-container img:not(.portfolio-card-logo) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-img-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    opacity: 0.8;
    transition: opacity 0.4s ease, background 0.4s ease;
}

.portfolio-card-logo {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
    transition: transform 0.4s ease;
    z-index: 5;
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    z-index: 10;
}

.portfolio-info h3 {
    margin: 0;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-info-meta {
    margin-top: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease, margin-top 0.4s ease;
}

.portfolio-info .client {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 8px;
}

.portfolio-info .category {
    font-size: 0.85rem;
    color: var(--accent-red);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.card-tags span {
    font-size: 0.75rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 4px 10px;
    border-radius: 20px;
    color: #eee;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Hover States */
.portfolio-card:hover .portfolio-img-container img:not(.portfolio-card-logo) {
    transform: scale(1.05);
}

.portfolio-card:hover .portfolio-img-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.2) 100%);
}

.portfolio-card:hover .portfolio-info h3 {
    transform: translateY(0);
}

.portfolio-card:hover .portfolio-info-meta {
    opacity: 1;
    max-height: 200px;
    margin-top: 15px;
}

/* Premium Footer */
.premium-footer {
    background: #050505;
    padding: 100px 20px 40px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 100px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-massive-text {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    font-weight: 700;
    margin: 0;
    letter-spacing: -2px;
    color: #fff;
}

.footer-contact-info {
    max-width: 400px;
}

.footer-description {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.footer-cta {
    padding: 15px 30px;
    font-size: 1.1rem;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
}
.footer-cta:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #fff;
}

.footer-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-top: 60px;
    border-top: 1px solid var(--glass-border);
}

.footer-col h4 {
    color: var(--accent-red);
    margin: 0 0 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

.clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clean-list li {
    margin-bottom: 12px;
}

.clean-list a {
    color: #888;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.clean-list a:hover {
    color: #fff;
}

.footer-copyright {
    margin-top: 80px;
    text-align: center;
    color: #555;
    font-size: 0.9rem;
}

/* Horizontal Scroll Section */
.latest-projects {
    padding: 60px 0 0;
    background: #0a0a0a;
}
.latest-projects-heading {
    font-size: 5rem;
    margin-bottom: 0 !important;
    text-align: left;
    margin-left: 5vw;
}
.horizontal-scroll-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 0 60px;
}
.horizontal-scroll-track {
    display: flex;
    gap: 40px;
    padding: 0 5vw;
    width: max-content;
}
.horizontal-card {
    width: 500px;
    flex-shrink: 0;
}
.more-work-card {
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px dashed var(--glass-border);
}
.more-work-card:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}
.more-work-card:hover .more-work-arrow {
    transform: translateX(10px);
}
.more-work-content h3 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}
.more-work-arrow {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}
@media (max-width: 768px) {
    .horizontal-scroll-container {
        height: auto;
        overflow-x: auto;
        display: flex;
        align-items: center;
        padding: 20px 0 40px;
        -webkit-overflow-scrolling: touch;
    }
    .horizontal-scroll-track {
        padding: 0 20px;
    }
    .horizontal-card {
        width: 80vw;
        height: 400px;
    }
    .latest-projects-heading {
        font-size: 3rem;
        margin-left: 20px;
        margin-bottom: 0 !important;
    }
    .more-work-content h3 {
        font-size: 2rem;
    }
}

/* Mobile Navigation & Hero */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 2000;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    transition: 0.4s;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s ease;
        z-index: 1500;
    }

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

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .main-nav a {
        font-size: 2rem;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -8px);
    }

    body.menu-open {
        overflow: hidden;
    }

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

    /* Hero Text Scaling */
    .hero-text-layer {
        flex-direction: column;
        gap: 10px;
    }

    .hero-left-group, .hero-right-group {
        transform: none !important;
        text-align: center;
    }

    .hero-where {
        font-size: 4rem !important;
        letter-spacing: -1px;
    }

    .hero-creativity {
        font-size: 5rem !important;
        margin: -5px 0 0 0 !important;
    }

    .hero-meets {
        font-size: 2.5rem !important;
    }

    .hero-production {
        font-size: 3rem !important;
    }

    .hero-red-box {
        width: 150px;
        height: 400px;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.5;
    }

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

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

/* Text-based Services Section */
.services-text-section {
    padding: 120px 20px;
    background-color: var(--bg-color);
}

.services-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

@media (min-width: 992px) {
    .services-text-wrapper {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.services-text-header {
    flex: 1;
    max-width: 400px;
}

.services-text-header .section-title {
    text-align: left;
    margin-bottom: 20px;
    font-size: 3rem;
    line-height: 1.1;
}

.services-description {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.6;
}

.services-list {
    flex: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service-list-item {
    display: flex;
    flex-direction: column;
    padding: 30px 0;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.service-list-item:first-child {
    border-top: 1px solid var(--glass-border);
}

.service-list-item:hover {
    padding-left: 20px;
    padding-right: 20px;
    background-color: var(--glass-bg);
}

.service-list-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.service-number {
    font-size: 1rem;
    font-weight: 300;
    color: var(--accent-red);
}

.service-list-title h3 {
    font-size: 2rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.5px;
    transition: color 0.3s;
}

.service-list-item:hover .service-list-title h3 {
    color: var(--accent-red);
}

.service-list-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-left: 40px;
}

.service-list-content p {
    margin: 0;
    color: #888;
    font-size: 1rem;
    max-width: 500px;
    transition: color 0.3s;
}

.service-list-item:hover .service-list-content p {
    color: #ccc;
}

.service-arrow {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0;
    transform: translateX(-10px) translateY(10px);
    transition: all 0.4s ease;
    color: var(--text-color);
}

.service-list-item:hover .service-arrow {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

@media (max-width: 768px) {
    .service-list-title h3 {
        font-size: 1.5rem;
    }
    
    .service-list-content {
        padding-left: 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-arrow {
        display: none;
    }
}

/* Apple-style Project Page */
.project-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-hero video,
.project-hero img.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.project-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.project-hero-content {
    text-align: center;
    z-index: 1;
}

.project-hero-content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
}

.logos-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.logos-container img {
    height: 60px;
    object-fit: contain;
}

.project-details {
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.project-details p {
    margin-bottom: 30px;
}

/* Mosaic Portfolio Grid */
.portfolio-grid.mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-flow: dense;
    gap: 20px;
}

.portfolio-card.large,
.portfolio-card.wide {
    grid-column: span 2;
}

/* Tag Filters */
.tag-filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #ccc;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    backdrop-filter: blur(5px);
}

.tag-filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.tag-filter-btn.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #fff;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

@media (max-width: 600px) {
    .portfolio-grid.mosaic {
        grid-template-columns: 1fr;
    }
    
    .portfolio-card.large,
    .portfolio-card.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 80px 20px;
}

.blog-card {
    background: var(--glass-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-topic {
    color: var(--accent-red);
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-title {
    font-size: 1.5rem;
    margin: 10px 0;
}

.blog-meta {
    color: #888;
    font-size: 0.9rem;
    margin-top: 15px;
}

.latest-projects {
    padding: 100px 20px;
    background: #0a0a0a;
}

/* Hero Section Redesign */
.home-hero {
    height: 100vh;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.hero-red-box {
    position: absolute;
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: 650px;
    background-color: #e50914;
    overflow: hidden;
    z-index: 1;
}

.hero-red-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    mix-blend-mode: multiply;
}

.hero-text-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.hero-left-group {
    text-align: left;
    transform: translateX(-20px);
}

.hero-where {
    font-size: 8rem;
    font-weight: 900;
    color: #fff;
    line-height: 0.85;
    margin: 0;
    letter-spacing: -2px;
}

.hero-creativity {
    font-family: 'Alcantera', 'Great Vibes', cursive;
    font-size: 9rem;
    color: #fff;
    margin: -10px 0 0 -40px;
    font-weight: 400;
    line-height: 0.8;
}

.hero-right-group {
    text-align: left;
    transform: translateX(40px) translateY(40px);
}

.hero-meets {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 0.9;
    margin: 0;
    letter-spacing: 1px;
}

.hero-production {
    font-size: 5.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 0.9;
    margin: 0;
    letter-spacing: 1px;
}

/* --- Premium Portfolio Redesign --- */
.portfolio-hero-premium {
    height: 60vh;
    min-height: 400px;
    background-color: #050505;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(229, 9, 20, 0.4);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(50, 0, 0, 0.5);
    bottom: -200px;
    right: -100px;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    top: 20%;
    left: 40%;
}

.hero-content-premium {
    position: relative;
    z-index: 10;
}

.gsap-hero-title {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1;
}

.gradient-text {
    background: linear-gradient(90deg, #e50914, #ff4b4b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gsap-hero-subtitle {
    font-size: 1.5rem;
    color: #aaa;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.5;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px auto;
    flex-wrap: wrap;
    position: sticky;
    top: 90px;
    z-index: 100;
    max-width: fit-content;
}

.btn-glass {
    background: transparent;
    border: none;
    color: #ccc;
    border-radius: 30px;
    padding: 8px 24px;
    transition: all 0.3s ease;
}

.btn-glass:hover, .btn-glass.active {
    background: rgba(229, 9, 20, 0.8);
    color: #fff;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}