/* =====================================================
   TUGA LEAGUE - Stylesheet
   =====================================================
   1. Variables
   2. Reset & Base
   3. Layout
   4. Header & Navigation
   5. Hero Section
   6. Features Section
   7. Cards & Components
   8. Footer
   9. Page Styles (About, Clips, Submit)
   10. Liquid Ether Effect
   11. Utilities & Animations
   12. Responsive
   ===================================================== */

/* =====================================================
   1. VARIABLES
   ===================================================== */
:root {
    --color-primary: #E63946;
    --color-primary-dark: #A4161A;
    --color-black: #0A0A0A;
    --color-dark: #111111;
    --color-gray: #1A1A1A;
    --color-light: #F5F5F5;
    --color-white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-family: 'Inter', 'Segoe UI', sans-serif;
    --header-height: 80px;
    --transition: 0.3s ease;
}

/* =====================================================
   2. RESET & BASE
   ===================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* =====================================================
   3. LAYOUT
   ===================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--color-white), var(--color-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* =====================================================
   4. HEADER & NAVIGATION
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 60px;
    flex-wrap: nowrap;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    flex-shrink: 0;
}

.nav__logo-img {
    height: 45px;
    width: auto;
}

.nav__logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--color-white), var(--color-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: none;
}

.nav__menu {
    display: none; /* Hidden by default, shown only on mobile */
    align-items: center;
    gap: 40px;
}

.nav__link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    padding: 10px 0;
    position: relative;
    transition: color var(--transition);
    white-space: nowrap;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-white);
    z-index: 1001;
}

/* GooeyNav in Header */
.nav .gooey-nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
    margin: 0;
    flex: 0;
    flex-shrink: 0;
}

.nav .gooey-nav-container nav ul li a {
    padding: 0.5em 1.2em;
    font-size: 0.95rem;
}

/* =====================================================
   5. HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 120px);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark) 50%, var(--color-black) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-white), var(--color-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    min-height: 4.4rem;
}

/* TextType Styling */
.text-type {
    display: inline-block;
    white-space: pre-wrap;
}

.text-type__content {
    display: inline;
}

.text-type__cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: var(--color-primary);
    margin-left: 2px;
    opacity: 1;
}

.text-type__cursor--hidden {
    display: none;
}

@keyframes blink-cursor {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.hero__description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.hero__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.btn--secondary {
    background: var(--glass-bg);
    color: var(--color-white);
    border: 1px solid var(--glass-border);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Tilt Card */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tilt-card {
    perspective: 1000px;
    cursor: pointer;
}

.tilt-card__inner {
    width: 300px;
    height: 300px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease;
    box-shadow: 0 20px 60px rgba(230, 57, 70, 0.2);
}

.tilt-card__img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(230, 57, 70, 0.5));
}

/* =====================================================
   6. FEATURES SECTION
   ===================================================== */
.features {
    padding: 140px 0;
    background: var(--color-dark);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* =====================================================
   7. CARDS & COMPONENTS
   ===================================================== */
.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.2);
}

.feature-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: var(--color-white);
}

.feature-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.feature-card__arrow {
    color: var(--color-primary);
    font-size: 1.25rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition);
}

.feature-card:hover .feature-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
}

/* =====================================================
   8. FOOTER
   ===================================================== */
.footer {
    background: var(--color-black);
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer__socials {
    display: flex;
    gap: 15px;
}

.footer__socials a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition);
}

.footer__socials a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--color-primary);
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* =====================================================
   9. PAGE STYLES
   ===================================================== */
.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--color-black), var(--color-dark));
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 50%);
}

.page-hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}

.page-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

/* About Page */
.about-section {
    padding: 80px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

/* Remove grid when electric-border is applied (grid moves to .eb-content) */
/* Configuração Geral do Card (Desktop e Mobile) */
.about-intro {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important; /* CENTRA O TEXTO */
    padding: 60px 40px !important; /* Dá espaço para o brilho não tapar as letras */
    min-height: 300px; /* Garante que a box tem corpo mesmo com pouco texto */
    width: 100%;
    max-width: 1000px; /* Ajusta conforme preferires a largura da box */
    margin: 40px auto;
}

.about-intro__content {
    max-width: 800px; /* Impede que as linhas de texto fiquem demasiado compridas */
    width: 100%;
}

.about-intro__content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #fff;
}

.about-intro__content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* Ajuste específico para Mobile */
@media (max-width: 768px) {
    .about-intro {
        padding: 40px 20px !important;
    }
    
    .about-intro__content h2 {
        font-size: 2rem;
    }
}

/* Atacamos o container principal e a div que o script gera */
.about-intro, 
.eb-content { 
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* Centro vertical */
    align-items: center !important;     /* Centro horizontal */
    text-align: center !important;      /* Alinha as letras ao meio */
    width: 100% !important;
    height: 100% !important;
    min-height: 350px; /* Dá altura para o texto não ficar apertado */
}

.about-intro__content {
    max-width: 800px; /* Não deixa o texto esticar até às bordas */
    padding: 20px;
    margin: 0 auto !important;
}

.about-intro__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.about-intro__content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.stat-card__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    display: block;
}

.stat-card__label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 40px 30px;
}

.team-card__avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    overflow: hidden;
    border: 3px solid var(--color-primary);
}

.team-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__avatar i {
    color: var(--color-white);
}

.team-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-card__role {
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-card__bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Clips Page */
.clips-section {
    padding: 80px 0;
}

.clips-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.clips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.clip-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition);
}

.clip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.clip-card__thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.clip-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.clip-card:hover .clip-card__thumbnail img {
    transform: scale(1.1);
}

.clip-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.clip-card:hover .clip-card__overlay {
    opacity: 1;
}

.clip-card__overlay i {
    font-size: 3rem;
    color: var(--color-white);
}

.clip-card__duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.clip-card__info {
    padding: 20px;
}

.clip-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.clip-card__author {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.clip-card__meta {
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Submit Page */
.submit-section {
    padding: 80px 0;
}

.submit-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.submit-info .info-card {
    margin-bottom: 25px;
    padding: 25px;
}

.info-card__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.tips-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.tips-list i {
    color: var(--color-primary);
}

.platforms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.platform-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.process-list {
    counter-reset: process;
    list-style: none;
    padding-left: 0;
}

.process-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.process-list li::before {
    counter-increment: process;
    content: counter(process);
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Form Styles */
.submit-form {
    padding: 40px;
}

.submit-form h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--color-dark);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--color-white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-hint {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
}

.checkbox-group label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.form-success {
    text-align: center;
    padding: 60px 40px;
    display: none;
}

.form-success.show {
    display: block;
}

.form-success__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
}

.form-success h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.form-success p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.form-success__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 40px;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.cta-section__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* CTA Box (used on about & clips pages) */
.cta-box {
    text-align: center;
    padding: 50px 40px;
    margin-top: -80px;
}

.cta-box__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box__text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 1rem;
}

.cta-box__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-box {
        /* Dá um espaço generoso no topo para não bater nos cards */
        margin-top: 20rem 
    }
}

/* Featured Clip (clips page) */
.featured-clip {
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
}

.featured-clip__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-clip__content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
}

.featured-clip__video {
    aspect-ratio: 16/9;
    background: var(--color-dark);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color var(--transition);
}

.video-placeholder:hover {
    color: var(--color-primary);
}

.video-placeholder i {
    font-size: 4rem;
}

.featured-clip__info h2 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.featured-clip__author {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.featured-clip__description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.featured-clip__stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.featured-clip__stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Clips Load More */
.clips-load-more {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* =====================================================
   10. LIQUID ETHER EFFECT
   ===================================================== */
[data-liquid] {
    position: relative;
}

.liquid-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Ensure content stays above the liquid canvas */
[data-liquid] > .container,
[data-liquid] > .page-hero__content,
[data-liquid] > :not(.liquid-canvas) {
    position: relative;
    z-index: 1;
}

/* =====================================================
   10.5. GOOEY NAV - Red Theme
   ===================================================== */
.gooey-nav-container {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.gooey-nav-container nav {
    display: flex;
    position: relative;
    transform: translate3d(0, 0, 0.01px);
}

.gooey-nav-container nav ul {
    display: flex;
    gap: 2em;
    list-style: none;
    padding: 0 1em;
    margin: 0;
    position: relative;
    z-index: 3;
    color: white;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.gooey-nav-container nav ul li {
    border-radius: 100vw;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0.5px 1.5px transparent;
    color: white;
}

.gooey-nav-container nav ul li a {
    display: inline-block;
    padding: 0.8em 1.5em;
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    font-size: 1.1rem;
}

.gooey-nav-container nav ul li:focus-within:has(:focus-visible) {
    box-shadow: 0 0 0.5px 1.5px var(--color-primary);
}

.gooey-nav-container nav ul li::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100vw;
    background: var(--color-primary);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: -1;
}

.gooey-nav-container nav ul li.active {
    color: white;
    text-shadow: none;
}

.gooey-nav-container nav ul li.active::after {
    opacity: 1;
    transform: scale(1);
}

.gooey-nav-container .effect {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    opacity: 1;
    pointer-events: none;
    display: grid;
    place-items: center;
    z-index: 1;
}

.gooey-nav-container .effect.text {
    color: white;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    display: none;
}

.gooey-nav-container .effect.text.active {
    color: white;
}

.gooey-nav-container .effect.filter {
    filter: blur(7px) contrast(100) blur(0);
    mix-blend-mode: lighten;
}

.gooey-nav-container .effect.filter::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    transform: scale(0);
    opacity: 0;
    z-index: -1;
    border-radius: 100vw;
}

.gooey-nav-container .effect.active::after {
    animation: pill 0.3s ease both;
}

@keyframes pill {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.gooey-nav-container .particle,
.gooey-nav-container .point {
    display: block;
    opacity: 0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    transform-origin: center;
}

.gooey-nav-container .particle {
    --time: 1200ms;
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 8px);
    animation: particle calc(var(--time)) ease 1 -350ms;
}

.gooey-nav-container .point {
    background: var(--color);
    opacity: 1;
    animation: point calc(var(--time)) ease 1 -350ms;
}

/* Red theme colors for particles */
.gooey-nav-container {
    --color-1: #E63946;
    --color-2: #A4161A;
    --color-3: #FF6B6B;
    --color-4: #D62828;
}

@keyframes particle {
    0% {
        transform: rotate(0deg) translate(var(--start-x), var(--start-y));
        opacity: 1;
        animation-timing-function: cubic-bezier(0.55, 0, 1, 0.45);
    }
    70% {
        transform: rotate(calc(var(--rotate) * 0.5)) translate(calc(var(--end-x) * 1.2), calc(var(--end-y) * 1.2));
        opacity: 1;
        animation-timing-function: ease;
    }
    85% {
        transform: rotate(calc(var(--rotate) * 0.66)) translate(var(--end-x), var(--end-y));
        opacity: 1;
    }
    100% {
        transform: rotate(calc(var(--rotate) * 1.2)) translate(calc(var(--end-x) * 0.5), calc(var(--end-y) * 0.5));
        opacity: 1;
    }
}

@keyframes point {
    0% {
        transform: scale(0);
        opacity: 0;
        animation-timing-function: cubic-bezier(0.55, 0, 1, 0.45);
    }
    25% {
        transform: scale(calc(var(--scale) * 0.25));
    }
    38% {
        opacity: 1;
    }
    65% {
        transform: scale(var(--scale));
        opacity: 1;
        animation-timing-function: ease;
    }
    85% {
        transform: scale(var(--scale));
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .gooey-nav-container nav ul {
        flex-direction: column;
        gap: 1em;
        align-items: center;
    }

    .gooey-nav-container nav ul li a {
        padding: 0.6em 1.2em;
        font-size: 1rem;
    }

    .gooey-nav-container {
        min-height: auto;
    }
}

/* =====================================================
   11. UTILITIES & ANIMATIONS
   ===================================================== */

/* Page Transition */
body {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

body.page-leaving {
    opacity: 0.95;
    transform: translateY(-10px);
    pointer-events: none;
}

body.page-loaded {
    animation: pageEnter 0.4s ease-out;
}

@keyframes pageEnter {
    from {
        opacity: 0.95;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* =====================================================
   12. RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .clips-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .submit-layout { grid-template-columns: 1fr; }
    .about-intro { grid-template-columns: 1fr; text-align: center; }
    .about-intro__image { order: -1; }
    .featured-clip__content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Hide GooeyNav on mobile */
    .nav .gooey-nav-container {
        display: none;
    }

    .nav__menu {
        display: flex; /* Show traditional menu on mobile */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-black);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transform: translateX(-100%);
        transition: transform var(--transition);
    }

    .nav__menu.active { transform: translateX(0); }
    .nav__link { font-size: 1.5rem; }
    .nav__toggle { display: block; }
    .hero__content { grid-template-columns: 1fr; text-align: center; }
    .hero__title { font-size: 2.5rem; }
    .hero__buttons { justify-content: center; }
    .hero__visual { order: -1; }
    .tilt-card__inner { width: 200px; height: 200px; }
    .tilt-card__img { width: 130px; }
    .features__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; text-align: center; }
    .footer__socials { justify-content: center; }
    .clips-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .section__title { font-size: 2rem; }
    .page-hero__title { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2rem; }
    .btn { padding: 12px 20px; font-size: 0.9rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .clips-filter { flex-direction: column; align-items: center; }
    .filter-btn { width: 100%; justify-content: center; }
}