* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

body {
    font-family: 'Alexandria', 'Lexend', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
    direction: rtl;
    text-align: right;
    margin: 0;
    padding: 0;
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: touch;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Telegram Mini App specific fixes */
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    width: 100%;
    min-width: 100%;
    animation: pageEnter 0.5s ease-out 0.1s both;
}

/* Page Enter Animation */
@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Exit Animation */
@keyframes pageExit {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Smooth transition class for page exit */
body.page-exit {
    animation: pageExit 0.4s ease-in forwards;
}

/* Hide scrollbar but keep scrolling functionality */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: transparent;
}

/* Firefox - hide scrollbar */
html {
    scrollbar-width: none;
}

/* For older browsers */
body {
    -ms-overflow-style: none;
}

/* Desktop overflow handling */
@media (min-width: 769px) {
    /* Allow horizontal scrolling on desktop when needed */
    html, body {
        overflow-x: auto;
        width: 100%;
    }
    
    /* Ensure containers allow horizontal scrolling on desktop */
    .container {
        max-width: none;
        width: 100%;
        margin: 0;
        overflow-x: auto;
    }
    
    /* Allow main content to extend beyond viewport */
    .main-content {
        width: 100%;
        max-width: none;
        margin: 0;
        overflow-x: visible;
    }
    
    /* Ensure elements with calc(100% + 40px) can extend beyond viewport */
    .header-section,
    .bot-cards-container,
    .video-section,
    .pricing-section,
    .footer {
        overflow-x: visible;
    }
}

/* Prevent Cumulative Layout Shift (CLS) - Reserve space for animations */
.bot-cards-container,
.pricing-section,
.video-section {
    min-height: auto;
    /* Ensure smooth transitions without layout shift */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Mobile scrollbar hiding */
@media (max-width: 768px) {
    /* Hide all scrollbars on mobile */
    * {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    *::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    /* Ensure body and html have no scrollbars on mobile */
    html, body {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        overflow-x: hidden;
    }
    
    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    /* Hide scrollbars for all containers on mobile */
    .container,
    .main-content,
    .bot-cards-container,
    .pricing-section,
    .video-section {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    .container::-webkit-scrollbar,
    .main-content::-webkit-scrollbar,
    .bot-cards-container::-webkit-scrollbar,
    .pricing-section::-webkit-scrollbar,
    .video-section::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
}

/* Allow text selection only for specific elements */
.selectable-text {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.selectable-text * {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.container {
    max-width: none;
    margin: 0;
    padding: 20px 40px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-top: 80px; /* Account for fixed header */
}

/* Typing Animation */
.typing-animation {
    position: relative;
    display: inline-block;
}

/* Header Section - Normal Navigation Bar */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}






/* Logo styling */
.header-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.5));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.header-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.8));
}

/* Navigation buttons */
.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Button icon centering */
.glass-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-btn .btn-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Left buttons container */
.header-left {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Logo container - centered */
.header-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Buttons container - right aligned */
.header-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Make all header buttons the same size */
.header-left .glass-btn,
.header-right .glass-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    min-width: 120px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Telegram Mini App specific header fixes */
.telegram-mini-app .header-section {
    padding-top: 20px;
    margin-top: 0;
}

.telegram-mini-app .header-top-right {
    top: 25px;
    right: 20px;
}

.telegram-mini-app .header-top-left {
    top: 25px;
    left: 20px;
}

/* Telegram Mini App viewport fixes */
.telegram-mini-app {
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for better mobile support */
    overflow: hidden;
    direction: ltr !important;
}

.telegram-mini-app .container {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    direction: rtl !important;
}

/* Hide body scrollbar in Telegram Mini App */
.telegram-mini-app body::-webkit-scrollbar {
    display: none;
}

/* Style container scrollbar in Telegram Mini App */
.telegram-mini-app .container::-webkit-scrollbar {
    width: 6px;
}

.telegram-mini-app .container::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.3);
    border-radius: 3px;
}

.telegram-mini-app .container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.5), rgba(14, 165, 233, 0.5));
    border-radius: 3px;
}

.telegram-mini-app .container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.7), rgba(14, 165, 233, 0.7));
}

.telegram-mini-app .main-content {
    min-height: 100vh;
    min-height: 100dvh;
}

/* Fix for Telegram's safe area */
.telegram-mini-app .header-section {
    padding-top: max(20px, env(safe-area-inset-top, 20px));
}

/* Telegram Mini App mobile specific fixes */
@media (max-width: 768px) {
    .telegram-mini-app .header-top-right {
        top: max(25px, calc(env(safe-area-inset-top, 0px) + 15px));
        right: max(15px, env(safe-area-inset-right, 15px));
    }

    .telegram-mini-app .header-top-left {
        top: max(25px, calc(env(safe-area-inset-top, 0px) + 15px));
        left: max(15px, env(safe-area-inset-left, 15px));
    }

    .telegram-mini-app .header-top-right .pricing-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
        border-radius: 10px;
    }

    .telegram-mini-app .header-top-left .store-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .telegram-mini-app .header-top-right {
        top: max(20px, calc(env(safe-area-inset-top, 0px) + 10px));
        right: max(10px, env(safe-area-inset-right, 10px));
    }

    .telegram-mini-app .header-top-left {
        top: max(20px, calc(env(safe-area-inset-top, 0px) + 10px));
        left: max(10px, env(safe-area-inset-left, 10px));
    }

    .telegram-mini-app .header-top-right .pricing-btn {
        padding: 4px 8px;
        font-size: 0.65rem;
        border-radius: 8px;
    }

    .telegram-mini-app .header-top-left .store-btn {
        padding: 4px 8px;
        font-size: 0.65rem;
        border-radius: 8px;
    }
}

.header-top-right .pricing-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    border-radius: 15px;
    min-width: auto;
    white-space: nowrap;
}



.main-title {
    margin-bottom: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.title-text {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #38bdf8, #8b5cf6, #ec4899);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.5);
    animation: titleGlow 4s ease-in-out infinite;
}

.title-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #cbd5e1;
    font-family: 'Alexandria', sans-serif;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

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

.header-description {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 5px;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

.header-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.scroll-indicator {
    margin-top: 10px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(56, 189, 248, 0.6);
    border-bottom: 2px solid rgba(56, 189, 248, 0.6);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

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

.header-logo:hover {
    filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.5));
}

.header-icon {
    width: 28px;
    height: 28px;
    opacity: 0.9;
    order: -1;
}

.btn-robot-icon {
    width: 32px;
    height: 32px;
    opacity: 0.9;
}

/* Typing Animation */
.typing-animation {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin: 0 0 25px 0;
    line-height: 1.6;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Bot Card */
.bot-card-mini {
    background: rgba(30, 41, 59, 0.9);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.bot-card-mini:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.5);
}

/* Active Bot Styling */
.bot-card-mini.active-bot {
    border-color: rgba(34, 197, 94, 0.6);
    background: rgba(15, 23, 42, 0.95);
}

.bot-card-mini.active-bot:hover {
    transform: translateY(-2px);
    border-color: rgba(34, 197, 94, 0.8);
}

/* Coming Soon Bot Styling */
.bot-card-mini.coming-soon {
    opacity: 0.7;
    border-color: rgba(156, 163, 175, 0.3);
    background: rgba(15, 23, 42, 0.6);
}

.bot-card-mini.coming-soon:hover {
    opacity: 0.8;
    border-color: rgba(156, 163, 175, 0.4);
    transform: translateY(-2px);
}

/* Bot Avatar */
.bot-avatar-mini {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 15px;
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.3);
}

.bot-card-mini h3 {
    color: #f1f5f9;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.bot-card-mini p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Bot Description */
.bot-description-mini {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(56, 189, 248, 0.1);
    text-align: center;
}

.bot-description-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bot-description-list li {
    color: #cbd5e1;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 8px;
    padding: 0;
    position: relative;
}

.bot-description-list li:last-child {
    margin-bottom: 0;
}

/* Features */
.bot-features-mini {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.bot-feature-mini {
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(56, 189, 248, 0.2);
    font-weight: 500;
}

/* Buttons */
.chat-btn-mini {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: 100%;
    box-shadow: 0 2px 6px rgba(56, 189, 248, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.chat-btn-mini:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.25);
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

/* Telegram Button */
.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #229ED9) !important;
    color: white !important;
    border: none !important;
    text-decoration: none !important;
}

.telegram-btn:hover {
    background: linear-gradient(135deg, #006699, #1a7db8) !important;
    transform: translateY(-2px);
}

.telegram-btn i {
    margin-right: 8px;
}

/* Disabled Button */
.chat-btn-mini.disabled {
    background: rgba(107, 114, 128, 0.3) !important;
    color: rgba(156, 163, 175, 0.8) !important;
    cursor: not-allowed !important;
    border: 1px solid rgba(107, 114, 128, 0.2) !important;
    box-sizing: border-box !important;
    height: auto !important;
    line-height: normal !important;
    font-family: inherit !important;
}

.chat-btn-mini.disabled:hover {
    transform: none !important;
    background: rgba(107, 114, 128, 0.3) !important;
}

/* Bot Cards Container */
.bot-cards-container {
    margin: 15px -20px -10px -20px;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    padding: 30px 40px 20px 40px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(15px);
    width: calc(100% + 40px);
}

.bot-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 10px 0;
    align-items: stretch;
}

.cards-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.cards-header h2 {
    color: #f1f5f9;
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Video Section */
.video-section {
    margin: 0 -20px;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(15px);
    width: calc(100% + 40px);
}

.video-header {
    text-align: center;
    margin-bottom: 30px;
}

.video-header h2 {
    color: #f1f5f9;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.video-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* Modern Comparison Styling */
.comparison-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.comparison-item {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    min-width: 200px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comparison-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comparison-item.quiz-bot::before {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.comparison-item.chatgpt::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.comparison-item:hover {
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comparison-item:hover::before {
    opacity: 1;
}


.comparison-content h3 {
    color: #f1f5f9;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.comparison-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-number {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 40px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.comparison-item.quiz-bot .feature-number {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.comparison-item.chatgpt .feature-number {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.feature-text {
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 500;
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b, #334155);
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    }
}



.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(56, 189, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(56, 189, 248, 0.3);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 18px;
    transition: all 0.3s ease;
}


/* Pricing Section */
.pricing-section {
    margin: 30px -20px;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(15px);
    width: calc(100% + 40px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h2 {
    color: #f1f5f9;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.pricing-header p {
    color: #94a3b8;
    font-size: 1rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    justify-items: center;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    z-index: 1;
    animation: none;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow:
        0 12px 40px rgba(56, 189, 248, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.pricing-card:hover::before {
    animation: glassShine 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes glassShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.pricing-card.popular {
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.05);
}

.pricing-card.popular:hover {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow:
        0 12px 40px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    animation: fastGlowGreen 0.8s ease-in-out infinite alternate;
}

/* Premium Bundle Card Styling */
.pricing-card.premium-bundle {
    border-color: rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1));
    position: relative;
    overflow: hidden;
}

.pricing-card.premium-bundle::before {
    background: linear-gradient(45deg, transparent, rgba(168, 85, 247, 0.3), transparent);
}

.pricing-card.premium-bundle:hover {
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow:
        0 12px 40px rgba(168, 85, 247, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    animation: premiumGlow 1.2s ease-in-out infinite alternate;
}

@keyframes premiumGlow {
    0% {
        box-shadow: 
            0 15px 40px rgba(168, 85, 247, 0.3),
            0 0 20px rgba(168, 85, 247, 0.5),
            inset 0 0 20px rgba(168, 85, 247, 0.1);
    }
    100% {
        box-shadow: 
            0 15px 40px rgba(168, 85, 247, 0.4),
            0 0 30px rgba(168, 85, 247, 0.6),
            inset 0 0 30px rgba(168, 85, 247, 0.2);
    }
}

/* Coming Soon Badge */
.coming-soon-badge {
    position: absolute;
    top: -8px;
    right: -5px;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    color: white;
    padding: 8px 18px;
    border-radius: 0 0 0 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
    text-align: center;
    white-space: nowrap;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
    }
}

/* Premium Bundle Card Centering */
.pricing-card.premium-bundle {
    max-width: 280px;
    width: 100%;
}

@keyframes fastGlowGreen {
    0% {
        box-shadow: 
            0 15px 40px rgba(34, 197, 94, 0.2),
            0 0 20px rgba(34, 197, 94, 0.4),
            inset 0 0 20px rgba(34, 197, 94, 0.1);
    }
    100% {
        box-shadow: 
            0 15px 40px rgba(34, 197, 94, 0.3),
            0 0 30px rgba(34, 197, 94, 0.6),
            inset 0 0 30px rgba(34, 197, 94, 0.2);
    }
}

.popular-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 6px 16px;
    border-radius: 0 0 0 15px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    z-index: 10;
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.plan-header h3 {
    color: #f1f5f9;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.plan-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(56, 189, 248, 0.2);
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #38bdf8;
    font-family: 'Orbitron', 'Exo 2', 'Rajdhani', 'Arial Black', sans-serif;
}

/* Free price text with Alexandria font */
.price.free-price {
    font-family: 'Alexandria', 'Lexend', sans-serif;
}

.currency {
    font-size: 0.9rem;
    color: #94a3b8;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 2;
    flex: 1;
    justify-content: flex-start;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    font-size: 0.8rem;
}

.feature.disabled {
    color: #cbd5e1;
    opacity: 0.9;
}

.feature i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.feature:not(.disabled) i {
    background: #22c55e;
    color: white;
}

.feature.disabled i {
    background: #ef4444;
    color: white;
}

.pricing-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(56, 189, 248, 0.2);
}

.pricing-footer p {
    color: #94a3b8;
    font-size: 1rem;
}

.pricing-footer a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
}

.pricing-footer a:hover {
    color: #0ea5e9;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: rgba(30, 41, 59, 0.9);
    color: #cbd5e1;
    text-align: center;
    padding: 6px 40px;
    border-top: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 20px;
    margin: -5px -20px 0 -20px;
    width: calc(100% + 40px);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    min-height: auto;
}

.footer-content p {
    color: #cbd5e1;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.2;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: #94a3b8;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.3);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.social-links a:hover {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.25);
    border-color: #38bdf8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}

/* Payment Methods Styling */
.payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 50%;
    color: #94a3b8;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-icon:hover {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.25);
    border-color: #38bdf8;
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}

.payment-icon i {
    transition: all 0.3s ease;
}

/* Custom Payment Images */
.payment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.custom-payment {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.custom-payment:hover {
    background: rgba(56, 189, 248, 0.2);
    border-color: #38bdf8;
}


/* Glass Button */
.glass-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(56, 189, 248, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.glass-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.glass-btn:hover::before {
    left: 100%;
}

.glass-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(56, 189, 248, 0.5);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(56, 189, 248, 0.1));
    box-shadow: 
        0 12px 40px rgba(56, 189, 248, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

/* Pricing Button Styling */
.pricing-btn {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.pricing-btn:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.1));
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 
        0 12px 40px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.pricing-btn .btn-icon {
    color: #22c55e;
}

/* Store Button Styling */
.store-btn {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.store-btn:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.1));
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow:
        0 12px 40px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.store-btn .btn-icon {
    color: #3b82f6;
}

.header-top-right .store-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    border-radius: 15px;
    min-width: auto;
    white-space: nowrap;
}

/* Media Queries */
@media (max-width: 1000px) {
    .bot-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .header-section {
        padding: 12px 5%;
    }

    .header-left .glass-btn,
    .header-right .glass-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
        min-width: 60px;
        gap: 4px;
    }

    .header-right .btn-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-left .btn-text,
    .header-right .btn-text {
        font-size: 0.75rem;
    }

    .title-text {
        font-size: 2.2rem;
    }

    .title-subtitle {
        font-size: 1.4rem;
    }

    .header-logo {
        height: 35px;
        width: auto;
    }

    .header-description {
        font-size: 1rem;
    }

    .bot-cards-container {
        margin: 15px -10px -10px -10px;
        width: calc(100% + 20px);
        padding: 30px 20px 20px 20px;
    }

    .bot-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .bot-card-mini {
        width: 100%;
        max-width: none;
    }

    .video-section {
        margin: 0 -10px;
        width: calc(100% + 20px);
        padding: 30px 20px;
    }

    .video-header h2 {
        font-size: 1.5rem;
    }

    .video-header p {
        font-size: 0.9rem;
    }

    .video-container {
        max-width: 100%;
        border-radius: 15px;
        aspect-ratio: 16/9;
    }

    .video-container iframe {
        border-radius: 13px;
    }

    .pricing-section {
        margin: 30px -10px;
        width: calc(100% + 20px);
        padding: 30px 20px;
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-card {
        padding: 25px;
    }

    .footer {
        margin: 0 -10px 0 -10px;
        width: calc(100% + 20px);
        padding: 6px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .header-section {
        margin: 0 -5px;
        width: calc(100% + 10px);
        padding: 8px 15px;
        min-height: 45px;
    }

    .title-text {
        font-size: 1.8rem;
    }

    .title-subtitle {
        font-size: 1.2rem;
    }

    .header-logo {
        height: 30px;
        width: auto;
    }

    .header-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .glass-btn {
        padding: 12px 16px;
        font-size: 0.95rem;
        gap: 8px;
    }

    .btn-robot-icon {
        width: 20px;
        height: 20px;
    }
    
    .header-top-right {
        top: 8px;
        right: 10px;
    }

    .header-top-left {
        top: 8px;
        left: 10px;
    }

    .header-top-right .pricing-btn,
    .header-top-left .store-btn {
        padding: 4px 8px;
        font-size: 0.65rem;
        border-radius: 8px;
    }

    .bot-cards-container {
        margin: 15px 0 -10px 0;
        width: 100%;
        padding: 20px 15px 10px 15px;
    }

    .bot-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bot-card-mini {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 20px;
    }

    .chat-btn-mini {
        padding: 14px 24px;
        font-size: 0.9rem;
        min-height: 48px;
    }

    .pricing-section {
        margin: 30px 0;
        width: 100%;
        padding: 3px 15px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 20px;
    }

    .pricing-header h2 {
        font-size: 1.5rem;
    }

    .footer {
        margin: 0 -5px 10px -5px;
        width: calc(100% + 10px);
        padding: 6px 15px;
    }
}

/* Enhanced Mobile Optimizations */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .main-content {
        gap: 12px;
    }
    
    .header-section {
        padding: 10px 20px;
        margin: 0 -10px;
        width: calc(100% + 20px);
        min-height: 50px;
    }
    
    .title-text {
        font-size: 2rem;
    }
    
    .title-subtitle {
        font-size: 1.3rem;
    }
    
    .header-logo {
        height: 45px;
        width: auto;
    }

    .logo-glow {
        width: 65px;
        height: 65px;
    }
    
    .header-description {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .glass-btn {
        padding: 14px 20px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .header-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .header-buttons .glass-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .header-top-right {
        top: 10px;
        right: 15px;
    }

    .header-top-left {
        top: 10px;
        left: 15px;
    }

    .header-top-right .pricing-btn,
    .header-top-left .store-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
        border-radius: 10px;
    }

    .bot-cards-container {
        margin: 20px -10px;
        width: calc(100% + 20px);
        padding: 25px 20px;
    }
    
    .cards-header h2 {
        font-size: 1.3rem;
    }
    
    .bot-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .bot-card-mini {
        padding: 3px 15px;
    }
    
    .bot-card-mini h3 {
        font-size: 1.1rem;
    }
    
    .bot-card-mini p {
        font-size: 0.85rem;
    }

    .bot-description-mini {
        padding: 10px;
        margin-bottom: 12px;
    }

    .bot-description-list li {
        font-size: 0.8rem;
        margin-bottom: 6px;
        padding-right: 18px;
    }

    .bot-features-mini {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .bot-feature-mini {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .chat-btn-mini {
        padding: 12px 20px;
        font-size: 0.85rem;
        min-height: 44px;
    }
    
    .pricing-section {
        margin: 25px -10px;
        width: calc(100% + 20px);
        padding: 30px 20px;
    }
    
    .pricing-header h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .pricing-header p {
        font-size: 0.9rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .pricing-card {
        padding: 3px 15px;
        min-height: auto;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        width: 100%;
        max-width: 100%;
    }
    
    .pricing-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }
    
    .plan-header h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .plan-features {
        gap: 8px;
    }
    
    .feature {
        font-size: 0.75rem;
        gap: 6px;
        margin-bottom: 6px;
    }
    
    .feature i {
        width: 16px;
        height: 16px;
        font-size: 0.5rem;
    }
    
    .price {
        font-size: 1.4rem;
    }
    
    .currency {
        font-size: 0.8rem;
    }
    
    .popular-badge {
        font-size: 0.65rem;
        padding: 5px 12px;
        top: -5px;
        right: -5px;
        left: auto;
        transform: none;
        border-radius: 0 0 0 15px;
    }
    
    .coming-soon-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        right: -3px;
        top: -3px;
    }
    
    /* Premium Bundle Mobile Styling */
    .pricing-card.premium-bundle {
        border-color: rgba(168, 85, 247, 0.4);
        background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1));
        box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
        width: 100%;
        max-width: 100%;
    }
    
    .pricing-card.premium-bundle:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(168, 85, 247, 0.3);
        border-color: rgba(168, 85, 247, 0.6);
    }
    
    .pricing-card.premium-bundle::before {
        background: linear-gradient(45deg, transparent, rgba(168, 85, 247, 0.3), transparent);
    }
    
    .price {
        font-size: 1.6rem;
    }
    
    .currency {
        font-size: 0.8rem;
    }
    
    .feature {
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .feature i {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }
    
    .popular-badge {
        font-size: 0.7rem;
        padding: 6px 15px;
        top: -5px;
        right: -5px;
        left: auto;
        transform: none;
        border-radius: 0 0 0 15px;
    }
    
    .pricing-footer p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .footer {
        margin: 0 -10px;
        width: calc(100% + 20px);
        padding: 8px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-links a {
        padding: 8px;
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
    }
    
    .payment-methods {
        gap: 10px;
        margin: 10px 0;
    }
    
    .payment-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    
    .payment-image {
        width: 100%;
        height: 100%;
    }
    
    /* Mobile Footer - Side by Side Layout */
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    /* Hide desktop footer on mobile */
    .desktop-footer {
        display: none;
    }
    
    /* Show mobile footer row */
    .footer-row {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-separator {
        width: 1px;
        height: 25px;
        background: rgba(148, 163, 184, 0.3);
        margin: 0 8px;
    }
}

/* Desktop Footer - Normal Layout */
@media (min-width: 769px) {
    /* Hide mobile footer row on desktop */
    .footer-row {
        display: none !important;
    }
    
    /* Show desktop footer elements */
    .desktop-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .desktop-footer .payment-methods {
        display: flex;
        gap: 15px;
        align-items: center;
    }
    
    .desktop-footer .social-links {
        display: flex;
        gap: 12px;
        align-items: center;
    }
    
    .desktop-footer .footer-separator {
        width: 1px;
        height: 30px;
        background: rgba(148, 163, 184, 0.3);
        margin: 0 15px;
    }
    
    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .footer-label {
        background: rgba(30, 41, 59, 0.8);
        color: #cbd5e1;
        padding: 6px 12px;
        font-size: 0.8rem;
        font-weight: 500;
        border-radius: 0 0 12px 12px;
        border: 1px solid rgba(56, 189, 248, 0.2);
        border-top: none;
        white-space: nowrap;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .header-section {
        padding: 10px 4%;
    }

    .header-left .glass-btn,
    .header-right .glass-btn {
        padding: 4px 8px;
        font-size: 0.6rem;
        min-width: 50px;
        gap: 3px;
    }

    .header-left .btn-text {
        display: inline; /* Show text on mobile devices */
    }

    .header-left .btn-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
    }

    .header-left .btn-icon i {
        font-size: 14px;
    }

    .header-left .btn-robot-icon {
        width: 16px;
        height: 16px;
    }
    
    .title-text {
        font-size: 1.6rem;
    }
    
    .title-subtitle {
        font-size: 1.1rem;
    }
    
    .header-logo {
        height: 35px;
        width: auto;
    }

    .logo-glow {
        width: 55px;
        height: 55px;
    }
    
    .header-description {
        font-size: 0.85rem;
    }
    
    .glass-btn {
        padding: 12px 16px;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .btn-robot-icon {
        width: 18px;
        height: 18px;
    }
    
    .bot-cards-container {
        margin: 15px 0;
        width: 100%;
        padding: 3px 15px;
    }
    
    .cards-header h2 {
        font-size: 1.2rem;
    }
    
    .bot-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .bot-card-mini {
        padding: 18px 15px;
        max-width: 100%;
    }
    
    .bot-card-mini h3 {
        font-size: 1rem;
    }
    
    .bot-card-mini p {
        font-size: 0.8rem;
    }

    .bot-description-mini {
        padding: 8px;
        margin-bottom: 10px;
    }

    .bot-description-list li {
        font-size: 0.75rem;
        margin-bottom: 5px;
        padding-right: 16px;
    }

    .chat-btn-mini {
        padding: 12px 18px;
        font-size: 0.8rem;
        min-height: 42px;
    }
    
    .video-section {
        margin: 0;
        width: 100%;
        padding: 3px 15px;
    }

    .video-header h2 {
        font-size: 1.3rem;
    }

    .video-header p {
        font-size: 0.8rem;
    }

    .comparison-container {
        flex-direction: column;
        gap: 20px;
        margin: 20px 0;
        align-items: center;
    }

    .comparison-item {
        width: 100%;
        max-width: 300px;
        padding: 25px 20px;
        margin: 0;
        text-align: center;
    }
    
    .comparison-vs {
        order: 2;
        margin: 5px 0;
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .comparison-item.quiz-bot {
        order: 1;
    }
    
    .comparison-item.chatgpt {
        order: 3;
    }
    
    .comparison-content h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .comparison-feature {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }
    
    .feature-number {
        font-size: 1.1rem;
        padding: 6px 12px;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }


    .comparison-content h3 {
        font-size: 1.1rem;
    }

    .feature-number {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .comparison-vs {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }

    .video-container {
        border-radius: 12px;
        aspect-ratio: 16/9;
    }

    .video-container iframe {
        border-radius: 10px;
    }

    .pricing-section {
        margin: 20px 0;
        width: 100%;
        padding: 3px 15px;
    }
    
    .pricing-header h2 {
        font-size: 0.95rem;
    }
    
    .pricing-card {
        padding: 3px 15px;
        max-width: 100%;
    }
    
    .plan-header h3 {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.4rem;
    }
    
    .feature {
        font-size: 0.8rem;
        gap: 8px;
    }
    
    .feature i {
        width: 16px;
        height: 16px;
        font-size: 0.5rem;
    }
    
    .popular-badge {
        font-size: 0.65rem;
        padding: 5px 12px;
        top: -5px;
        right: -5px;
        left: auto;
        transform: none;
        border-radius: 0 0 0 15px;
    }
    
    .footer {
        margin: 0 -5px;
        width: calc(100% + 10px);
        padding: 6px 15px;
    }
}


/* Extra Small Devices */
@media (max-width: 360px) {
    .title-text {
        font-size: 1.4rem;
    }
    
    .title-subtitle {
        font-size: 1rem;
    }
    
    .header-logo {
        height: 30px;
        width: auto;
    }

    .logo-glow {
        width: 50px;
        height: 50px;
    }
    
    .header-description {
        font-size: 0.8rem;
    }
    
    .glass-btn {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .pricing-header h2 {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    .feature {
        font-size: 0.75rem;
    }
    
    .header-top-right {
        top: 6px;
        right: 8px;
    }

    .header-top-left {
        top: 6px;
        left: 8px;
    }

    .header-top-right .pricing-btn,
    .header-top-left .store-btn {
        padding: 3px 6px;
        font-size: 0.6rem;
        border-radius: 6px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .bot-card-mini:hover {
        transform: none !important;
    }
    
    .pricing-card:hover {
        transform: none !important;
    }
    
    .social-links a:hover {
        transform: none !important;
    }
    
    .glass-btn:hover {
        transform: none !important;
    }
    
    /* Touch-friendly active states for mobile */
    .pricing-card:active {
        transform: translateY(-3px);
        border-color: rgba(56, 189, 248, 0.3);
        box-shadow: 0 15px 40px rgba(56, 189, 248, 0.2);
        transition: all 0.2s ease;
    }
    
    .pricing-card:active::before {
        animation: glassShine 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .pricing-card.premium-bundle:active {
        transform: translateY(-3px);
        border-color: rgba(168, 85, 247, 0.6);
        box-shadow: 0 15px 40px rgba(168, 85, 247, 0.3);
    }
    
    .pricing-card.popular:active {
        transform: translateY(-3px);
        border-color: rgba(34, 197, 94, 0.6);
        box-shadow: 0 15px 40px rgba(34, 197, 94, 0.2);
    }
}

/* Coming Soon Styles */
.coming-soon-container {
    width: 100%;
    padding: 12px 24px;
    background: rgba(107, 114, 128, 0.3);
    border-radius: 25px;
    border: 1px solid rgba(107, 114, 128, 0.2);
    box-sizing: border-box;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-text {
    font-size: 1rem;
    font-weight: 600;
    color: #94a3b8;
    font-family: 'Alexandria', 'Lexend', sans-serif;
    text-align: center;
}

/* Mobile responsive coming soon */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 12px 20px;
        min-height: 44px;
    }
    
    .coming-soon-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-container {
        padding: 12px 18px;
        min-height: 42px;
    }
    
    .coming-soon-text {
        font-size: 0.85rem;
    }
}
