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

html, body {
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
}

main {
    flex: 1 0 auto;
}

:root {
    /* Colors */
    --bg-primary: #09090B;
    --bg-surface: #18181B;
    --bg-surface-hover: #27272A;
    --text-primary: #F4F4F5;
    --text-secondary: #A1A1AA;
    --text-muted: #52525B;
    --accent-primary: #3B82F6;
    --accent-hover: #2563EB;
    --accent-glow: #60A5FA;
    --telegram-brand: #229ED9;
    --success: #10B981;
    --error: #EF4444;
    
    /* Colors for light backgrounds */
    --bg-light: #F4EBD9;
    --bg-white: #FFFFFF;
    --text-dark: #1F2937;
    --text-dark-secondary: #4B5563;
    
    /* Neon Cyberpunk Colors */
    --neon-cyan: #00f5ff;
    --neon-magenta: #ff00ff;
    --neon-yellow: #ffff00;
    --neon-green: #00ff88;
    --cyber-purple: #8b5cf6;
    
    /* Typography */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 0 15px rgba(59, 130, 246, 0.15);
    --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.3);
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

@media (min-width: 1024px) {
    .container {
        padding: 0;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(39, 39, 42, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: var(--text-primary);
}

.logo-icon {
    border-radius: var(--radius-sm);
}

.nav-links {
    display: none;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-primary);
}

.telegram-nav {
    background: linear-gradient(135deg, var(--telegram-brand) 0%, #1E88E5 100%);
    color: white !important;
    padding: 8px 16px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: var(--spacing-sm);
}

.telegram-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 158, 217, 0.4);
    color: white !important;
}

/* RSS Preview */
.rss-preview {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-md);
    text-align: center;
}

.rss-text {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: var(--spacing-sm);
}

.rss-preview-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--telegram-brand);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rss-preview-btn:hover {
    background: #1E88E5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 158, 217, 0.3);
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: var(--spacing-xs);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(to bottom, var(--bg-primary), #121215);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(34, 158, 217, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-3xl);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    line-height: 1.6;
}

.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, var(--telegram-brand) 0%, #1E88E5 100%);
    color: white;
    border: none;
    border-radius: var(--radius-xl);
    padding: 0 var(--spacing-xl);
    height: 64px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    animation: pulse-glow 3s infinite;
}

.telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(34, 158, 217, 0.5);
}

.telegram-btn.large {
    height: 72px;
    font-size: 20px;
    padding: 0 var(--spacing-2xl);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(34, 158, 217, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(34, 158, 217, 0.5);
    }
}

/* Hero Categories - Desktop: right of content, Mobile: below content */
.hero-categories {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

@media (min-width: 1024px) {
    .hero-categories {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--spacing-md);
        margin-top: 0;
        justify-content: flex-start;
        align-items: center;
    }
}

.category-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--bg-surface);
    border: 1px solid rgba(39, 39, 42, 0.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(59, 130, 246, 0.3);
    background: var(--bg-surface-hover);
}

.category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.category-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-primary);
}

.category-info {
    display: flex;
    flex-direction: column;
}

.category-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.category-count {
    font-size: 13px;
    color: var(--text-secondary);
}

.trust-badges {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 400px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    border-radius: 20px;
    pointer-events: none;
}

.vape-device {
    position: relative;
    width: 300px;
    height: 400px;
    z-index: 1;
}

.device-body {
    width: 120px;
    height: 320px;
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-surface-hover) 100%);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.device-screen {
    width: 80px;
    height: 60px;
    background: var(--accent-primary);
    border-radius: 10px;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.device-button {
    width: 40px;
    height: 40px;
    background: var(--accent-primary);
    border-radius: 50%;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.device-button:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.vapor-effect {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: vapor 3s infinite ease-in-out;
}

@keyframes vapor {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(-20px) scale(1.2);
    }
}

/* Product Showcase - Cyberpunk Style */
.product-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-image {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(57, 255, 20, 0.15));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.device-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 25px rgba(57, 255, 20, 0.25));
}

@media (max-width: 1024px) {
    .product-showcase {
        margin-top: 30px;
    }
    
    .device-image {
        max-width: 280px;
    }
}
    width: 12px;
    height: 12px;
    background: rgba(59, 130, 246, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
    animation: indicatorBlink 2s infinite ease-in-out;
}

@keyframes indicatorBlink {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.device-silhouette {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
    height: 160px;
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 26, 0.8) 100%);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.device-tags {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.device-tag {
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: tagFade 3s infinite ease-in-out;
}

.device-tag:nth-child(2) {
    animation-delay: 1s;
}

@keyframes tagFade {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@media (max-width: 1024px) {
    .product-showcase {
        margin-top: 40px;
    }
    
    .device-showcase {
        width: 280px;
        height: 240px;
    }
    
    .main-device {
        width: 180px;
        height: 180px;
    }
    
    .device-silhouette {
        width: 120px;
        height: 140px;
        right: -40px;
    }
}

/* Sections */
.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
}

/* Products Section */
.products {
    padding: var(--spacing-3xl) 0;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 39, 42, 0.5);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(59, 130, 246, 0.3);
}

.product-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(34, 158, 217, 0.05) 100%);
    border-radius: var(--radius-sm);
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.product-brand {
    font-size: 14px;
    color: var(--accent-primary);
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.product-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-primary);
}

.product-cta {
    background: none;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.product-cta:hover {
    background: var(--accent-primary);
    color: white;
}

/* Benefits Section */
.benefits {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(24, 24, 27, 0.3) 50%, transparent 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    text-align: center;
    padding: var(--spacing-lg);
}

.benefit-icon {
    margin-bottom: var(--spacing-md);
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.benefit-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: var(--spacing-3xl) 0;
}

.about-content {
    display: grid;
    gap: var(--spacing-2xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 2fr 1fr;
    }
}

.about-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 28px;
    }
}

.about-visual {
    display: flex;
    justify-content: center;
}

.team-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    max-width: 300px;
    border: 1px solid rgba(39, 39, 42, 0.5);
}

.team-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-glow) 100%);
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image::before {
    content: '👨‍💼';
    font-size: 48px;
}

.team-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.team-card p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(24, 24, 27, 0.5) 100%);
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
}

/* ============================================
   СТИЛИ ДЛЯ СЕКЦИИ БРОНИРОВАНИЯ (booking-section)
   ============================================ */

/* Секция бронирования */
.booking-section {
    background: linear-gradient(135deg, #2F5233 0%, #3B82F6 100%);
    padding: 80px 0;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.booking-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Контейнер формы бронирования */
.booking-container {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Обёртка формы бронирования */
.booking-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

@media (max-width: 480px) {
    .booking-form-wrapper {
        padding: 24px 20px;
        border-radius: 16px;
    }
}

/* Ряд формы */
.booking-form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .booking-form-wrapper .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
}

/* Группа полей формы */
.booking-form-wrapper .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .booking-form-wrapper .form-group {
        margin-bottom: 16px;
    }
}

/* Метки полей формы */
.booking-form-wrapper .form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

/* Поля ввода формы */
.booking-form-wrapper .form-group input,
.booking-form-wrapper .form-group select,
.booking-form-wrapper .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: white;
    color: #1F2937;
    font-family: inherit;
    box-sizing: border-box;
}

.booking-form-wrapper .form-group input:focus,
.booking-form-wrapper .form-group select:focus,
.booking-form-wrapper .form-group textarea:focus {
    outline: none;
    border-color: #2F5233;
    box-shadow: 0 0 0 3px rgba(47, 82, 51, 0.1);
}

.booking-form-wrapper .form-group input::placeholder,
.booking-form-wrapper .form-group textarea::placeholder {
    color: #9CA3AF;
}

/* Текстовое поле */
.booking-form-wrapper .form-group textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
}

/* Выпадающий список */
.booking-form-wrapper .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='%236B7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 44px;
}

/* Кнопка отправки формы */
.booking-form-wrapper .submit-btn {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
    margin-top: 10px;
}

.booking-form-wrapper .submit-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.booking-form-wrapper .submit-btn:active {
    transform: translateY(0);
}

.booking-form-wrapper .submit-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Контактная информация под формой */
.booking-section .contact-info {
    margin-top: 30px;
    text-align: center;
}

.booking-section .contact-info p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Amenities Section */
.amenities {
    background: var(--bg-light);
    padding: var(--spacing-2xl) 0;
}

.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
    margin-top: var(--spacing-xl);
}

.amenity-card {
    background: white;
    padding: 24px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1 1 180px;
    max-width: 250px;
    min-width: 180px;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.amenity-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Gallery Section */
.gallery {
    background: white;
    padding: var(--spacing-2xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: var(--spacing-xl);
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: var(--spacing-2xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
}

.about-content p {
    color: var(--text-dark-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item span {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.green {
    background: #dcfce7;
    color: #16a34a;
}

.feature-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.about-images {
    position: relative;
}

.owner-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.owner-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.owner-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    font-size: 16px;
    font-weight: 500;
}

/* ============================================
   БЛОК ИСПРАВЛЕНИЙ: FOOTER И BOOKING FORM
   ============================================ */

/* Стили для липкого подвала (Sticky Footer) */
html, body {
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: 'Noto Sans', system-ui, -apple-system, sans-serif;
    color: #1F2937;
    background: #F4EBD9;
    line-height: 1.6;
}

/* Основной контент занимает всё доступное пространство */
main {
    flex: 1 0 auto;
    width: 100%;
    min-width: 0;
}

/* Секции не должны создавать flex-контекст для подвала */
section {
    padding: 100px 0;
    min-width: 0;
}

/* ============================================
   СТИЛИ ДЛЯ ПОДВАЛА (FOOTER)
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, #1e3a29 0%, #2d5a3d 50%, #1e3a29 100%);
    color: white;
    padding: 60px 0 30px;
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    margin-top: auto;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22c55e, #16a34a, #4ade80);
}

.site-footer .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Сетка подвала */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 60px;
    }
}

/* Бренд подвала */
.footer-brand {
    max-width: 320px;
}

.footer-brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo {
    color: #4ade80;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.footer-brand-name {
    font-size: 24px;
    font-weight: 700;
    color: white;
    font-family: 'Noto Sans', system-ui, sans-serif;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background: #229ED9;
    transform: translateY(-3px);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Заголовки секций подвала */
.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    font-family: 'Noto Sans', system-ui, sans-serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #4ade80;
}

/* Списки ссылок */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-list a:hover {
    color: #4ade80;
    padding-left: 15px;
}

.footer-list a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #4ade80;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Нижняя часть подвала */
.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .site-footer .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.site-footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* ============================================
   СТИЛИ ДЛЯ СЕКЦИИ БРОНИРОВАНИЯ
   ============================================ */
.booking-section {
    background: linear-gradient(135deg, #2F5233 0%, #3B82F6 100%);
    padding: 80px 0;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.booking-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Заголовок секции бронирования */
.booking-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.booking-section .section-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.booking-section .section-title {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Noto Sans', system-ui, sans-serif;
}

.booking-section > .container > .section-header > p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Контейнер формы */
.booking-container {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Обёртка формы */
.booking-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

@media (max-width: 480px) {
    .booking-form-wrapper {
        padding: 24px 20px;
        border-radius: 16px;
    }
}

/* Ряд формы */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
}

/* Группа полей формы */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

.booking-form-wrapper .form-group {
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .booking-form-wrapper .form-group {
        margin-bottom: 16px;
    }
}

.form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: white;
    color: #1F2937;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2F5233;
    box-shadow: 0 0 0 3px rgba(47, 82, 51, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='%236B7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 44px;
}

/* Кнопка отправки */
.submit-btn {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.submit-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

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

.submit-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Контактная информация под формой */
.booking-section .contact-info {
    margin-top: 30px;
    text-align: center;
}

.booking-section .contact-info p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   ИСПРАВЛЕНИЯ КОНТЕЙНЕРА
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ============================================
   ИСПРАВЛЕНИЯ ДЛЯ RTL (АРАБСКИЙ)
   ============================================ */
html[dir="rtl"] .footer-grid {
    direction: rtl;
}

html[dir="rtl"] .footer-heading::after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .footer-list a:hover {
    padding-left: 0;
    padding-right: 15px;
}

html[dir="rtl"] .footer-list a::before {
    left: auto;
    right: 0;
}

html[dir="rtl"] .footer-list a::before {
    transform: translateX(10px);
}

html[dir="rtl"] .footer-list a:hover::before {
    transform: translateX(0);
}

html[dir="rtl"] .site-footer .footer-bottom {
    flex-direction: column;
}

@media (min-width: 768px) {
    html[dir="rtl"] .site-footer .footer-bottom {
        flex-direction: row-reverse;
    }
}

/* ============================================
   АДАПТИВНОСТЬ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ
   ============================================ */
@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0 25px;
    }
    
    .footer-grid {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-brand-link {
        justify-content: center;
    }
    
    .footer-heading {
        text-align: center;
        font-size: 16px;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-list {
        text-align: center;
    }
    
    .footer-list li {
        justify-content: center;
    }
    
    .booking-section {
        padding: 60px 0;
    }
    
    .booking-section .section-header {
        margin-bottom: 40px;
    }
    
    .booking-section .section-title {
        font-size: 1.8rem;
    }
    
    .booking-section > .container > .section-header > p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-brand-name {
        font-size: 20px;
    }
    
    .footer-brand-desc {
        font-size: 13px;
    }
    
    .footer-list li {
        font-size: 13px;
    }
    
    .booking-section {
        padding: 50px 0;
    }
    
    .booking-form-wrapper {
        padding: 24px 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* Предотвращает zoom на iOS */
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

/* ============================================
   СОВРЕМЕННЫЙ ВИДЖЕТ БРОНИРОВАНИЯ
   ============================================ */
.booking-widget {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 24px;
    max-width: 100%;
    margin: 0 auto;
}

.booking-widget h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.booking-widget form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.booking-widget .form-group {
    display: flex;
    flex-direction: column;
}

.booking-widget .form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin-bottom: 6px;
}

.booking-widget .form-group input,
.booking-widget .form-group select {
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #1a1a1a;
    background: #fafafa;
    transition: all 0.2s ease;
}

.booking-widget .form-group input:focus,
.booking-widget .form-group select:focus {
    outline: none;
    border-color: #2d5a3d;
    background: white;
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

.booking-widget .submit-btn {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.booking-widget .submit-btn:hover {
    background: #20bd5a;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.booking-widget .submit-btn:active {
    transform: translateY(0);
}

.booking-widget .submit-btn svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 768px) {
    .booking-widget {
        padding: 16px;
        border-radius: 12px;
    }
    
    .booking-widget form {
        grid-template-columns: 1fr;
    }
    
    .booking-widget .submit-btn {
        padding: 12px 20px;
    }
}

/* ============================================
   ПЛАВАЮЩАЯ КНОПКА WHATSAPP
   ============================================ */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-label {
    background: white;
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    font-weight: 500;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.25s ease;
}

.whatsapp-float:hover .whatsapp-label {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
    }
    
    .whatsapp-label {
        display: none;
    }
    
    .whatsapp-btn {
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
}

/* ============================================
   МОБИЛЬНАЯ СТИКЕР-КНОПКА
   ============================================ */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(24, 24, 27, 0.95);
    backdrop-filter: blur(12px);
    padding: var(--spacing-sm);
    border-top: 1px solid rgba(39, 39, 42, 0.5);
    z-index: 50;
    display: none;
}

@media (max-width: 768px) {
    .mobile-cta {
        display: block;
    }
}

.mobile-cta-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--telegram-brand) 0%, #1E88E5 100%);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm);
    height: 48px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    cursor: pointer;
    box-shadow: var(--shadow-glow);
}

/* ============================================
   ССЫЛКА НА TELEGRAM В ФУТЕРЕ
   ============================================ */
.footer-telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--telegram-brand);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.footer-telegram-link:hover {
    background: #1E88E5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 158, 217, 0.3);
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background: var(--bg-surface);
    border: 1px solid var(--tg-border);
    border-radius: var(--radius-md);
    padding: 16px 8px;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.language-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.language-btn:hover {
    background: var(--bg-surface-hover);
    color: var(--text-primary);
}

.language-btn.active {
    background: var(--accent-primary);
    color: white;
}

/* SEO Content Section */
.seo-content {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-surface);
    margin-top: var(--spacing-3xl);
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 768px) {
    .seo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.seo-card {
    background: var(--bg-primary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--tg-border);
}

.seo-card h3 {
    color: var(--accent-primary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.seo-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

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

.product-card,
.benefit-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

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

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

/* Print Styles */
@media print {
    .header,
    .mobile-cta,
    .telegram-btn {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-visual {
        display: none;
    }
}

/* RSS Posts Section */
.rss-posts {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--tg-border);
}

.rss-posts .container {
    max-width: 1200px;
}

.categories-filter {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
    margin: var(--spacing-xl) 0;
}

.category-btn {
    background: var(--bg-primary);
    border: 1px solid var(--tg-border);
    color: var(--text-secondary);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-btn:hover {
    background: var(--bg-surface-hover);
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.category-btn.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.rss-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    min-height: 400px;
}

.rss-post-card {
    background: var(--bg-primary);
    border: 1px solid var(--tg-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.rss-post-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg);
}

.rss-post-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--bg-surface);
}

.rss-post-content {
    padding: var(--spacing-md);
}

.rss-post-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-sm) 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rss-post-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 var(--spacing-sm) 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rss-post-price {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: white;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 var(--spacing-sm) 0;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.rss-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--tg-border);
}

.rss-post-date {
    color: var(--text-secondary);
    font-size: 12px;
}

.rss-post-category {
    background: var(--accent-primary);
    color: white;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 500;
}

.rss-cta {
    text-align: center;
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background: var(--bg-primary);
    border: 1px solid var(--tg-border);
    border-radius: var(--radius-md);
}

.rss-cta p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

.pagination-btn {
    background: var(--bg-primary);
    border: 1px solid var(--tg-border);
    color: var(--text-primary);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    min-width: 120px;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--bg-surface-hover);
    border-color: var(--accent-primary);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    min-width: 100px;
    text-align: center;
}

/* Loading State */
.loading-skeleton {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    height: 300px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Error State */
.error-message {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-secondary);
}

.error-message svg {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-md);
    opacity: 0.5;
}

/* Sky One Premium Highlight */
.sky-one-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sky-one-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sky-one-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
    font-size: 20px;
}

.badge-text {
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sky-one-description {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin: var(--spacing-md) 0;
    position: relative;
    z-index: 1;
}

.sky-one-description strong {
    color: #FFD700;
    font-weight: 700;
}

.sky-one-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.feature {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

/* Sky One Product Cards */
.sky-one-product {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border: 2px solid #4A90E2;
    position: relative;
}

.sky-one-product::before {
    content: 'PREMIUM';
    position: absolute;
    top: -12px;
    right: 16px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.sky-one-product .product-image {
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.sky-one-product .product-name {
    color: #FFD700;
}

.sky-one-product .product-brand {
    color: #87CEEB;
}

.sky-one-product .product-description {
    color: rgba(255, 255, 255, 0.9);
}

.sky-one-product .product-price {
    color: #FFD700;
    font-weight: 700;
}

.sky-one-product .product-cta {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    font-weight: 700;
}

.sky-one-product .product-cta:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Telegram Carousel */
.telegram-carousel {
    margin: var(--spacing-xl) 0;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    border: 1px solid var(--tg-border);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-slide:hover {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    transform: scale(1.02);
}

.carousel-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    width: 100%;
}

.carousel-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 2px solid var(--accent-primary);
    flex-shrink: 0;
}

.carousel-text {
    flex: 1;
    min-width: 0;
}

.carousel-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 var(--spacing-xs) 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-date {
    color: var(--accent-primary);
    font-size: 12px;
    font-weight: 500;
    margin-top: var(--spacing-xs);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(54, 153, 235, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: var(--spacing-md);
}

.carousel-next {
    right: var(--spacing-md);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.3);
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--accent-primary);
    transform: scale(1.2);
}

/* Featured Video Section */
.featured-video {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-surface);
    position: relative;
}

.featured-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.video-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.video-container {
    order: 2;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #000;
    max-width: 100%;
    aspect-ratio: 16/9;
}

/* Video Features Framed Layout */
.video-features-framed {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(9, 9, 11, 0.9) 0%, rgba(24, 24, 27, 0.9) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 
        0 0 30px rgba(59, 130, 246, 0.1),
        inset 0 0 60px rgba(59, 130, 246, 0.05);
    position: relative;
    overflow: hidden;
    max-height: 500px;
    overflow-y: auto;
}

/* Reflection effect on background */
.video-features-framed::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: videoFeatureGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes videoFeatureGlow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: translate(10%, 10%) rotate(5deg);
        opacity: 0.8;
    }
    50% {
        transform: translate(0, 20%) rotate(0deg);
        opacity: 1;
    }
    75% {
        transform: translate(-10%, 10%) rotate(-5deg);
        opacity: 0.8;
    }
}

.feature-frame {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-surface);
    border: 1px solid rgba(39, 39, 42, 0.6);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-md);
}

.feature-frame:hover {
    transform: translateX(8px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 
        0 4px 20px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-frame:hover::before {
    opacity: 1;
}

.feature-frame .feature-icon {
    margin-bottom: 0;
    flex-shrink: 0;
    position: relative;
}

.feature-frame .feature-content {
    flex: 1;
    min-width: 0;
}

.feature-frame h4 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.feature-frame p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.product-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-lg);
    background: #000;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: var(--spacing-xl);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.video-container:hover .video-overlay {
    transform: translateY(0);
}

.video-info h3 {
    color: white;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 var(--spacing-xs) 0;
}

.video-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

/* Video Responsive */
@media (max-width: 768px) {
    .telegram-carousel {
        margin: var(--spacing-lg) 0;
    }
    
    .carousel-container {
        height: 180px;
    }
    
    .carousel-content {
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
    
    .carousel-image {
        width: 50px;
        height: 50px;
    }
    
    .carousel-title {
        font-size: 14px;
    }
    
    .carousel-description {
        font-size: 13px;
    }
    
    .video-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .video-container {
        order: 2;
        max-width: 100%;
    }
    
    .video-features-framed {
        order: 1;
        max-height: 300px;
        gap: var(--spacing-sm);
    }
    
    .feature-frame {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    .feature-frame h4 {
        font-size: 14px;
    }
    
    .feature-frame p {
        font-size: 12px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
}

/* Telegram Chat Live Section */
.telegram-chat-live {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 50%, #1a0b2e 100%);
    position: relative;
    overflow: hidden;
}

.telegram-chat-live::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 240, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 222, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 240, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.chat-live-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.chat-live-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: var(--spacing-sm);
    text-shadow: 
        0 0 10px rgba(0, 240, 255, 0.5),
        0 0 20px rgba(0, 240, 255, 0.3),
        0 0 40px rgba(0, 240, 255, 0.2);
}

.highlight-live {
    color: #00f0ff;
    text-shadow: 
        0 0 10px #00f0ff,
        0 0 20px #00f0ff,
        0 0 40px #00f0ff;
}

.chat-live-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.chat-live-card {
    background: linear-gradient(145deg, rgba(20, 20, 40, 0.9) 0%, rgba(30, 30, 60, 0.9) 100%);
    border: 3px solid #00f0ff;
    border-radius: 24px;
    padding: var(--spacing-2xl);
    position: relative;
    z-index: 1;
    box-shadow: 
        0 0 30px rgba(0, 240, 255, 0.3),
        0 0 60px rgba(0, 240, 255, 0.1),
        inset 0 0 60px rgba(0, 240, 255, 0.05);
    overflow: hidden;
}

.chat-live-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 49%, rgba(0, 240, 255, 0.1) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(0, 240, 255, 0.05) 50%, transparent 51%);
    background-size: 100px 100px;
    perspective: 500px;
    opacity: 0.5;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

.chat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

/* Instructions Column */
.chat-instructions {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.instructions-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xl);
    line-height: 1.2;
}

.text-cyan {
    color: #00f0ff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.text-pink {
    color: #ff00de;
    text-shadow: 0 0 10px rgba(255, 0, 222, 0.5);
}

.instruction-step {
    margin-bottom: var(--spacing-md);
}

.step-text {
    font-size: 18px;
    color: white;
    line-height: 1.6;
}

.highlight-yellow {
    color: #fff200;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 242, 0, 0.5);
}

.step-arrows {
    display: flex;
    gap: 12px;
    margin: var(--spacing-md) 0;
    padding-left: 10px;
}

.arrow-down {
    font-size: 24px;
    color: #00f0ff;
    text-shadow: 0 0 10px #00f0ff;
    animation: arrowPulse 1s ease-in-out infinite;
}

.arrow-down:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow-down:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(5px); opacity: 0.7; }
}

.instruction-footer {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.instruction-footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-style: italic;
}

/* Phone Graphic Column */
.phone-graphic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.phone-frame {
    width: 200px;
    height: 400px;
    border: 3px solid #00f0ff;
    border-radius: 30px;
    padding: 8px;
    box-shadow: 
        0 0 30px rgba(0, 240, 255, 0.4),
        inset 0 0 20px rgba(0, 240, 255, 0.1);
    position: relative;
    background: linear-gradient(145deg, rgba(10, 10, 30, 0.9) 0%, rgba(20, 20, 50, 0.9) 100%);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #1a1a2e;
    border-radius: 0 0 15px 15px;
    border: 2px solid #00f0ff;
    border-top: none;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a3a 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    padding: 30px 12px 20px;
    display: flex;
    flex-direction: column;
}

.phone-notch {
    display: none;
}

.chat-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-end;
}

.message {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 1.4;
    animation: messageSlide 0.3s ease-out;
}

.message-right {
    align-self: flex-end;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.message-left {
    align-self: flex-start;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    color: white;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.message-left.admin {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(0, 240, 255, 0.2);
}

.message p {
    margin: 0;
}

.message strong {
    color: #00f0ff;
}

.phone-home {
    width: 40px;
    height: 6px;
    background: #ff00de;
    border-radius: 10px;
    margin: 10px auto 0;
    box-shadow: 0 0 10px rgba(255, 0, 222, 0.5);
}

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

.code-tags {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.code-tag {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0.6;
    animation: codeFloat 3s ease-in-out infinite;
}

.tag-php {
    top: 10%;
    left: -20px;
    color: #00f0ff;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.tag-data {
    top: 10%;
    right: -30px;
    color: #00f0ff;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.tag-json {
    bottom: 15%;
    right: -40px;
    color: #ff00de;
    border: 1px solid rgba(255, 0, 222, 0.3);
}

.tag-api {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff200;
    border: 1px solid rgba(255, 242, 0, 0.3);
}

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

/* Responsive */
@media (max-width: 768px) {
    .chat-live-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .chat-live-subtitle {
        font-size: 14px;
    }
    
    .chat-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .instructions-heading {
        font-size: 24px;
        text-align: center;
    }
    
    .step-text {
        font-size: 16px;
        text-align: center;
    }
    
    .step-arrows {
        justify-content: center;
    }
    
    .instruction-footer p {
        text-align: center;
    }
    
    .chat-live-card {
        padding: var(--spacing-lg);
    }
    
    .phone-frame {
        width: 160px;
        height: 320px;
    }
    
    .code-tag {
        font-size: 10px;
    }
    
    .tag-php {
        left: -10px;
    }
    
    .tag-data {
        right: -15px;
    }
    
    .tag-json {
        right: -20px;
    }
}

/* Loading States */
img.loading, video.loading {
    opacity: 0.5;
    filter: blur(2px);
    transition: all 0.3s ease;
}

img.loaded, video.loaded {
    opacity: 1;
    filter: none;
}

img.error {
    opacity: 0.7;
    filter: grayscale(100%);
    background: var(--bg-surface);
}

/* Enhanced Product Cards */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.product-card:hover::after {
    left: 100%;
}

/* Video Optimizations */
.product-video {
    object-fit: cover;
    background: #000;
    transition: all 0.3s ease;
}

.product-video.loading {
    filter: brightness(0.7);
}

.product-video.loaded {
    filter: brightness(1);
}

/* Performance Optimizations */
.lazy-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* Carousel Performance */
.carousel-track {
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .carousel-track,
    .product-card,
    .telegram-carousel,
    .sky-one-highlight {
        animation: none !important;
        transition: none !important;
    }
    
    .carousel-slide {
        transform: none !important;
    }
}

/* RSS Responsive */
@media (max-width: 768px) {
    .rss-posts-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .categories-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: var(--spacing-sm);
    }
    
    .category-btn {
        flex-shrink: 0;
    }
    
    .pagination {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .pagination-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .page-info {
        order: -1;
    }
}

@media (max-width: 480px) {
    .rss-post-content {
        padding: var(--spacing-sm);
    }
    
    .rss-post-title {
        font-size: 16px;
    }
    
    .rss-post-description {
        font-size: 13px;
    }
}

/* Animated Vape Cigarette */
.animated-vape {
    width: 300px;
    height: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--spacing-xl) auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.animated-vape:hover {
    transform: scale(1.05);
}

.vape-body {
    position: relative;
    width: 180px;
    height: 40px;
    background: linear-gradient(90deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    border-radius: 20px;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.animated-vape:hover .vape-body {
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(54, 153, 235, 0.3);
}

.vape-tip {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, #e74c3c 0%, #c0392b 70%, #a93226 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(231, 76, 60, 0.8),
        0 0 20px rgba(231, 76, 60, 0.4),
        0 0 30px rgba(231, 76, 60, 0.2);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 
            0 0 10px rgba(231, 76, 60, 0.8),
            0 0 20px rgba(231, 76, 60, 0.4),
            0 0 30px rgba(231, 76, 60, 0.2);
    }
    100% {
        box-shadow: 
            0 0 15px rgba(231, 76, 60, 1),
            0 0 25px rgba(231, 76, 60, 0.6),
            0 0 40px rgba(231, 76, 60, 0.4);
    }
}

.vape-filter {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 35px;
    background: linear-gradient(90deg, #f39c12 0%, #e67e22 50%, #d35400 100%);
    border-radius: 3px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.vape-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 25px;
    background: #000;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-size: 12px;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.vape-screen.active {
    animation: screenPulse 1.5s ease-in-out infinite;
}

@keyframes screenPulse {
    0%, 100% {
        text-shadow: 0 0 5px #00ff00;
    }
    50% {
        text-shadow: 0 0 10px #00ff00, 0 0 15px #00ff00;
    }
}

/* Smoke Effects */
.smoke-container {
    position: absolute;
    right: -10px;
    top: -20px;
    width: 50px;
    height: 60px;
    pointer-events: none;
    overflow: hidden;
}

.smoke-puff {
    position: absolute;
    bottom: 0;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.1) 70%, transparent 100%);
    border-radius: 50%;
    animation: rise 3s ease-out infinite;
    opacity: 0;
}

.smoke-puff:nth-child(1) {
    left: 10px;
    animation-delay: 0s;
    animation-duration: 3s;
}

.smoke-puff:nth-child(2) {
    left: 20px;
    animation-delay: 0.8s;
    animation-duration: 3.5s;
}

.smoke-puff:nth-child(3) {
    left: 30px;
    animation-delay: 1.6s;
    animation-duration: 4s;
}

.smoke-puff:nth-child(4) {
    left: 5px;
    animation-delay: 2.4s;
    animation-duration: 3.2s;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-80px) scale(1.5);
        opacity: 0;
    }
}

/* Interactive Effects */
.animated-vape.activated .vape-screen {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.animated-vape.activated .vape-screen::after {
    content: 'VAPING';
    animation: textBlink 1s ease-in-out infinite;
}

@keyframes textBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

.animated-vape.activated .smoke-puff {
    animation-play-state: running;
}

.animated-vape:not(.activated) .smoke-puff {
    animation-play-state: paused;
}

/* Vape Info Panel */
.vape-info {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-primary);
    border: 1px solid var(--tg-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    min-width: 200px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.animated-vape:hover .vape-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.vape-info h4 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 14px;
    margin: 0 0 var(--spacing-xs) 0;
}

.vape-info p {
    color: var(--text-secondary);
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

/* Responsive for Vape */
@media (max-width: 768px) {
    .animated-vape {
        width: 250px;
        height: 160px;
    }
    
    .vape-body {
        width: 150px;
        height: 35px;
    }
    
    .vape-tip {
        width: 20px;
        height: 20px;
        right: -12px;
    }
    
    .vape-screen {
        width: 50px;
        height: 20px;
        font-size: 10px;
    }
}

/* Cyber Device Animation - FNF Sky Urban Style */
.cyber-device-container {
    width: 400px;
    height: 300px;
    position: relative;
    margin: var(--spacing-xl) auto;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cyber-device-container:hover {
    transform: scale(1.05);
}

.cyber-device {
    position: relative;
    width: 280px;
    height: 180px;
    animation: cyberFloat 4s ease-in-out infinite;
}

@keyframes cyberFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    75% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

/* Main Device Body */
.device-body {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 30%, #1a1a1a 100%);
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        inset 0 2px 8px rgba(255, 255, 255, 0.1),
        inset 0 -2px 8px rgba(0, 0, 0, 0.5);
    border: 3px solid #333;
}

/* LED Display Screen */
.led-display {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 180px;
    height: 60px;
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 8px;
    border: 2px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset 0 0 20px rgba(0, 255, 100, 0.3),
        0 0 10px rgba(0, 255, 100, 0.2);
}

.led-text {
    font-family: 'Courier New', monospace;
    font-size: 24px;
    font-weight: bold;
    color: #00ff64;
    text-shadow: 
        0 0 10px #00ff64,
        0 0 20px #00ff64,
        0 0 30px #00ff64;
    animation: ledPulse 2s ease-in-out infinite alternate;
    letter-spacing: 2px;
}

@keyframes ledPulse {
    0% {
        text-shadow: 
            0 0 10px #00ff64,
            0 0 20px #00ff64,
            0 0 30px #00ff64;
    }
    100% {
        text-shadow: 
            0 0 15px #00ff64,
            0 0 25px #00ff64,
            0 0 40px #00ff64,
            0 0 50px #00ff64;
    }
}

/* Orange Accent Strip */
.orange-accent {
    position: absolute;
    top: 90px;
    left: 20px;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b00 0%, #ff8c00 50%, #ff6b00 100%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.8);
    animation: orangeGlow 3s ease-in-out infinite alternate;
}

@keyframes orangeGlow {
    0% {
        box-shadow: 0 0 15px rgba(255, 107, 0, 0.8);
    }
    100% {
        box-shadow: 0 0 25px rgba(255, 107, 0, 1),
                    0 0 35px rgba(255, 107, 0, 0.8);
    }
}

/* Red Pulsing Indicator */
.red-indicator {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #ff0000 0%, #cc0000 70%, #990000 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 10px #ff0000,
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    animation: redPulse 1.5s ease-in-out infinite;
}

@keyframes redPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 
            0 0 10px #ff0000,
            0 0 20px #ff0000,
            0 0 30px #ff0000;
    }
    50% {
        opacity: 0.6;
        box-shadow: 
            0 0 5px #ff0000,
            0 0 10px #ff0000,
            0 0 15px #ff0000;
    }
}

/* Robot Mouth */
.robot-mouth {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 8px;
    background: #2d3748;
    border-radius: 4px;
    overflow: hidden;
}

.robot-smoke {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-radius: 50%;
    animation: smokeRise 2s ease-out infinite;
}

@keyframes smokeRise {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0) scale(0.5);
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px) scale(1.5);
    }
}

/* Vape Chamber */
.vape-chamber {
    position: absolute;
    bottom: 25px;
    left: 30px;
    width: 60px;
    height: 80px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 12px;
    border: 2px solid #444;
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.3);
}

.vape-coil {
    position: absolute;
    top: 15px;
    left: 10px;
    width: 40px;
    height: 20px;
    background: linear-gradient(90deg, #ff4500 0%, #ff6b00 50%, #ff4500 100%);
    border-radius: 10px;
    animation: coilGlow 2s ease-in-out infinite alternate;
}

@keyframes coilGlow {
    0% {
        box-shadow: 0 0 8px rgba(255, 69, 0, 0.6);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 69, 0, 1),
                    0 0 25px rgba(255, 69, 0, 0.8);
    }
}

/* Control Buttons */
.control-buttons {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 8px;
    z-index: 1000;
    pointer-events: auto;
}

.control-btn {
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, #333 0%, #222 100%);
    border: 1px solid #555;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    z-index: 1001;
    position: relative;
}

.control-btn:hover {
    background: linear-gradient(145deg, #444 0%, #333 100%);
    box-shadow: 0 0 8px rgba(255, 107, 0, 0.6);
    transform: scale(1.1);
}

.control-btn:active {
    transform: scale(0.95);
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.8);
}

/* Ensure all interactive elements are clickable */
.hero-content,
.hero-content * {
    pointer-events: auto !important;
    z-index: 10;
}

.device-button,
.device-button * {
    pointer-events: auto !important;
    z-index: 100;
}

@keyframes tipGlow {
    0% {
        box-shadow: 0 0 5px rgba(231, 76, 60, 0.8);
    }
    100% {
        box-shadow: 0 0 10px rgba(231, 76, 60, 1), 0 0 15px rgba(231, 76, 60, 0.5);
    }
}

/* Robot Legs */
.robot-leg {
    position: absolute;
    width: 20px;
    height: 50px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    border-radius: 10px;
    bottom: -30px;
    animation: legMove 1.5s ease-in-out infinite;
}

.robot-leg.left {
    left: 25px;
}

.robot-leg.right {
    right: 25px;
}

@keyframes legMove {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

/* Cyber Smoke Effects */
.cyber-smoke-container {
    position: absolute;
    right: -15px;
    top: 50%;
    width: 60px;
    height: 80px;
    pointer-events: none;
    overflow: visible;
}

.cyber-smoke-puff {
    position: absolute;
    bottom: 0;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(100, 255, 100, 0.8) 0%, rgba(100, 255, 100, 0.4) 50%, rgba(100, 255, 100, 0.1) 100%);
    border-radius: 50%;
    animation: cyberSmokeRise 4s ease-out infinite;
    opacity: 0;
    filter: blur(1px);
}

@keyframes cyberSmokeRise {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.3) rotate(0deg);
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(-60px) scale(0.8) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-120px) scale(1.5) rotate(360deg);
    }
}

.cyber-smoke-puff:nth-child(1) {
    left: 10px;
    animation-delay: 0s;
}

.cyber-smoke-puff:nth-child(2) {
    left: 25px;
    animation-delay: 1.2s;
}

.cyber-smoke-puff:nth-child(3) {
    left: 40px;
    animation-delay: 2.4s;
}

.cyber-smoke-puff:nth-child(4) {
    left: 15px;
    animation-delay: 0.8s;
}

.cyber-smoke-puff:nth-child(5) {
    left: 35px;
    animation-delay: 1.6s;
}

/* Additional LED Indicators */
.status-leds {
    position: absolute;
    top: 100px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: statusBlink 3s ease-in-out infinite;
}

.status-led.green {
    background: #00ff00;
    box-shadow: 0 0 8px #00ff00;
    animation-delay: 0s;
}

.status-led.blue {
    background: #0088ff;
    box-shadow: 0 0 8px #0088ff;
    animation-delay: 1s;
}

.status-led.yellow {
    background: #ffff00;
    box-shadow: 0 0 8px #ffff00;
    animation-delay: 2s;
}

@keyframes statusBlink {
    0%, 80% {
        opacity: 0.3;
    }
    90%, 100% {
        opacity: 1;
    }
}

/* Robot Info Panel */
.robot-info {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-primary);
    border: 1px solid var(--tg-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    min-width: 220px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.robot-container:hover .robot-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.robot-info h4 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 14px;
    margin: 0 0 var(--spacing-xs) 0;
}

.robot-info p {
    color: var(--text-secondary);
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

/* Poland Map Background */
.poland-map-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d1b69 100%);
    overflow: hidden;
}

.poland-map-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 200, 255, 0.2) 0%, transparent 50%);
    animation: nebulaMove 20s ease-in-out infinite;
}

@keyframes nebulaMove {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

/* Poland Map SVG */
.poland-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    opacity: 0.6;
    filter: drop-shadow(0 0 10px rgba(54, 153, 235, 0.3));
}

.poland-border {
    fill: rgba(54, 153, 235, 0.2);
    stroke: rgba(54, 153, 235, 0.6);
    stroke-width: 2;
    filter: drop-shadow(0 0 5px rgba(54, 153, 235, 0.4));
}

.poland-region {
    fill: rgba(54, 153, 235, 0.1);
    stroke: rgba(54, 153, 235, 0.3);
    stroke-width: 1;
    transition: all 0.3s ease;
}

.poland-region:hover {
    fill: rgba(54, 153, 235, 0.3);
    filter: drop-shadow(0 0 8px rgba(54, 153, 235, 0.6));
}

/* City Points */
.city-point {
    fill: #00ff41;
    stroke: #ffffff;
    stroke-width: 2;
    animation: cityPulse 2s ease-in-out infinite;
}

.city-point:nth-child(odd) {
    animation-delay: 0.5s;
}

@keyframes cityPulse {
    0%, 100% {
        r: 3;
        opacity: 1;
    }
    50% {
        r: 6;
        opacity: 0.7;
    }
}

/* City Labels */
.city-label {
    fill: #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-anchor: middle;
    opacity: 0.8;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.city-label:hover {
    opacity: 1;
    font-size: 14px;
    fill: #00ff41;
}

/* Starfield */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: starMove 50s linear infinite;
    opacity: 0.6;
}

@keyframes starMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-200px);
    }
}

/* Responsive for Cyber Device */
@media (max-width: 768px) {
    .cyber-device-container {
        width: 320px;
        height: 240px;
    }
    
    .cyber-device {
        width: 240px;
        height: 150px;
    }
    
    .led-display {
        top: 15px;
        left: 15px;
        width: 140px;
        height: 50px;
    }
    
    .led-text {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .orange-accent {
        top: 75px;
        left: 15px;
        width: 100px;
    }
    
    .red-indicator {
        top: 20px;
        right: 20px;
        width: 10px;
        height: 10px;
    }
    
    .vape-chamber {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 65px;
    }
    
    .control-buttons {
        bottom: 25px;
        right: 20px;
    }
    
    .control-btn {
        width: 16px;
        height: 16px;
    }
    
    .cyber-smoke-container {
        right: -10px;
        width: 50px;
        height: 60px;
    }
    
    .status-leds {
        top: 85px;
        right: 20px;
    }
    
    .status-led {
        width: 6px;
        height: 6px;
    }
    
    .poland-svg {
        width: 100%;
        height: 100%;
        opacity: 0.4;
    }
}

/* Telegram Chat Live - Enhanced Demo Styles */
.instruction-panel {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid var(--neon-cyan, #00f5ff);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(0, 245, 255, 0.3),
        inset 0 0 30px rgba(0, 245, 255, 0.1);
}

.instruction-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.2), transparent);
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% { left: -100%; }
    100% { left: 100%; }
}

.instruction-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.instruction-text h2 {
    font-size: 1.8rem;
    color: var(--neon-cyan, #00f5ff);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.instruction-text h2 span {
    color: var(--neon-magenta, #ff00de);
}

.instruction-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.instruction-text .highlight-yellow {
    color: #fff200;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.instruction-text .step-arrows {
    color: var(--neon-green, #00ff88);
    font-size: 1.5rem;
    margin: 10px 0;
}

.instruction-text .instruction-footer {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.95rem;
    font-style: italic;
}

/* Robot Animation */
.robot-area {
    position: relative;
    width: 250px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.robot-container {
    position: relative;
    width: 180px;
    height: 220px;
}

.robot-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    border: 3px solid var(--neon-cyan, #00f5ff);
    box-shadow: 
        0 0 20px rgba(0, 245, 255, 0.5),
        inset 0 0 30px rgba(0, 245, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: robotFloat 3s ease-in-out infinite;
}

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

.robot-screen {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 10px;
    border: 2px solid var(--neon-magenta, #ff00de);
    overflow: hidden;
    box-shadow: 
        inset 0 0 30px rgba(255, 0, 255, 0.2),
        0 0 20px rgba(255, 0, 255, 0.3);
    position: relative;
}

.phone-display {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('user_input_files/176647016343.0877.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    border-radius: 8px;
}

.telegram-chat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8px;
    gap: 6px;
}

.typing-message {
    background: rgba(34, 158, 217, 0.9);
    color: #fff;
    padding: 6px 10px;
    border-radius: 12px;
    border-bottom-right-radius: 4px;
    font-size: 9px;
    max-width: 85%;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(10px);
    animation: messageAppear 0.3s ease-out forwards;
    box-shadow: 0 2px 10px rgba(34, 158, 217, 0.4);
}

@keyframes messageAppear {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.typing-indicator {
    position: absolute;
    bottom: 8px;
    left: 10px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-indicator .dot {
    width: 6px;
    height: 6px;
    background: var(--neon-cyan, #00f5ff);
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
    box-shadow: 0 0 8px var(--neon-cyan, #00f5ff);
}

.typing-indicator .dot:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

.sender-name {
    color: var(--neon-cyan, #00f5ff);
    font-size: 7px;
    font-weight: bold;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.robot-antenna {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 20px;
    background: var(--neon-magenta, #ff00de);
    box-shadow: 0 0 10px var(--neon-magenta, #ff00de);
}

.robot-antenna::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--neon-cyan, #00f5ff);
    border-radius: 50%;
    animation: antennaBlink 1s ease-in-out infinite;
    box-shadow: 0 0 15px var(--neon-cyan, #00f5ff);
}

@keyframes antennaBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.robot-eyes {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.robot-eye {
    width: 20px;
    height: 20px;
    background: var(--neon-green, #00ff88);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--neon-green, #00ff88);
    animation: eyeGlow 2s ease-in-out infinite;
}

@keyframes eyeGlow {
    0%, 100% { box-shadow: 0 0 20px var(--neon-green, #00ff88); }
    50% { box-shadow: 0 0 40px var(--neon-green, #00ff88), 0 0 60px var(--neon-green, #00ff88); }
}

.robot-mouth {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 10px;
    background: var(--neon-magenta, #ff00de);
    border-radius: 5px;
    box-shadow: 0 0 15px var(--neon-magenta, #ff00de);
    animation: mouthPulse 1.5s ease-in-out infinite;
}

@keyframes mouthPulse {
    0%, 100% { height: 10px; }
    50% { height: 15px; }
}

.robot-arm {
    position: absolute;
    width: 25px;
    height: 80px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid var(--neon-cyan, #00f5ff);
    border-radius: 10px;
    top: 60px;
    animation: armWave 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.robot-arm.left {
    left: -15px;
    transform-origin: top center;
    animation-name: armWaveLeft;
}

.robot-arm.right {
    right: -15px;
    transform-origin: top center;
    animation-name: armWaveRight;
}

@keyframes armWaveLeft {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

@keyframes armWaveRight {
    0%, 100% { transform: rotate(10deg); }
    50% { transform: rotate(-10deg); }
}

.code-particle {
    position: absolute;
    font-family: 'Consolas', monospace;
    font-size: 12px;
    color: var(--neon-cyan, #00f5ff);
    opacity: 0.6;
    animation: floatCode 4s ease-in-out infinite;
}

@keyframes floatCode {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(5deg); opacity: 1; }
}

/* Widget Container */
.widget-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.widget-wrapper {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(0, 245, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.widget-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan, #00f5ff), var(--neon-magenta, #ff00de), var(--neon-cyan, #00f5ff));
    box-shadow: 0 0 20px var(--neon-cyan, #00f5ff);
}

.widget-title {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.widget-title::before {
    content: '⚡ ';
}

.widget-title::after {
    content: ' ⚡';
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid var(--neon-green, #00ff88);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--neon-green, #00ff88);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge .dot {
    width: 10px;
    height: 10px;
    background: var(--neon-green, #00ff88);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-green, #00ff88);
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Features List */
.features-list {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.features-list h3 {
    color: var(--neon-magenta, #ff00de);
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.features-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.features-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(0, 245, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--neon-cyan, #00f5ff);
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: rgba(0, 245, 255, 0.15);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.features-list li::before {
    content: '▹';
    color: var(--neon-cyan, #00f5ff);
    font-size: 20px;
    text-shadow: 0 0 10px var(--neon-cyan, #00f5ff);
}

/* Responsive */
@media (max-width: 1024px) {
    .instruction-content {
        grid-template-columns: 1fr;
    }
    
    .robot-area {
        order: -1;
        margin: 0 auto;
    }
    
    .widget-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .chat-live-title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .chat-live-subtitle {
        font-size: 14px;
    }
    
    .instruction-panel {
        padding: 25px;
    }
    
    .instruction-text h2 {
        font-size: 1.3rem;
    }
    
    .robot-container {
        width: 140px;
        height: 180px;
    }
    
    .widget-wrapper {
        min-height: 300px;
    }
}

/* Floating Widget Styles */
.booking-widget {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 999;
  width: 380px;
  max-width: calc(100vw - 40px);
  background: linear-gradient(135deg, var(--forest) 0%, #1a3a20 100%);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

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

.booking-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-widget-badge {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-widget-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.booking-widget-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Trigger Button */
.booking-trigger-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 997;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--forest) 0%, #1a3a20 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.booking-trigger-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.booking-trigger-btn svg {
  width: 20px;
  height: 20px;
}
