/* ==========================================================
   AZUL & JACK — SISTEMA VISUAL APPLE DARK LUXURY
   ========================================================== */

:root {
    --bg-main: #08070a;
    --bg-darker: #040305;
    --bg-card: rgba(255, 255, 255, 0.035);
    --bg-card-hover: rgba(255, 255, 255, 0.065);
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 255, 255, 0.18);
    --border-gold: rgba(216, 155, 123, 0.35);
    
    --text-main: #f5f5f7;
    --text-muted: #86868b;
    --text-secondary: #a1a1a6;
    
    --accent: #d89b7b;
    --accent-hover: #e5ab8c;
    --accent-glow: rgba(216, 155, 123, 0.18);
    
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 999px;
    
    --ease-apple: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.35s var(--ease-apple);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

body {
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
    background: radial-gradient(circle at 50% 0%, #170912 0%, var(--bg-main) 70%);
    min-height: 100vh;
}

/* Ambient Glows */
.ambient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(140px);
    opacity: 0.25;
}
.glow-top {
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, var(--accent) 0%, rgba(95, 25, 55, 0.4) 70%, transparent 100%);
}
.glow-bottom {
    bottom: -200px;
    right: -10%;
    background: radial-gradient(circle, rgba(120, 45, 75, 0.3) 0%, transparent 70%);
}

/* Contenedores */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}
.section { padding: 6.5rem 0; }
.bg-darker { background-color: var(--bg-darker); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }

.serif-italic { font-family: var(--font-serif); font-style: italic; }
.gradient-text {
    background: linear-gradient(135deg, #ffffff 40%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-muted { color: var(--text-muted); }
.mt-3 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3.5rem; }

/* Glassmorphism */
.glass {
    background: rgba(10, 10, 12, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-highlight);
    transform: translateY(-3px);
}

/* Navbar */
.navbar-wrapper { position: sticky; top: 0; z-index: 100; width: 100%; }
.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0.9rem 4%; 
    max-width: 1400px; 
    margin: 0 auto; 
    gap: 1.5rem;
}

.logo { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.6rem; 
    font-weight: 700; 
    font-size: 1.15rem; 
    text-decoration: none; 
    color: var(--text-main); 
    white-space: nowrap; 
    flex-shrink: 0;
}
.logo-dot { width: 8px; height: 8px; border-radius: 50%; background-color: var(--accent); flex-shrink: 0; }
.logo .highlight { color: var(--accent); }

.nav-container { 
    display: flex; 
    align-items: center; 
    gap: 2rem; 
    flex-shrink: 0;
}
.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 1.6rem; 
    align-items: center;
    white-space: nowrap;
}
.nav-links a { 
    color: var(--text-secondary); 
    text-decoration: none; 
    font-size: 0.9rem; 
    font-weight: 500; 
    transition: color 0.2s ease; 
}
.nav-links a:hover { color: var(--text-main); }

.auth-buttons { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    white-space: nowrap;
}

.nav-btn-icon { width: 16px; height: 16px; vertical-align: middle; }

/* Botones */
.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-highlight);
    color: var(--text-main);
}

.btn-pill, .btn-apple-primary, .btn-apple-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn-apple-primary, .btn-primary-nav { background: var(--text-main); color: var(--bg-main); }
.btn-apple-primary:hover, .btn-primary-nav:hover { background: #e1e1e6; transform: scale(1.02); }
.btn-apple-secondary { background: rgba(255, 255, 255, 0.05); color: var(--text-main); border-color: var(--border-subtle); }
.btn-apple-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--border-highlight); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn-svg-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* Menú Móvil */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 4px; z-index: 101; }
.menu-toggle .bar { width: 24px; height: 2px; background: var(--text-main); transition: var(--transition); }
.menu-toggle.active .bar:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Hero */
.hero { min-height: 85vh; display: flex; align-items: center; text-align: center; padding-top: 4rem; }
.hero-content { max-width: 840px; margin: 0 auto; }
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    background: var(--accent-glow);
    border: 1px solid rgba(216, 155, 123, 0.25);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
.pill-sm { font-size: 0.75rem; padding: 0.25rem 0.75rem; margin-bottom: 1rem; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background-color: var(--accent); flex-shrink: 0; }
.hero-title { font-size: clamp(2.3rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1.5rem; }
.hero-desc { font-size: 1.15rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; margin-bottom: 3.5rem; }

.hero-proof { display: flex; align-items: center; justify-content: center; gap: 1rem; font-size: 0.85rem; color: var(--text-muted); }
.avatars-group { display: flex; }
.avatar { width: 28px; height: 28px; border-radius: 50%; background: #232228; border: 2px solid var(--bg-main); margin-left: -8px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: var(--accent); }
.avatar:first-child { margin-left: 0; }

/* Section Header */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-tag { color: var(--accent); font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; display: inline-block; margin-bottom: 0.8rem; }
.section-header h2 { font-size: 2.3rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.8rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* Bento Nosotros */
.about-grid-balanced {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.8rem;
    align-items: stretch;
}
.about-card-featured {
    padding: 2.8rem 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-pillars-column {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    justify-content: space-between;
}
.about-card {
    padding: 2rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.bento-subtitle { font-size: 0.8rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.about-card-featured h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 0.8rem; }
.about-card-featured p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }
.about-card h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.4rem; }
.about-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.bento-pills-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.pill { padding: 0.4rem 0.9rem; border-radius: var(--radius-pill); background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-subtle); font-size: 0.85rem; }
.icon-circle { width: 42px; height: 42px; border-radius: 12px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--accent); margin-bottom: 0.8rem; }

/* Showcase Vídeo */
.video-showcase-box {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    padding: 2.5rem;
    align-items: center;
}
.video-showcase-text h3 { font-size: 1.6rem; margin-bottom: 0.8rem; }
.video-showcase-text p { color: var(--text-secondary); font-size: 0.95rem; }
.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.stream-surface {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at 50% 50%, #2a0e1c 0%, #030304 85%);
    cursor: pointer;
}
.play-center-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}
.stream-surface:hover .play-center-btn { transform: scale(1.1); }
.play-icon-shape {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid var(--text-main);
    margin-left: 3px;
}
.stream-placeholder-info { text-align: center; margin-top: 0.8rem; }
.stream-placeholder-info h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--accent); }
.stream-placeholder-info p { font-size: 0.8rem; color: var(--text-muted); }

/* Servicios Grid */
.mentorship-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}
.service-feature-card { padding: 2.5rem 2rem; }
.feature-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-feature-card h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.service-feature-card p { color: var(--text-secondary); font-size: 0.95rem; }

.platforms-bar { padding: 2rem 2.5rem; text-align: center; }
.platforms-bar h4 { font-size: 1.2rem; margin-bottom: 0.4rem; color: var(--accent); }
.platforms-bar p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1.2rem; }
.platforms-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.8rem; }
.platform-item {
    padding: 0.45rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Tarifas Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
}
.pricing-card {
    padding: 2.8rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(216, 155, 123, 0.1) 0%, var(--bg-card) 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.pricing-tag {
    position: absolute;
    top: 1.4rem;
    right: 1.6rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.featured-tag { color: var(--accent); }
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 0.2rem; }
.pricing-duration { font-size: 0.85rem; color: var(--accent); font-weight: 700; margin-bottom: 0.8rem; }
.pricing-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1.5rem; }

.pricing-card .price-box {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-subtle);
}
.pricing-card .price-val { font-size: 2.6rem; font-weight: 800; color: var(--text-main); }
.pricing-card .price-period { font-size: 0.85rem; color: var(--text-muted); }

.pricing-checklist { list-style: none; margin-bottom: 2rem; flex-grow: 1; }
.pricing-checklist li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.3rem;
}
.pricing-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Próximamente Grid */
.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}
.upcoming-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
}
.upcoming-badge { font-size: 0.8rem; font-weight: 700; color: var(--accent); margin-bottom: 0.8rem; }
.upcoming-card h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.upcoming-card p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1.5rem; flex-grow: 1; }
.upcoming-status {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Comunidad Grid */
.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}
.community-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.community-card h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.community-card p { font-size: 0.95rem; color: var(--text-secondary); }

/* RRSS */
.social-links-bar {
    text-align: center;
    padding-top: 1.5rem;
}
.social-links-heading { display: block; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.social-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.social-pill {
    padding: 0.6rem 1.4rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.social-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.2s ease;
}
.social-pill:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-main);
    border-color: var(--border-highlight);
    transform: translateY(-2px);
}
.social-pill:hover .social-icon {
    transform: scale(1.15);
    color: var(--accent);
}

/* Footer */
.footer { padding: 4.5rem 0 3rem; border-top: 1px solid var(--border-subtle); }
.footer-grid { display: flex; justify-content: space-between; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; margin-top: 0.6rem; max-width: 320px; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--text-main); }
.footer-bottom { padding-top: 2rem; text-align: center; font-size: 0.8rem; color: var(--text-muted); }

/* Modales */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.modal.open { opacity: 1; pointer-events: auto; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.82); backdrop-filter: blur(12px); }
.modal-box { position: relative; width: 92%; max-width: 680px; padding: 2.8rem; transform: scale(0.96); transition: transform 0.3s var(--ease-apple); }
.modal-box-narrow { max-width: 480px; }
.modal.open .modal-box { transform: scale(1); }
.close-modal { position: absolute; top: 1.4rem; right: 1.6rem; background: none; border: none; color: var(--text-muted); font-size: 1.8rem; cursor: pointer; }
.close-modal:hover { color: var(--text-main); }

.modal-header { margin-bottom: 1.8rem; }
.modal-header h3 { font-size: 1.5rem; margin-top: 0.2rem; }
.modal-header p { font-size: 0.9rem; color: var(--text-muted); }

.modal-form .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.input-group { margin-bottom: 1.2rem; }
.input-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.4rem; }

.input-group input, .input-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.input-group input:focus, .input-group textarea:focus { 
    border-color: var(--accent); 
    background: rgba(255, 255, 255, 0.08); 
}

/* Custom Select */
.custom-select-wrapper { position: relative; width: 100%; }
.custom-select-wrapper::after {
    content: "▾";
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    pointer-events: none;
    font-size: 1rem;
}
.campus-select {
    width: 100%;
    padding: 0.85rem 2.4rem 0.85rem 1rem;
    border-radius: var(--radius-sm);
    background: #141118;
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color 0.2s, background 0.2s;
}
.campus-select:focus { border-color: var(--accent); background: #191520; }
.campus-select option { background-color: #120f16; color: var(--text-main); padding: 10px; }

.modal-footnote { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 0.8rem; }

/* ==========================================================
   SISTEMA DE NOTIFICACIONES TOAST (DISEÑO BLINDADO)
   ========================================================== */
.toast-container {
    position: fixed !important;
    top: 25px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 999999 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    width: 90% !important;
    max-width: 520px !important;
    pointer-events: none !important;
}

.custom-toast {
    pointer-events: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 1.1rem 1.4rem !important;
    border-radius: var(--radius-md) !important;
    background: rgba(18, 14, 22, 0.96) !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    border: 1px solid var(--border-highlight) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), 0 0 1px rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-25px) scale(0.95) !important;
    opacity: 0 !important;
    transition: transform 0.35s var(--ease-apple), opacity 0.35s var(--ease-apple) !important;
}

.custom-toast.toast-show {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
}

.custom-toast.toast-hide {
    transform: translateY(-15px) scale(0.95) !important;
    opacity: 0 !important;
}

.toast-icon-wrap {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
}

.toast-success .toast-icon-wrap {
    background: rgba(74, 222, 128, 0.15) !important;
    color: #4ade80 !important;
    border: 1px solid rgba(74, 222, 128, 0.4) !important;
}

.toast-error .toast-icon-wrap {
    background: rgba(248, 113, 113, 0.15) !important;
    color: #f87171 !important;
    border: 1px solid rgba(248, 113, 113, 0.4) !important;
}

.toast-info .toast-icon-wrap {
    background: var(--accent-glow) !important;
    color: var(--accent) !important;
    border: 1px solid var(--border-gold) !important;
}

.toast-body {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
    flex-grow: 1 !important;
    min-width: 0 !important;
    text-align: left !important;
}

.toast-title {
    font-size: 0.96rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
}

.toast-message {
    font-size: 0.85rem !important;
    color: var(--text-secondary) !important;
    line-height: 1.45 !important;
    word-break: break-word !important;
}

.toast-close-btn {
    background: none !important;
    border: none !important;
    color: var(--text-muted) !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
    cursor: pointer !important;
    padding: 4px !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: color 0.2s, transform 0.2s !important;
}

.toast-close-btn:hover {
    color: #ffffff !important;
    transform: scale(1.15) !important;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease-apple), transform 0.7s var(--ease-apple);
    will-change: opacity, transform;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 992px) {
    .about-grid-balanced, .video-showcase-box, .community-grid { grid-template-columns: 1fr; }
    .footer-grid { flex-direction: column; gap: 2rem; }
    .footer-links { flex-wrap: wrap; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(8, 7, 10, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.4s var(--ease-apple);
    }
    .nav-container.active { right: 0; }
    .nav-links { flex-direction: column; text-align: center; gap: 1.8rem; }
    .auth-buttons { flex-direction: column; width: 100%; margin-top: 2rem; }
    .hero-actions { flex-direction: column; }
    .modal-form .form-row-2 { grid-template-columns: 1fr; }
    .modal-box { padding: 2rem 1.5rem; }
}