/*
Theme Name: Viralay Tema
Theme URI: https://viralay.com.tr
Author: Viralay
Author URI: https://viralay.com.tr
Description: Hızlı, güvenli ve modern WordPress teması. Dark/Light mode, glassmorphism header, animasyonlu hero, Pure CSS.
Version: 7.1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: viralay-tema
Tags: custom-background, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ═══════ CSS CUSTOM PROPERTIES ═══════ */
:root {
    --primary:       #0d9488;
    --primary-hover: #0f766e;
    --primary-dark:  #115e59;
    --primary-light: #ccfbf1;
    --primary-rgb:   13, 148, 136;
    --bg-body:      #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary:  #f1f5f9;
    --bg-card:      #ffffff;
    --text-main:      #0f172a;
    --text-secondary: #334155;
    --text-muted:     #64748b;
    --border:        #e2e8f0;
    --border-strong: #cbd5e1;
    --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
    --shadow:     0 4px 12px rgba(0,0,0,.08);
    --shadow-lg:  0 12px 32px rgba(0,0,0,.12);
    --shadow-xl:  0 24px 48px rgba(0,0,0,.16);
    --radius:    0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl:1.5rem;
    --radius-full:9999px;
    --container:   1200px;
    --header-height: 68px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --dur:  0.2s;
}
.dark {
    --bg-body:      #0b1120;
    --bg-secondary: #111827;
    --bg-tertiary:  #1e2a3b;
    --bg-card:      #131f31;
    --text-main:      #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted:     #64748b;
    --border:        #1e2d41;
    --border-strong: #2d3f55;
    --shadow-sm:  0 1px 3px rgba(0,0,0,.3);
    --shadow:     0 4px 12px rgba(0,0,0,.4);
    --shadow-lg:  0 12px 32px rgba(0,0,0,.5);
    --shadow-xl:  0 24px 48px rgba(0,0,0,.6);
    --primary-light: rgba(13,148,136,.15);
}

/* ═══════ RESET & BASE ═══════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem; line-height: 1.65; background-color: var(--bg-body); color: var(--text-main);
    transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
a { color: var(--primary); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--primary-hover); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.25; font-weight: 700; color: var(--text-main); letter-spacing: -0.015em; }
p { color: var(--text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
.skip-to-content { position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-to-content:focus { position: fixed; top: 12px; left: 12px; width: auto; height: auto; z-index: 9999; padding: 12px 20px; background: var(--primary); color: #fff; border-radius: var(--radius); }

/* ═══════ CONTAINER ═══════ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 800px; }

/* ═══════ HEADER ═══════ */
.site-header {
    position: sticky; top: 0; z-index: 200; height: var(--header-height);
    background-color: var(--bg-body); border-bottom: 1px solid var(--border);
    transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
    will-change: transform;
}
.site-header.scrolled {
    background-color: rgba(255,255,255,0.78);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    box-shadow: var(--shadow); border-bottom-color: transparent;
}
.dark .site-header.scrolled { background-color: rgba(11,17,32,0.82); }
.site-header.header-hidden { transform: translateY(-100%); }
.header-inner {
    max-width: var(--container); margin: 0 auto; padding: 0 1.25rem;
    height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
}

/* Logo */
.logo, .footer-logo-link { text-decoration: none; display: inline-flex; align-items: center; }
.logo-img { max-height: 40px; width: auto; }
.logo-wordmark, .footer-logo-text {
    font-size: 1.375rem; font-weight: 800; letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--primary) 0%, #06b6d4 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Desktop Nav */
.desktop-nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
    display: flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: var(--radius);
    font-size: 0.9375rem; font-weight: 500; color: var(--text-secondary);
    transition: all var(--dur) var(--ease); white-space: nowrap;
}
.nav-link i { font-size: 13px; color: var(--primary); }
.nav-link:hover, .nav-link.current { color: var(--primary); background-color: var(--primary-light); }
.header-actions { display: flex; align-items: center; gap: 10px; }

/* User chip */
.user-chip {
    display: flex; align-items: center; gap: 8px; padding: 5px 12px 5px 5px;
    border-radius: var(--radius-full); background: var(--bg-secondary); border: 1px solid var(--border);
    text-decoration: none; transition: all var(--dur) var(--ease);
}
.user-chip:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.user-avatar-chip {
    width: 30px; height: 30px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #06b6d4); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.user-name-chip { font-size: 0.875rem; font-weight: 500; color: var(--text-main); max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Theme toggle */
.theme-toggle {
    display: flex; align-items: center; justify-content: center; width: 38px; height: 38px;
    border-radius: 50%; border: 1px solid var(--border); background: transparent;
    color: var(--text-muted); transition: all var(--dur) var(--ease);
}
.theme-toggle:hover { background: var(--bg-secondary); color: var(--primary); border-color: var(--primary); }
.theme-toggle i { font-size: 15px; }
.theme-icon-sun { display: none; }

/* Mobile toggle */
.mobile-toggle {
    display: none; flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; width: 38px; height: 38px; border: none; background: none; padding: 4px; border-radius: var(--radius);
}
.hamburger-bar { display: block; width: 22px; height: 2px; background: var(--text-main); border-radius: 2px; transition: all 0.3s var(--ease); transform-origin: center; }
.mobile-toggle.active .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════ MOBILE NAV ═══════ */
.mobile-nav {
    position: fixed; inset: 0; right: auto; width: min(320px, 85vw); height: 100%;
    background-color: var(--bg-body); z-index: 300;
    transform: translateX(-100%); transition: transform 0.35s var(--ease);
    overflow-y: auto; display: flex; flex-direction: column; box-shadow: var(--shadow-xl);
}
.mobile-nav.active { transform: translateX(0); }
.mobile-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.52); z-index: 299;
    opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); backdrop-filter: blur(2px);
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }
.mobile-nav-inner { display: flex; flex-direction: column; height: 100%; }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.mobile-nav-close { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: transparent; color: var(--text-muted); display: flex; align-items: center; justify-content: center; }
.mobile-nav-menu { flex: 1; padding: 12px 0; overflow-y: auto; }
.mobile-nav-menu li a { display: flex; align-items: center; gap: 12px; padding: 13px 20px; font-size: 1rem; font-weight: 500; color: var(--text-secondary); transition: all var(--dur) var(--ease); }
.mobile-nav-menu li a i { width: 20px; color: var(--primary); font-size: 15px; }
.mobile-nav-menu li a:hover { background: var(--bg-secondary); color: var(--primary); }
.mobile-nav-cta a { color: var(--primary) !important; font-weight: 600 !important; }
.mobile-nav-logout a { color: #ef4444 !important; }
.mobile-nav-logout a i { color: #ef4444 !important; }
.mobile-nav-footer { padding: 16px 20px; border-top: 1px solid var(--border); flex-shrink: 0; }
.mobile-theme-toggle { display: flex; align-items: center; gap: 10px; width: 100%; padding: 10px 14px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-secondary); color: var(--text-secondary); font-size: 0.9375rem; }
.mobile-theme-label { font-weight: 500; }
body.menu-open { overflow: hidden; }

/* ═══════ BUTTONS ═══════ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 22px; border-radius: var(--radius-full); font-size: 0.9375rem; font-weight: 600;
    cursor: pointer; border: none; text-decoration: none; transition: all var(--dur) var(--ease);
    white-space: nowrap; line-height: 1;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%); color: #fff; box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.35); }
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-dark) 100%); color: #fff; box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.45); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }
.btn-glass { background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.4); color: #fff; backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,0.25); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg-secondary); color: var(--text-main); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #f0fdfb; transform: translateY(-1px); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.7); color: rgba(255,255,255,0.9); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); color: #fff; }
.btn-sm { padding: 7px 16px; font-size: 0.875rem; }
.btn-lg { padding: 13px 30px; font-size: 1rem; }
.btn-xl { padding: 15px 36px; font-size: 1.0625rem; }
.btn-full { width: 100%; }

/* ═══════ LAYOUT & SECTIONS ═══════ */
.main-content { min-height: calc(100vh - var(--header-height) - 300px); }
.section { padding: 80px 0; }

.section-label {
    display: inline-flex; align-items: center; gap: 7px; padding: 5px 14px;
    border-radius: var(--radius-full); background: var(--primary-light); color: var(--primary);
    font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1rem;
}
.dark .section-label { background: rgba(13,148,136,.2); }
.section-title    { font-size: clamp(1.625rem, 4vw, 2.25rem); margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.section-subtitle { font-size: 1.0625rem; color: var(--text-muted); max-width: 600px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-label, .text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.text-primary { color: var(--primary) !important; }

/* ═══════ HERO SECTION ═══════ */
.hero-section {
    position: relative; min-height: 85vh; display: flex; align-items: center;
    overflow: hidden; padding: 80px 0 60px;
    background: linear-gradient(160deg, #0b1120 0%, #0d2137 40%, #0b2e28 70%, #0b1120 100%);
}
.dark .hero-section { background: linear-gradient(160deg, #060b14 0%, #091927 40%, #071e1b 70%, #060b14 100%); }
.hero-bg-glow { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-glow::before, .hero-bg-glow::after { content: ''; position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: heroGlow 8s ease-in-out infinite alternate; }
.hero-bg-glow::before { width: 600px; height: 600px; top: -100px; right: -100px; background: radial-gradient(circle, rgba(13,148,136,0.4) 0%, transparent 70%); }
.hero-bg-glow::after  { width: 500px; height: 500px; bottom: -50px; left: -50px; animation-delay: -4s; background: radial-gradient(circle, rgba(6,182,212,0.3) 0%, transparent 70%); }
@keyframes heroGlow { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(30px,-20px) scale(1.1); } }
.hero-bg-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.5) 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.5) 0%, transparent 80%);
}
.hero-inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 18px; border-radius: var(--radius-full); border: 1px solid rgba(13,148,136,0.5); background: rgba(13,148,136,0.12); backdrop-filter: blur(8px); color: #5eead4; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; margin-bottom: 1.5rem; }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #2dd4bf; box-shadow: 0 0 8px #2dd4bf; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.7; transform:scale(1.3); } }
.hero-title { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1.15; max-width: 820px; margin-bottom: 1.25rem; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.72); max-width: 660px; line-height: 1.7; margin-bottom: 2rem; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 3rem; }
.hero-stats { display: flex; align-items: center; gap: 24px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-full); padding: 12px 28px; backdrop-filter: blur(8px); }
.hero-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.hero-stat strong { font-size: 1.25rem; font-weight: 800; color: #fff; display: block; }
.hero-stat span   { font-size: 0.75rem; color: rgba(255,255,255,0.6); letter-spacing: 0.02em; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* ═══════ PERSONA CARDS ═══════ */
.persona-section { padding: 72px 0; background: var(--bg-body); }
.persona-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.persona-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; text-decoration: none; transition: all 0.3s var(--ease); }
.persona-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.persona-icon-wrap { width: 52px; height: 52px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; }
.persona-icon-wrap i { font-size: 1.25rem; color: #fff; }
.icon-blue   { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.icon-pink   { background: linear-gradient(135deg, #ec4899, #f472b6); }
.icon-purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.icon-teal   { background: linear-gradient(135deg, var(--primary), #06b6d4); }
.icon-orange { background: linear-gradient(135deg, #f97316, #fb923c); }
.persona-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--text-main); }
.persona-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin: 0; }
.persona-arrow { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: var(--primary-light); color: var(--primary); font-size: 0.75rem; transition: all var(--dur) var(--ease); align-self: flex-start; }
.persona-card:hover .persona-arrow { background: var(--primary); color: #fff; transform: translateX(3px); }

/* ═══════ HOW IT WORKS ═══════ */
.hiw-section { padding: 80px 0; background: var(--bg-secondary); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 3rem; }
.step-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px 22px; text-align: center; transition: all 0.3s var(--ease); }
.step-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num { display: inline-block; font-size: 0.75rem; font-weight: 800; color: var(--primary); letter-spacing: 0.08em; background: var(--primary-light); padding: 3px 10px; border-radius: var(--radius-full); margin-bottom: 14px; }
.step-icon-wrap { width: 56px; height: 56px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--primary), #06b6d4); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 8px 24px rgba(13,148,136,0.3); }
.step-icon-wrap i { font-size: 1.25rem; color: #fff; }
.step-card h3 { font-size: 1.0625rem; margin-bottom: 10px; }
.step-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

.section-header-flex { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 2rem; flex-wrap: wrap; }
.section-header-flex .section-title { margin-bottom: 4px; }

/* ═══════ VIDEO GALLERY ═══════ */
.recent-section { padding: 80px 0; }
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.home-videos-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.video-card { display: block; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; text-decoration: none; transition: all 0.3s var(--ease); }
.video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.video-thumbnail { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--bg-tertiary); }
.video-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.video-card:hover .video-img { transform: scale(1.06); }
.video-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s var(--ease); }
.video-card:hover .video-overlay { opacity: 1; }
.play-btn { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.95); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1rem; padding-left: 3px; transform: scale(0.8); transition: transform 0.3s var(--ease); box-shadow: var(--shadow-lg); }
.video-card:hover .play-btn { transform: scale(1); }
.video-dur { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,0.8); color: #fff; padding: 2px 8px; border-radius: var(--radius); font-size: 11px; font-weight: 500; }
.video-info { padding: 14px 16px; }
.video-title { font-size: 0.9375rem; font-weight: 600; color: var(--text-main); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: 0; }
.video-cat { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* Archive */
.archive-header { padding: 56px 0 36px; text-align: center; }
.archive-title { margin-bottom: 8px; }
.archive-subtitle { color: var(--text-muted); margin: 0; }
.filters-section { padding-bottom: 32px; }
.filters-wrapper { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.search-box { display: flex; align-items: center; background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-full); padding: 4px; max-width: 360px; flex: 1; transition: border-color var(--dur); }
.search-box:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.search-icon { padding-left: 14px; color: var(--text-muted); font-size: 14px; }
.search-input { flex: 1; border: none; background: transparent; padding: 9px 12px; font-size: 0.9375rem; color: var(--text-main); outline: none; }
.search-btn { padding: 9px 20px; background: var(--primary); color: #fff; border: none; border-radius: var(--radius-full); font-weight: 600; font-size: 0.875rem; cursor: pointer; transition: background var(--dur); }
.search-btn:hover { background: var(--primary-hover); }
.category-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-link { padding: 7px 16px; border-radius: var(--radius-full); background: var(--bg-secondary); border: 1px solid var(--border); color: var(--text-secondary); font-size: 0.875rem; font-weight: 500; transition: all var(--dur) var(--ease); }
.filter-link:hover, .filter-link.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.pagination { margin-top: 48px; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: var(--radius); background: var(--bg-card); border: 1px solid var(--border); color: var(--text-main); font-weight: 500; transition: all var(--dur); }
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .current { background: var(--primary); border-color: var(--primary); color: #fff; }
.no-results, .no-content { text-align: center; padding: 48px 20px; color: var(--text-muted); }
.license-banner { background: linear-gradient(135deg, var(--primary), var(--primary-hover)); padding: 14px 0; }
.banner-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.banner-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: #fff; }
.banner-text { flex: 1; }
.banner-greeting { color: #fff; font-weight: 600; margin: 0; font-size: 0.9375rem; }
.banner-status  { color: rgba(255,255,255,0.8); font-size: 0.8125rem; margin: 0; }

/* ═══════ CATEGORIES ═══════ */
.cats-section { padding: 72px 0; background: var(--bg-secondary); }
.cats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-top: 2.5rem; }
.cat-card { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 28px 16px; border-radius: var(--radius-xl); text-decoration: none; border: 1px solid var(--border); background: var(--bg-card); transition: all 0.3s var(--ease); text-align: center; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.cat-icon-ring { width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.375rem; transition: transform 0.3s var(--ease); }
.cat-card:hover .cat-icon-ring { transform: scale(1.1); }
.cat-emerald .cat-icon-ring { background: linear-gradient(135deg,#059669,#34d399); color:#fff; }
.cat-teal    .cat-icon-ring { background: linear-gradient(135deg,var(--primary),#06b6d4); color:#fff; }
.cat-cyan    .cat-icon-ring { background: linear-gradient(135deg,#0284c7,#38bdf8); color:#fff; }
.cat-orange  .cat-icon-ring { background: linear-gradient(135deg,#ea580c,#fb923c); color:#fff; }
.cat-card h3   { font-size: 1rem; font-weight: 600; color: var(--text-main); margin: 0; }
.cat-count     { font-size: 0.8125rem; color: var(--text-muted); }

/* ═══════ ABOUT ═══════ */
.about-section { padding: 80px 0; }
.about-sub  { font-size: 1.125rem; font-weight: 600; margin-bottom: 1rem; }
.about-body { font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; }

/* ═══════ FAQ ═══════ */
.faq-section { padding: 80px 0; background: var(--bg-secondary); }
.faq-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 3rem; }
.faq-col-title { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.faq-item { border-bottom: 1px solid var(--border); margin-bottom: 4px; }
.faq-details { border: none; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 0; font-size: 0.9375rem; font-weight: 500; color: var(--text-main); cursor: pointer; list-style: none; user-select: none; transition: color var(--dur); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--primary); }
.faq-q i { font-size: 12px; color: var(--text-muted); transition: transform 0.2s var(--ease); flex-shrink: 0; }
.faq-details[open] .faq-q i { transform: rotate(180deg); }
.faq-a { padding: 0 0 14px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ═══════ CTA BANNER ═══════ */
.cta-banner-section { padding: 72px 0; }
.cta-banner {
    background: linear-gradient(135deg, #0b2e28 0%, #0d9488 40%, #0e7490 100%);
    border-radius: var(--radius-2xl); padding: 56px 48px;
    display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
    position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.cta-banner::after  { content: ''; position: absolute; left: -40px; bottom: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner-content h2 { color: #fff; font-size: clamp(1.375rem, 3vw, 1.875rem); margin-bottom: 8px; }
.cta-banner-content p  { color: rgba(255,255,255,0.8); margin: 0; }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ═══════ AOS ═══════ */
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
[data-aos].aos-visible { opacity: 1; transform: none; }

/* ═══════ CARDS ═══════ */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 24px; transition: all var(--dur) var(--ease); }
.card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ═══════ SINGLE VIDEO ═══════ */
.video-player-section { background: #000; }
.video-container { max-width: var(--container); margin: 0 auto; }
.video-wrapper { position: relative; width: 100%; aspect-ratio: 16/9; }
.video-embed, .video-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-fallback { width: 100%; height: 100%; object-fit: cover; }
.video-info-section { padding: 48px 0; }
.video-layout { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .video-layout { grid-template-columns: 1fr 360px; } }
.video-page-title { font-size: clamp(1.375rem, 4vw, 2rem); margin-bottom: 12px; }
.video-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.cat-badge { padding: 4px 12px; background: var(--primary-light); color: var(--primary); border-radius: var(--radius-full); font-size: 0.8125rem; font-weight: 500; }
.video-main > div { margin-bottom: 32px; }
.block-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 14px; color: var(--text-main); }
.desc-body { color: var(--text-secondary); line-height: 1.8; }
.keywords-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.kw-tag { padding: 4px 12px; background: var(--bg-tertiary); border-radius: var(--radius); font-size: 0.8125rem; color: var(--text-secondary); }
.video-details-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 24px; }
.details-dl { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.dl-row { display: flex; flex-direction: column; gap: 4px; }
.dl-row dt { font-size: 0.8125rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.dl-row dt i { color: var(--primary); }
.dl-row dd { font-weight: 500; color: var(--text-main); }
.dl-row code { font-family: monospace; font-size: 0.8rem; background: var(--bg-tertiary); padding: 2px 6px; border-radius: 4px; }
.video-sidebar { position: sticky; top: calc(var(--header-height) + 20px); }
.license-widget { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 24px; }
.license-widget-header { display: flex; align-items: center; gap: 10px; padding: 18px 22px; background: linear-gradient(135deg, var(--primary), var(--primary-hover)); color: #fff; font-weight: 600; }
.license-widget-header i { font-size: 1.125rem; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px; border-bottom: 1px solid var(--border); }
.price-tag { color: var(--text-muted); font-size: 0.875rem; }
.price-val  { font-size: 1.625rem; font-weight: 800; color: var(--primary); }
.license-cta { padding: 16px 22px; }
.license-cta .btn { width: 100%; justify-content: center; }
.license-features-list { padding: 0 22px 18px; display: flex; flex-direction: column; gap: 8px; }
.license-features-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-secondary); }
.license-features-list li i { color: var(--primary); font-size: 13px; }
.related-videos { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 20px; }
.related-item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); text-decoration: none; transition: all var(--dur); }
.related-item:last-child { border-bottom: none; padding-bottom: 0; }
.related-item:hover .related-title { color: var(--primary); }
.related-thumb { width: 80px; height: 50px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-title { font-size: 0.8125rem; font-weight: 500; color: var(--text-main); line-height: 1.4; flex: 1; }

/* ═══════ LOGIN PAGE ═══════ */
.login-page-section { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 48px 20px; }
.login-container { width: 100%; max-width: 480px; }
.login-hero-icon { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #06b6d4); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; color: #fff; margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(13,148,136,.3); }
.login-options-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 24px; }
.login-option-card { display: block; background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 28px 20px; text-align: center; text-decoration: none; transition: all 0.3s var(--ease); }
.login-option-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.login-option-card h3 { font-size: 1rem; color: var(--text-main); margin: 14px 0 8px; }
.login-option-card p  { font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.login-option-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.375rem; color: #fff; margin: 0 auto; }
.bg-teal { background: linear-gradient(135deg, var(--primary), #06b6d4); }
.bg-cyan  { background: linear-gradient(135deg, #0284c7, #38bdf8); }
.login-footer-links { text-align: center; }
.login-footer-links p { margin-bottom: 14px; color: var(--text-muted); }
.login-action-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.login-form-header { text-align: center; margin-bottom: 28px; }
.login-type-badge { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.375rem; color: #fff; margin: 0 auto 16px; }
.login-form-header h1 { font-size: 1.625rem; margin-bottom: 8px; }
.login-form-header p  { color: var(--text-muted); margin: 0; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: 0.875rem; margin-bottom: 20px; }
.back-link:hover { color: var(--primary); }

/* ═══════ PANEL PAGES ═══════ */
.panel-page { padding: 56px 0; min-height: 70vh; }
.panel-container { max-width: 800px; margin: 0 auto; }
.panel-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; }
.profile-header { display: flex; align-items: center; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--border); margin-bottom: 24px; flex-wrap: wrap; }
.avatar-circle { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #06b6d4); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; font-weight: 700; flex-shrink: 0; }
.profile-info { flex: 1; }
.profile-info h1      { font-size: 1.375rem; margin-bottom: 4px; }
.profile-info .email  { color: var(--primary); font-size: 0.9rem; margin-bottom: 2px; }
.profile-info .status { font-size: 0.8125rem; color: var(--text-muted); margin: 0; }
.profile-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.stat-card { background: var(--bg-secondary); border-radius: var(--radius-lg); padding: 20px; text-align: center; }
.stat-icon { width: 44px; height: 44px; border-radius: var(--radius); background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.stat-icon i { color: var(--primary); font-size: 1.125rem; }
.stat-icon.success   { background: #d1fae5; }
.stat-icon.success i { color: #059669; }
.stat-value { font-size: 1.375rem; font-weight: 700; color: var(--text-main); margin-bottom: 2px; }
.stat-label { font-size: 0.8125rem; color: var(--text-muted); margin: 0; }
.panel-cta { background: linear-gradient(135deg, var(--primary), var(--primary-hover)); border-radius: var(--radius-xl); padding: 32px; text-align: center; color: #fff; margin-bottom: 20px; }
.cta-icon { font-size: 2.5rem; opacity: 0.35; margin-bottom: 14px; }
.panel-cta h3 { font-size: 1.25rem; margin-bottom: 8px; color: #fff; }
.panel-cta p  { opacity: 0.9; margin-bottom: 18px; }
.panel-note { text-align: center; font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ═══════ FORMS ═══════ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 500; margin-bottom: 7px; color: var(--text-main); font-size: 0.9375rem; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 11px 16px; font-size: 0.9375rem; color: var(--text-main); background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); transition: all var(--dur); appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.form-textarea { min-height: 120px; resize: vertical; }

/* ═══════ ALERTS & BADGES ═══════ */
.alert { padding: 14px 18px; border-radius: var(--radius-lg); margin-bottom: 18px; font-size: 0.9375rem; display: flex; align-items: flex-start; gap: 10px; }
.alert i { flex-shrink: 0; margin-top: 2px; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.alert-info    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.dark .alert-success { background: rgba(6,78,59,.3);   color: #6ee7b7; border-color: rgba(167,243,208,.2); }
.dark .alert-error   { background: rgba(127,29,29,.3); color: #fca5a5; border-color: rgba(252,165,165,.2); }
.badge { display: inline-block; padding: 3px 10px; font-size: 0.75rem; font-weight: 600; border-radius: var(--radius-full); }
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-success { background: #d1fae5; color: #065f46; }
.badge-error   { background: #fee2e2; color: #991b1b; }
.badge-warning { background: #fef3c7; color: #92400e; }

/* ═══════ TABLES ═══════ */
.table-wrapper { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 11px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.9375rem; }
th { font-weight: 600; background: var(--bg-secondary); color: var(--text-main); }
tr:hover td { background: var(--bg-secondary); }

/* ═══════ SPINNER ═══════ */
.spinner { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.75s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-container { display: flex; align-items: center; justify-content: center; padding: 48px; }

/* ═══════ FOOTER ═══════ */
.site-footer { background: var(--bg-secondary); border-top: 1px solid var(--border); margin-top: 80px; }
.footer-top { padding: 60px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { padding-right: 20px; }
.footer-tagline { font-size: 0.875rem; color: var(--text-muted); margin-top: 10px; line-height: 1.6; }
.footer-socials { margin-top: 16px; display: flex; gap: 10px; }
.social-link { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; transition: all var(--dur); }
.social-link:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.footer-heading { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-main); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); transition: color var(--dur); }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-copy, .footer-made { font-size: 0.8125rem; color: var(--text-muted); margin: 0; }
.footer-copy strong { color: var(--text-secondary); }

/* ═══════ BACK TO TOP ═══════ */
.back-to-top { position: fixed; bottom: 24px; right: 24px; width: 42px; height: 42px; background: var(--primary); color: #fff; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; font-size: 1rem; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all 0.3s var(--ease); cursor: pointer; z-index: 100; box-shadow: 0 4px 14px rgba(13,148,136,.4); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-hover); transform: translateY(-3px); }

/* ═══════ COOKIE ═══════ */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-card); border-top: 1px solid var(--border); padding: 14px 0; z-index: 500; transform: translateY(100%); transition: transform 0.4s var(--ease); box-shadow: 0 -4px 20px rgba(0,0,0,.1); }
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.cookie-text { font-size: 0.875rem; color: var(--text-secondary); flex: 1; min-width: 260px; }
.cookie-text a { color: var(--primary); }
.cookie-btns { display: flex; gap: 10px; }

/* ═══════ STATIC PAGES & 404 ═══════ */
.page-content, .privacy-content, .viralay-static-page { max-width: 780px; margin: 0 auto; padding: 48px 20px; line-height: 1.8; }
.page-content h1, .privacy-content h1 { font-size: clamp(1.625rem, 4vw, 2.25rem); margin-bottom: 1.5rem; }
.page-content h2, .privacy-content h2 { font-size: clamp(1.25rem, 3vw, 1.625rem); margin-top: 2.5rem; margin-bottom: 1rem; }
.page-content p, .privacy-content p   { margin-bottom: 1rem; }
.page-content ul, .privacy-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.page-content li, .privacy-content li { list-style: disc; margin-bottom: 6px; color: var(--text-secondary); }
.error-404 { text-align: center; padding: 80px 20px; }
.error-404 i { font-size: 4rem; color: var(--text-muted); margin-bottom: 20px; }
.error-404 h1 { margin-bottom: 12px; }
.error-404 p  { color: var(--text-muted); margin-bottom: 24px; }

/* ═══════ LICENSE PAGE ═══════ */
.license-hero { text-align: center; padding: 64px 0 48px; background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-body)); }
.license-hero i { font-size: 3.5rem; color: var(--primary); margin-bottom: 18px; }
.license-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 12px; }
.license-hero p  { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.license-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.license-card { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 30px; transition: all 0.3s var(--ease); }
.license-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.license-icon { width: 56px; height: 56px; border-radius: var(--radius-lg); background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.license-icon i { font-size: 1.375rem; color: var(--primary); }

/* ═══════ UTILITIES ═══════ */
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-8 { margin-top: 2rem; }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) { .nav-link span { display: none; } .nav-link { padding: 9px 11px; } }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .faq-columns { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
    .desktop-nav, .header-actions { display: none; }
    .mobile-toggle { display: flex; }
    .hero-stats { padding: 10px 18px; gap: 16px; flex-wrap: wrap; justify-content: center; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .cta-banner { padding: 40px 28px; flex-direction: column; }
    .section { padding: 56px 0; }
    .persona-grid { grid-template-columns: 1fr 1fr; }
    .videos-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
    .filters-wrapper { flex-direction: column; align-items: stretch; }
    .stats-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
    .hero-title { font-size: 1.875rem; }
    .hero-cta-row { flex-direction: column; align-items: center; }
    .persona-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .cats-grid { grid-template-columns: repeat(2,1fr); }
    .videos-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 12px; border-radius: var(--radius-xl); }
    .hero-stat-divider { width: 80px; height: 1px; }
    .cta-banner { padding: 32px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .login-options-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    [data-aos] { opacity: 1 !important; transform: none !important; }
}
