/* ═══════════════════════════════════════════════════════════
   LOVESHOP13 - ANIMATED MODERN DESIGN
   Multiple Advanced Animations
   ═══════════════════════════════════════════════════════════ */

:root {
    /* Цветовая палитра */
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --accent: #FFE66D;
    --dark: #1A1A2E;
    --darker: #0F0F1E;
    --light: #F7FFF7;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    
    /* Шрифт */
    --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark);
    background: var(--darker);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════
   АНИМИРОВАННЫЙ ФОН
   ═══════════════════════════════════════════════════════════ */

/* Частицы */
.particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(180deg, var(--darker) 0%, #16213E 50%, var(--darker) 100%);
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    50% {
        transform: translateY(-500px) translateX(50px) scale(1.5);
        opacity: 1;
    }
}

/* Градиентные орбы */
.gradient-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float-orbs 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-2);
    bottom: -250px;
    right: -250px;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--gradient-3);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float-orbs {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -100px) scale(1.1);
    }
    66% {
        transform: translate(-100px, 100px) scale(0.9);
    }
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */

.site-header {
    background: var(--gradient-1);
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

.header-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: wave-animation 8s infinite linear;
}

.wave-2 {
    animation-duration: 12s;
    animation-delay: -4s;
}

@keyframes wave-animation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-1200px);
    }
}

.animated-logo {
    text-align: center;
    margin-bottom: 32px;
}

/* Глитч эффект для заголовка */
.glitch {
    font-size: 3.5em;
    font-weight: 900;
    color: white;
    position: relative;
    display: inline-block;
    animation: glitch-skew 1s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--secondary);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim-2 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip: rect(20px, 9999px, 80px, 0); }
    10% { clip: rect(100px, 9999px, 10px, 0); }
    20% { clip: rect(50px, 9999px, 150px, 0); }
    30% { clip: rect(120px, 9999px, 30px, 0); }
    40% { clip: rect(10px, 9999px, 90px, 0); }
    50% { clip: rect(80px, 9999px, 140px, 0); }
    60% { clip: rect(40px, 9999px, 60px, 0); }
    70% { clip: rect(110px, 9999px, 20px, 0); }
    80% { clip: rect(70px, 9999px, 130px, 0); }
    90% { clip: rect(30px, 9999px, 100px, 0); }
    100% { clip: rect(90px, 9999px, 40px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(80px, 9999px, 20px, 0); }
    10% { clip: rect(10px, 9999px, 140px, 0); }
    20% { clip: rect(130px, 9999px, 50px, 0); }
    30% { clip: rect(40px, 9999px, 110px, 0); }
    40% { clip: rect(100px, 9999px, 30px, 0); }
    50% { clip: rect(60px, 9999px, 120px, 0); }
    60% { clip: rect(20px, 9999px, 80px, 0); }
    70% { clip: rect(140px, 9999px, 10px, 0); }
    80% { clip: rect(50px, 9999px, 100px, 0); }
    90% { clip: rect(110px, 9999px, 70px, 0); }
    100% { clip: rect(30px, 9999px, 90px, 0); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    25% { transform: skew(0.5deg); }
    50% { transform: skew(-0.5deg); }
    75% { transform: skew(0.3deg); }
    100% { transform: skew(0deg); }
}

.glitch .accent {
    color: var(--accent);
}

.logo-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 12px;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* ═══════════════════════════════════════════════════════════
   БАЗОВЫЕ АНИМАЦИИ
   ═══════════════════════════════════════════════════════════ */

/* Fade In */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* Fade In Up */
.fade-in-up {
    animation: fadeInUp 1s ease;
}

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

/* Fade In Down */
.fade-in-down {
    animation: fadeInDown 1s ease;
}

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

/* Slide In Left */
.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide In Right */
.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide In Bottom */
.slide-in-bottom {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s ease;
}

.slide-in-bottom.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scale In */
.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Zoom In */
.zoom-in {
    animation: zoomIn 1s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Flip In */
.flip-in {
    opacity: 0;
    transform: perspective(1000px) rotateY(-90deg);
    transition: all 0.8s ease;
}

.flip-in.visible {
    opacity: 1;
    transform: perspective(1000px) rotateY(0);
}

/* Pulse */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
}

/* Bounce */
.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Rotate Slow */
.rotate-slow {
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Float Animation */
.float-animation {
    animation: float-smooth 6s ease-in-out infinite;
}

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

/* Delays для последовательных анимаций */
.delay-1 { transition-delay: 0.1s; animation-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; animation-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; animation-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; animation-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; animation-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */

.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-2);
    color: white;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5em;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-text strong {
    color: var(--accent);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-2);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════ */

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8em;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   CATALOG
   ═══════════════════════════════════════════════════════════ */

.catalog {
    background: rgba(255, 255, 255, 0.02);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.card-hover-effect:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-hover-effect:hover .product-image img {
    transform: scale(1.15) rotate(2deg);
}

.product-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.product-badge {
    padding: 8px 16px;
    background: var(--gradient-2);
    color: white;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.product-badge.new {
    background: var(--gradient-4);
}

.product-badge.sale {
    background: var(--gradient-1);
}

.rotate-in {
    animation: rotateIn 0.6s ease;
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.product-content {
    padding: 28px;
}

.product-title {
    font-size: 1.5em;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
}

.product-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    color: var(--accent);
    font-size: 1.1em;
}

.stars-animation {
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.5);
    }
}

.rating-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
}

/* ═══════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════ */

.features {
    background: rgba(0, 0, 0, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    display: inline-block;
}

.bounce-hover {
    transition: transform 0.3s ease;
}

.feature-card:hover .bounce-hover {
    animation: bounceIcon 0.6s ease;
}

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

.feature-card h3 {
    font-size: 1.4em;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */

.about {
    background: rgba(255, 255, 255, 0.02);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 24px;
}

.lead {
    font-size: 1.3em;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.stat-number {
    display: block;
    font-size: 3em;
    font-weight: 900;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

.image-frame {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.image-frame img {
    width: 100%;
    border-radius: 12px;
}

/* ═══════════════════════════════════════════════════════════
   MIRRORS
   ═══════════════════════════════════════════════════════════ */

.mirrors {
    background: rgba(0, 0, 0, 0.2);
}

.mirrors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.mirror-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.mirror-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(8px);
}

.mirror-status {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pulse-status.online {
    background: #10B981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    }
    50% {
        box-shadow: 0 0 30px rgba(16, 185, 129, 1);
    }
}

.mirror-content {
    flex: 1;
}

.mirror-url {
    display: block;
    color: white;
    font-family: monospace;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 4px;
}

.mirror-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85em;
}

.mirror-arrow {
    color: var(--secondary);
    font-size: 1.8em;
    transition: transform 0.3s ease;
}

.mirror-card:hover .mirror-arrow {
    transform: translateX(5px);
}

.mirrors-note {
    padding: 24px 28px;
    background: rgba(255, 230, 109, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border-left: 4px solid var(--accent);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   CONTACTS
   ═══════════════════════════════════════════════════════════ */

.contacts {
    background: rgba(255, 255, 255, 0.02);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
}

.contact-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    display: inline-block;
}

.spin-hover {
    transition: transform 0.6s ease;
}

.contact-card:hover .spin-hover {
    transform: rotate(360deg);
}

.contact-card h3 {
    font-size: 1.4em;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.contact-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.site-footer {
    background: var(--gradient-1);
    color: white;
    padding: 60px 0 32px;
    position: relative;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
}

.wave-footer-1 {
    animation: wave-animation 10s infinite linear;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

.footer-column h4 {
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column h4 .accent {
    color: var(--accent);
}

.footer-column p,
.footer-column ul {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--accent);
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-note {
    font-size: 0.9em;
    opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .glitch {
        font-size: 2.5em;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .glitch {
        font-size: 2em;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.6em;
    }
}

