/* ===== AWSA-STYLE CSS FOR TURBOBARATO V2 ===== */

/* Base styles */
body {
    font-family: 'Outfit', sans-serif;
    background-color: #0a0a0a;
    color: #f0f0f0;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== HOVER CARDS (AWSA STYLE) ===== */
.hover-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.hover-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.hover-card:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(220, 38, 38, 0.1);
}

.hover-card:hover::before {
    opacity: 1;
}

.hover-card img {
    transition: transform 0.4s ease;
}

.hover-card:hover img {
    transform: scale(1.05);
}

/* ===== GLASS EFFECT ENHANCED ===== */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.glass:hover {
    border-color: rgba(220, 38, 38, 0.2);
}

/* ===== GRADIENT RED ===== */
.gradient-red {
    background: linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%);
    position: relative;
    overflow: hidden;
}

.gradient-red::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gradient-red:hover::before {
    opacity: 1;
}

/* ===== BUTTON MICRO-INTERACTIONS ===== */
.btn-hover {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-hover:hover::after {
    transform: translateX(100%);
}

.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.btn-hover:active {
    transform: translateY(0);
}

/* ===== PARALLAX EFFECTS ===== */
.parallax-bg {
    position: absolute;
    inset: -50px;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

/* ===== MAGNETIC BUTTON EFFECT ===== */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== TEXT GRADIENT ===== */
.text-gradient {
    background: linear-gradient(135deg, #dc2626, #f87171);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== CUSTOM CURSOR (OPTIONAL) ===== */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #dc2626;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, opacity 0.3s ease;
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background: #dc2626;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

/* ===== SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

/* ===== SECTION TRANSITIONS ===== */
section {
    position: relative;
}

/* ===== MARQUEE ANIMATION ===== */
.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

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

/* ===== FLOATING ANIMATION ===== */
.float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===== PULSE GLOW ===== */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(220, 38, 38, 0.3); }
    50% { box-shadow: 0 0 40px rgba(220, 38, 38, 0.6); }
}

/* ===== TEXT REVEAL ===== */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-reveal.active span {
    transform: translateY(0);
}

/* ===== IMAGE REVEAL ===== */
.image-reveal {
    position: relative;
    overflow: hidden;
}

.image-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #0a0a0a;
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-reveal.active::after {
    transform: scaleX(0);
    transform-origin: left;
}

/* ===== NAVIGATION ===== */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #dc2626;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: white !important;
}

/* ===== TABS ===== */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.tab-btn {
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #dc2626;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-btn.active {
    color: white;
}

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

/* ===== HERO CAROUSEL ===== */
.hero-slide {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
}

.slide-dot.active {
    background-color: #dc2626;
    transform: scale(1.4);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    border-color: rgba(220, 38, 38, 0.3);
}

.slide-arrow {
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-arrow:hover {
    background: rgba(220, 38, 38, 0.8);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
}

/* ===== PROTOCOL ITEMS ===== */
.protocolo-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.protocolo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #dc2626, #7f1d1d);
    transition: height 0.4s ease;
}

.protocolo-item:hover {
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.protocolo-item:hover::before {
    height: 100%;
}

.protocolo-numero {
    font-size: 4rem;
    font-weight: 900;
    color: #dc2626;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
}

.protocolo-item:hover .protocolo-numero {
    opacity: 0.3;
    transform: scale(1.1);
}

/* ===== UTILITIES ===== */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

:focus-visible {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

.text-gray-600 {
    color: #a0a0a0;
}

/* ===== FOOTER ===== */
.footer-dark {
    background-color: #030303;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
}

/* ===== RESPONSIVE ===== */

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 576px) {
    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
    
    h1 {
        font-size: 2rem !important;
        line-height: 1.1;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    h3 {
        font-size: 1.25rem !important;
    }
    
    .hover-card {
        padding: 1.5rem;
    }
    
    .protocolo-item {
        padding: 1.25rem;
    }
    
    .protocolo-numero {
        font-size: 2.5rem;
    }
    
    .slide-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slide-dot {
        width: 8px;
        height: 8px;
    }
    
    /* Touch-friendly buttons */
    button, a[href^="mailto"], a[href^="tel:"] {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Adjust spacing */
    section {
        padding: 3rem 1rem;
    }
    
    /* Form inputs on mobile */
    .form-input {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 768px) {
    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
    
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 1.75rem !important;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 992px) {
    h1 {
        font-size: 3rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .protocolo-numero {
        font-size: 3rem;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1200px) {
    h1 {
        font-size: 3.5rem !important;
    }
    
    h2 {
        font-size: 2.25rem !important;
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    h1 {
        font-size: 4rem !important;
    }
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
    .hover-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .hover-card:hover::before {
        opacity: 0;
    }
    
    .btn-hover:hover {
        transform: none;
        box-shadow: none;
    }
    
    .protocolo-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    .protocolo-item:hover::before {
        height: 0;
    }
    
    .magnetic-btn {
        transform: none !important;
    }
    
    .slide-arrow:hover {
        transform: none;
        background: rgba(0, 0, 0, 0.5);
    }
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        transform: none;
        opacity: 1;
    }
    
    .hover-card:hover {
        transform: none;
    }
    
    .protocolo-item:hover {
        transform: none;
    }
    
    /* Stack grid items on mobile */
    .grid {
        grid-template-columns: 1fr;
    }
    
    /* Adjust hero layout for mobile */
    #inicio .grid {
        grid-template-columns: 1fr;
    }
    
    #inicio .hidden.lg\\:block {
        display: none;
    }
    
    /* Adjust tab buttons for mobile */
    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.7rem;
    }
    
    /* Adjust search filters for mobile */
    #filter-marca,
    #filter-familia-motor,
    #filter-tipo-motor,
    #filter-cilindrada {
        min-width: 100%;
    }
    
    /* Adjust table for mobile */
    .search-table {
        font-size: 0.75rem;
    }
    
    .search-table th,
    .search-table td {
        padding: 0.5rem;
    }
    
    /* WhatsApp button position on mobile */
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
    }
    
    .whatsapp-float svg {
        width: 20px;
        height: 20px;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .protocolo-numero {
        font-size: 3.5rem;
    }
    
    .hover-card {
        padding: 1.75rem;
    }
}

/* Desktop hover effects only */
@media (min-width: 1025px) {
    .hover-card:hover {
        transform: translateY(-8px);
        border-color: rgba(220, 38, 38, 0.3);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(220, 38, 38, 0.1);
    }
    
    .btn-hover:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    }
    
    .protocolo-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
}

/* ===== SECTION FULL HEIGHT ===== */
@media (min-width: 1024px) {
    .section-full-height {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.section-full-height > .max-w-7xl {
    width: 100%;
}

/* ===== FILTER BUTTONS ===== */
.filter-btn.active {
    border-color: rgba(220, 38, 38, 0.5);
    background-color: rgba(220, 38, 38, 0.2);
    color: white;
}

/* ===== LOADING SPINNER ===== */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(220, 38, 38, 0.2);
    border-top-color: #dc2626;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== COUNTER ANIMATION ===== */
.counter {
    font-variant-numeric: tabular-nums;
}

/* ===== SPLIT TEXT ===== */
.split-text .char {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-text:hover .char {
    transform: translateY(-10px);
}

/* ===== HORIZONTAL SCROLL SECTION ===== */
.horizontal-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 0;
}

.horizontal-scroll > * {
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: linear-gradient(135deg, #dc2626 0%, #f87171 50%, #dc2626 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

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

/* ===== BORDER GLOW ===== */
.border-glow {
    position: relative;
}

.border-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #dc2626, transparent, #dc2626);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(10px);
}

.border-glow:hover::before {
    opacity: 1;
}

/* ===== WHATSAP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    background: #25D366;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* ===== SEARCH RESULTS TABLE ===== */
.search-table {
    border-collapse: separate;
    border-spacing: 0;
}

.search-table th {
    background: rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
}

.search-table tr {
    transition: all 0.2s ease;
}

.search-table tbody tr:hover {
    background: rgba(220, 38, 38, 0.1);
    transform: scale(1.01);
}

/* ===== ACCORDION ===== */
.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    padding: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    color: #dc2626;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content.open {
    max-height: 500px;
}

/* ===== STATS COUNTER ===== */
.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #dc2626, #f87171);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: #dc2626;
    opacity: 0.2;
    font-family: Georgia, serif;
}

/* ===== TEAM CARD ===== */
.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}

.team-card img {
    transition: transform 0.4s ease;
}

.team-card:hover img {
    transform: scale(1.1);
}

.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.team-card:hover .team-card-overlay {
    opacity: 1;
}

/* ===== PRICING CARD ===== */
.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.pricing-card.featured {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.05);
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== FORM INPUTS ===== */
.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    color: white;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* ===== SOCIAL LINKS ===== */
.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link:hover {
    background: #dc2626;
    border-color: #dc2626;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

/* ===== LOADING SKELETON ===== */
.skeleton {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s infinite;
}

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== NOTIFICATION TOAST ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(220, 38, 38, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    color: white;
    font-weight: 600;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ===== VIDEO OVERLAY ===== */
.video-overlay {
    position: relative;
}

.video-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    pointer-events: none;
}

/* ===== PLAY BUTTON ===== */
.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.play-btn::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(220, 38, 38, 0.5);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0; }
}

.play-btn:hover {
    transform: scale(1.1);
    background: #dc2626;
}

/* ===== END OF CSS ===== */
