/* ==========================================================================
   Variables & Theme
   ========================================================================== */
   :root {
    --color-bg: #f8f9fa;
    --color-bg-alt: #ffffff;
    --color-text: #1a1a24;
    --color-text-muted: #6c757d;
    --color-red: #ED1C24; /* Funtube Studio Red */
    --color-red-hover: #c4151b;
    --color-border: #e0e0e0;
    
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    
    --grid-size: 40px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

[data-theme="dark"] {
    --color-bg: #0f0f15;
    --color-bg-alt: #1a1a24;
    --color-text: #f8f9fa;
    --color-text-muted: #a0a0b0;
    --color-border: #333344;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-red {
    color: var(--color-red);
}

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

/* ==========================================================================
   Background Grid
   ========================================================================== */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: 
        linear-gradient(to right, rgba(0,0,0,0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.06) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    pointer-events: none;
}

[data-theme="dark"] .bg-grid {
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
}

/* Crosshairs on grid */
.bg-grid::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(0,0,0,0.15) 1px, transparent 1px);
    background-size: calc(var(--grid-size) * 4) calc(var(--grid-size) * 4);
    background-position: -1px -1px;
}

[data-theme="dark"] .bg-grid::before {
    background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-red {
    background-color: var(--color-red);
    color: white;
}

.btn-red::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
    z-index: -1;
}

.btn-red:hover {
    background-color: var(--color-red-hover);
    transform: translateY(-2px);
}

.btn-red:hover::before {
    left: 100%;
    transition: 0.5s;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text);
    /* Compensate for border in clip-path visually */
}

.btn-outline:hover {
    background-color: var(--color-text);
    color: var(--color-bg);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.section {
    padding: 6rem 0;
}

.bg-alt {
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    display: block;
    font-family: var(--font-heading);
    color: var(--color-red);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-bg);
    /* Transparence retirée pour la compatibilité avec le thème sombre (les hex ne supportent pas rgba directement) */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 2.5rem;
}

/* Logo image dans navbar */
.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.2s;
}

.logo-img:hover {
    opacity: 0.85;
}

/* Logo dans le footer */
.footer-logo-img {
    height: 42px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
}

.nav-item {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    white-space: nowrap;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red);
    transition: var(--transition);
}

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

.theme-toggle {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    width: 36px;
    height: 36px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
    padding: 0;
}

.theme-toggle:hover {
    border-color: var(--color-red);
    color: var(--color-red);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-text);
    transition: var(--transition);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 3px;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    background: rgba(255,255,255,0.5);
}

/* Recreation of the logo style from image */
.hero-logo-wrapper {
    position: relative;
    padding: 3rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.logo-central-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: repeating-linear-gradient(
        45deg,
        var(--color-red),
        var(--color-red) 15px,
        var(--color-bg) 15px,
        var(--color-bg) 30px
    );
    z-index: -1;
}

/* Logo réel dans le hero */
.logo-central-img {
    display: block;
    width: 140px;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 16px rgba(237,28,36,0.25));
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 4px 16px rgba(237,28,36,0.25)); }
    50%       { filter: drop-shadow(0 4px 28px rgba(237,28,36,0.55)); }
}


.corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-red);
}

.corner.top-left { top: 0; left: 0; border-right: none; border-bottom: none; }
.corner.top-right { top: 0; right: 0; border-left: none; border-bottom: none; }
.corner.bottom-left { bottom: 0; left: 0; border-right: none; border-top: none; }
.corner.bottom-right { bottom: 0; right: 0; border-left: none; border-top: none; }

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 5px;
    background: var(--color-bg);
    padding: 0 1rem;
    text-shadow: 2px 2px 0px rgba(255,255,255,1);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-bg-alt);
    padding: 2.5rem 2rem;
    border: 1px solid var(--color-border);
    position: relative;
    transition: var(--transition);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--color-red);
}

.card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent var(--color-red) transparent transparent;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .card-corner {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-red);
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-lead {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
}

.about-features li {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-visual {
    position: relative;
}

.tech-box {
    background: repeating-linear-gradient(
        45deg,
        #f0f0f0,
        #f0f0f0 10px,
        #ffffff 10px,
        #ffffff 20px
    );
    border: 2px solid var(--color-text);
    padding: 3rem;
    text-align: center;
    position: relative;
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
}

.tech-lines {
    position: absolute;
    top: 10px; right: 10px; bottom: 10px; left: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    clip-path: inherit;
}

.tech-content {
    background: var(--color-bg-alt);
    padding: 2rem;
    position: relative;
    z-index: 2;
    border: 1px solid var(--color-border);
}

.big-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.small-text {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.partners-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.partner-card {
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    border-radius: 15px;
    padding: 25px;
    filter: grayscale(100%);
    opacity: 0.7;
    position: relative;
    overflow: hidden;
}

.partner-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: var(--transition);
    pointer-events: none;
}

.partner-card:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.partner-card:hover::after {
    border-color: var(--color-red);
}

.partner-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

/* ==========================================================================
   Team Section
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

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

.member-avatar {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.avatar-shape {
    width: 100%;
    height: 100%;
    background: var(--color-border);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.team-member:hover .avatar-shape {
    box-shadow: 0 10px 30px rgba(237, 28, 36, 0.2);
    border: 2px solid var(--color-red);
}

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

.member-name {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.member-role {
    color: var(--color-red);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
    background: var(--color-bg-alt);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text);
}

.faq-icon {
    color: var(--color-red);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    color: var(--color-red);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-methods {
    margin-top: 3rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.method-icon {
    width: 40px;
    height: 40px;
    background: rgba(237, 28, 36, 0.1);
    color: var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-form-wrapper {
    background: var(--color-bg);
    padding: 3rem;
    border: 1px solid var(--color-border);
    position: relative;
}

.form-corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--color-red);
}

.form-corner.top-right { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.form-corner.bottom-left { bottom: 10px; left: 10px; border-right: none; border-top: none; }

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 2px rgba(237, 28, 36, 0.1);
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    display: none;
    font-weight: 600;
    text-align: center;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #111;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-logo .logo-text {
    color: #fff;
}

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

.footer-links a:hover {
    color: var(--color-red);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--color-red);
    border-color: var(--color-red);
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    /* --- Navbar --- */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: calc(100vh - 80px);
        background: var(--color-bg-alt);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        /* Utilise transform au lieu de left pour éviter le débordement horizontal */
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-x: hidden;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    /* --- Logo --- */
    .logo-link {
        margin-right: 0;
    }

    .logo-img {
        height: 38px;
    }

    /* --- Container --- */
    .container {
        padding: 0 1rem;
    }

    /* --- Hero --- */
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-logo-wrapper {
        padding: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }

    /* --- Footer --- */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }

    /* --- Sections --- */
    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
   CUSTOM MODALS (FuntubeAlert, FuntubeConfirm, FuntubePrompt)
   ===================================================================== */
.funtube-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}
.funtube-modal-overlay.open {
  opacity: 1; visibility: visible;
}
.funtube-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%; max-width: 400px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}
.funtube-modal-overlay.open .funtube-modal {
  transform: translateY(0) scale(1);
}
.funtube-modal-header {
  padding: 1.5rem 1.5rem 0.5rem;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem;
}
.funtube-modal-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.funtube-modal-icon.info { background: var(--color-blue-dim); color: var(--color-blue); }
.funtube-modal-icon.warning { background: var(--color-yellow-dim); color: var(--color-yellow); }
.funtube-modal-icon.error { background: var(--color-red-dim); color: var(--color-red); }
.funtube-modal-icon.success { background: var(--color-green-dim); color: var(--color-green); }

.funtube-modal-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text);
  letter-spacing: 0.05em;
}
.funtube-modal-body {
  padding: 1rem 1.5rem;
  color: var(--color-text-dim);
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.5;
}
.funtube-modal-input {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.2s;
}
.funtube-modal-input:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px var(--color-red-dim);
}
.funtube-modal-footer {
  padding: 1.25rem 1.5rem;
  background: rgba(0,0,0,0.2);
  display: flex; gap: 1rem;
  justify-content: stretch;
}
.funtube-modal-btn {
  flex: 1;
  padding: 0.75rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.funtube-modal-btn-cancel {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--border);
}
.funtube-modal-btn-cancel:hover {
  background: var(--bg-hover);
  border-color: var(--color-text-muted);
}
.funtube-modal-btn-confirm {
  background: var(--color-red);
  color: #fff;
  border: 1px solid var(--color-red);
  box-shadow: 0 4px 15px var(--color-red-glow);
}
.funtube-modal-btn-confirm:hover {
  background: #c1121f;
  border-color: #c1121f;
  transform: translateY(-1px);
}
.funtube-modal-btn-confirm:active {
  transform: translateY(0);
}
