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

/* Улучшенные шрифты */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #000;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
}

/* Pacman Game Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, #FFD700 2px, transparent 2px),
        radial-gradient(circle at 40% 60%, #FFD700 2px, transparent 2px),
        radial-gradient(circle at 60% 40%, #FFD700 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, #FFD700 2px, transparent 2px),
        radial-gradient(circle at 30% 30%, #FFD700 2px, transparent 2px),
        linear-gradient(135deg, #0F0F23 0%, #1A1A3A 50%, #000 100%);
    background-size: 100px 100px, 150px 150px, 120px 120px, 80px 80px, 200px 200px, 100% 100%;
    z-index: -2;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 100px 100px, 150px 150px, 120px 120px, 80px 80px, 200px 200px, 0 0; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Улучшенная типографика */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

p, li, span {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Breadcrumbs */
.breadcrumbs {
    background: rgba(255,215,0,0.1);
    padding: 12px 0;
    border-bottom: 2px solid #FFD700;
}

.breadcrumbs a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #FFF;
    margin: 0 8px;
    font-family: 'Inter', sans-serif;
}

/* Article Page Styles */
.article-header {
    background: linear-gradient(135deg, #1A1A3A 0%, #2D2D5A 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 4px solid #FFD700;
}

.article-title {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800 !important;
    margin-bottom: 24px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.article-meta {
    color: #FFF;
    font-size: 1.1rem;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.article-content {
    background: #000;
    padding: 80px 0;
}

.content-wrapper {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 24px;
    padding: 60px;
    border: 3px solid #FFD700;
    box-shadow: 0 0 0 3px #FFD700, 0 20px 60px rgba(255, 215, 0, 0.3);
    margin-bottom: 60px;
}

.content-section {
    margin-bottom: 3rem;
    animation: slideInUp 0.6s ease-out;
}

.content-section:nth-child(2) {
    animation-delay: 0.1s;
}

.content-section:nth-child(3) {
    animation-delay: 0.2s;
}

.content-section:nth-child(4) {
    animation-delay: 0.3s;
}

.content-section h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.8rem;
    font-weight: 700 !important;
    color: #FFD700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    letter-spacing: -0.025em;
}

.content-section p {
    font-family: 'Roboto', sans-serif !important;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #e5e7eb;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.025em;
}

/* Article Text Styles */
.article-text {
    font-family: 'Roboto', sans-serif !important;
    line-height: 1.75 !important;
    font-size: 1.125rem !important;
    color: #e5e7eb !important;
    font-weight: 400 !important;
    letter-spacing: 0.025em !important;
}

.article-text p {
    margin-bottom: 1.5rem !important;
    line-height: 1.75 !important;
    color: #e5e7eb !important;
}

.article-text strong {
    color: #FFD700 !important;
    font-weight: 700 !important;
}

.article-text em {
    font-style: italic !important;
    color: #22c8c2 !important;
}

.article-text ul, .article-text ol {
    margin: 1.5rem 0 !important;
    padding-left: 2rem !important;
}

.article-text li {
    margin-bottom: 0.8rem !important;
    line-height: 1.7 !important;
    color: #e5e7eb !important;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin: 40px 0;
    border: 3px solid #000;
    box-shadow: 0 8px 0 #FF1744;
}

.article-cta h3 {
    color: #000;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.article-cta p {
    color: #000;
    font-weight: 600;
    margin-bottom: 24px;
    font-family: 'Roboto', sans-serif;
}

/* Related Articles */
.related-articles {
    background: #000;
    padding: 60px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-card {
    background: linear-gradient(135deg, #1A1A3A 0%, #2D2D5A 100%);
    padding: 30px;
    border-radius: 16px;
    border: 3px solid #FFD700;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #FFF;
    display: block;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 0 3px #FF6B35, 0 15px 40px rgba(255, 107, 53, 0.4);
    color: #FFF;
    text-decoration: none;
}

.related-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.025em;
}

.related-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
}

/* Header */
.header {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 4px solid #000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 101;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.025em;
}

.logo:hover {
    text-decoration: none;
    color: #000;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 24px;
}

.desktop-nav a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.desktop-nav a:hover {
    background: rgba(0,0,0,0.1);
    transform: translateY(-2px);
    text-decoration: none;
    color: #000;
}

.desktop-nav a.active {
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
}

.desktop-nav a.bot-link {
    background: linear-gradient(45deg, #FF1744, #FF6B35);
    color: white !important;
    font-weight: 800;
    box-shadow: 0 4px 0 #B71C1C;
    border: 2px solid #000;
}

.desktop-nav a.bot-link:hover {
    background: linear-gradient(45deg, #FF6B35, #FF1744);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #B71C1C;
    color: white !important;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-top: 2px solid #000;
    border-bottom: 4px solid #000;
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.mobile-nav a:hover {
    background: rgba(0,0,0,0.1);
    text-decoration: none;
    color: #000;
}

.mobile-nav a.active {
    background: rgba(0,0,0,0.2);
}

.mobile-nav a.bot-link {
    background: linear-gradient(45deg, #FF1744, #FF6B35);
    color: white !important;
    font-weight: 800;
    border: 2px solid #000;
    margin-top: 8px;
}

.mobile-nav a.bot-link:hover {
    background: linear-gradient(45deg, #FF6B35, #FF1744);
    color: white !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    color: #000;
    padding: 80px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(0,0,0,0.1) 20px,
        rgba(0,0,0,0.1) 40px
    );
    animation: moveStripes 10s linear infinite;
    z-index: 1;
}

@keyframes moveStripes {
    0% { transform: translateX(-40px) translateY(-40px); }
    100% { transform: translateX(0) translateY(0); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    animation: slideInUp 0.8s ease-out;
    color: #000;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 16px;
    animation: slideInUp 0.8s ease-out 0.2s both;
    color: #000;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.hero-description {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 0.8s ease-out 0.4s both;
    color: #000;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.3);
    line-height: 1.6;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #FF1744, #FF6B35);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 0 #B71C1C, 0 12px 20px rgba(0,0,0,0.4);
    transition: all 0.2s ease;
    animation: slideInUp 0.8s ease-out 0.6s both;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 3px solid #000;
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 0 #B71C1C, 0 16px 25px rgba(0,0,0,0.6);
    text-decoration: none;
    color: white;
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #B71C1C, 0 6px 10px rgba(0,0,0,0.4);
}

/* Features Section */
.features {
    background: #000;
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(255, 107, 53, 0.5);
    letter-spacing: -0.025em;
}

.section-subtitle {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #FFF;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
}

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

.feature-card {
    background: linear-gradient(135deg, #1A1A3A 0%, #2D2D5A 100%);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 0 0 3px #FFD700, 0 10px 40px rgba(255, 215, 0, 0.3);
    border: 3px solid #FFD700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #FFF;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #FF6B35, #FFD700);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 0 3px #FF6B35, 0 20px 60px rgba(255, 107, 53, 0.4);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    border: 3px solid #000;
    box-shadow: 0 4px 0 #FF6B35;
}

.feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #FFD700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    letter-spacing: -0.025em;
}

.feature-card p {
    font-family: 'Roboto', sans-serif;
    color: #e5e7eb;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Screenshots Section */
.screenshots {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 100px 0;
    color: #000;
}

.screenshot-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1A1A3A, #2D2D5A);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    border: 4px solid #FFD700;
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 0 #FF6B35, 0 12px 20px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

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

.screenshot-placeholder:hover::before {
    left: 100%;
}

.screenshot-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 0 #FF6B35, 0 16px 25px rgba(0,0,0,0.4);
}

/* COMPACT ARTICLES SECTION - ПРИНУДИТЕЛЬНЫЙ ДВУХКОЛОНОЧНЫЙ МАКЕТ */
.compact-articles-section {
    background: #000 !important;
    padding: 50px 0 !important;
    color: #FFF !important;
}

.compact-articles-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 30px !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}

.compact-articles-title h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #FFD700 !important;
    margin-bottom: 6px !important;
    letter-spacing: -0.025em !important;
}

.compact-articles-title p {
    font-family: 'Roboto', sans-serif !important;
    color: #FFF !important;
    opacity: 0.8 !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
}

.view-all-link {
    font-family: 'Inter', sans-serif !important;
    color: #FFD700 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    padding: 6px 12px !important;
    border: 2px solid #FFD700 !important;
    border-radius: 15px !important;
    transition: all 0.3s ease !important;
}

.view-all-link:hover {
    background: #FFD700 !important;
    color: #000 !important;
    text-decoration: none !important;
    transform: translateY(-2px) !important;
}

/* ПРИНУДИТЕЛЬНАЯ ДВУХКОЛОНОЧНАЯ СЕТКА */
.compact-articles-two-columns {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
    width: 100% !important;
}

/* ПРИНУДИТЕЛЬНЫЕ СТИЛИ КАРТОЧЕК */
.compact-article-card {
    background: linear-gradient(135deg, #1A1A3A 0%, #2D2D5A 100%) !important;
    border-radius: 8px !important;
    padding: 16px !important;
    border: 2px solid #FFD700 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    min-height: 120px !important;
    max-height: 140px !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
}

.compact-article-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #FFD700, #FF6B35) !important;
}

.compact-article-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.25) !important;
    border-color: #FF6B35 !important;
}

.compact-article-icon {
    width: 40px !important;
    height: 40px !important;
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid #000 !important;
    flex-shrink: 0 !important;
}

.compact-article-content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    overflow: hidden !important;
}

.compact-article-content h3 {
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #FFD700 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    letter-spacing: -0.025em !important;
}

.compact-article-content p {
    font-family: 'Roboto', sans-serif !important;
    font-size: 0.8rem !important;
    color: #e5e7eb !important;
    opacity: 0.8 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    flex: 1 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-weight: 400 !important;
}

.read-more-link {
    font-family: 'Inter', sans-serif !important;
    color: #FF6B35 !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    margin-top: auto !important;
    align-self: flex-start !important;
}

/* Articles Pagination - Компактная */
.articles-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    margin-top: 30px !important;
    flex-wrap: wrap !important;
}

.pagination-btn {
    font-family: 'Inter', sans-serif !important;
    background: linear-gradient(135deg, #1A1A3A 0%, #2D2D5A 100%) !important;
    color: #FFD700 !important;
    text-decoration: none !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    border: 2px solid #FFD700 !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.pagination-btn:hover {
    background: #FFD700 !important;
    color: #000 !important;
    text-decoration: none !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
}

.pagination-info {
    font-family: 'Inter', sans-serif !important;
    background: rgba(255, 215, 0, 0.1) !important;
    color: #FFD700 !important;
    padding: 6px 12px !important;
    border-radius: 15px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
}

/* Pricing Section */
.pricing {
    background: #000;
    padding: 100px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, #1A1A3A 0%, #2D2D5A 100%);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 0 3px #FFD700, 0 10px 40px rgba(255, 215, 0, 0.3);
    border: 3px solid #FFD700;
    transition: all 0.3s ease;
    position: relative;
    color: #FFF;
}

.pricing-card.premium {
    border-color: #FF6B35;
    transform: scale(1.05);
    background: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
    color: #000;
    box-shadow: 0 0 0 3px #FF6B35, 0 15px 50px rgba(255, 107, 53, 0.5);
}

.pricing-card.premium::before {
    content: 'РЕКОМЕНДУЕМ';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF1744;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    border: 2px solid #000;
    box-shadow: 0 4px 0 #B71C1C;
    font-family: 'Inter', sans-serif;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 0 3px #FF6B35, 0 20px 60px rgba(255, 107, 53, 0.4);
}

.pricing-card.premium:hover {
    transform: translateY(-8px) scale(1.05);
}

.pricing-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    letter-spacing: -0.025em;
}

.pricing-price {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.025em;
}

.pricing-card.premium .pricing-price {
    color: #000;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.pricing-period {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 32px;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    font-family: 'Roboto', sans-serif;
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    font-weight: 500;
    line-height: 1.5;
}

.pricing-features li::before {
    content: '🟡';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.pricing-card.premium .pricing-features li::before {
    content: '🔴';
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
    color: #000;
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.025em;
}

.cta-section p {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 48px;
    font-weight: 500;
    line-height: 1.6;
}

.instructions {
    background: rgba(0,0,0,0.8);
    border-radius: 16px;
    padding: 32px;
    margin: 48px 0;
    border: 3px solid #FFD700;
    color: #FFF;
}

.instructions h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #FFD700;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    letter-spacing: -0.025em;
}

.instructions ol {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.instructions li {
    font-family: 'Roboto', sans-serif;
    margin: 12px 0;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 40px 0;
    text-align: center;
    color: #000;
    border-top: 4px solid #000;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer p {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: rgba(0,0,0,0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Floating Ghosts */
.floating-ghost {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
}

.ghost-1 {
    top: 20%;
    left: 10%;
    animation: float 4s ease-in-out infinite;
}

.ghost-2 {
    top: 60%;
    right: 15%;
    animation: float 3s ease-in-out infinite 0.5s;
}

.ghost-3 {
    bottom: 30%;
    left: 20%;
    animation: float 3.5s ease-in-out infinite 1s;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    25% { transform: translateY(-10px) scale(1.05); }
    75% { transform: translateY(5px) scale(0.95); }
}

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

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, #FFD700, #FF6B35);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pulse {
    animation: pulse 2s infinite;
}

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

/* SVG Animations */
.pacman-icon {
    width: 80px;
    height: 80px;
    animation: chomp 0.8s infinite;
    display: inline-block;
}

.ghost-icon {
    width: 60px;
    height: 60px;
    animation: float 3s ease-in-out infinite;
}

.small-pacman {
    width: 40px;
    height: 40px;
    animation: chomp 1s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .features, .screenshots, .pricing, .cta-section, .compact-articles-section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card.premium {
        transform: none;
    }
    
    .pricing-card.premium:hover {
        transform: translateY(-8px);
    }
    
    .floating-ghost {
        display: none;
    }
    
    /* МОБИЛЬНАЯ ВЕРСИЯ СТАТЕЙ - 1 КОЛОНКА */
    .compact-articles-two-columns {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .compact-article-card {
        padding: 16px !important;
        min-height: auto !important;
        max-height: none !important;
    }
    
    .compact-articles-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .articles-pagination {
        flex-direction: column !important;
        gap: 16px !important;
    }
    
    .pagination-btn {
        width: 100% !important;
        justify-content: center !important;
        max-width: 200px !important;
    }
    
    /* МОБИЛЬНАЯ АДАПТАЦИЯ СТРАНИЦ СТАТЕЙ */
    .content-wrapper {
        padding: 30px 20px !important;
    }
    
    .related-grid {
        grid-template-columns: 1fr !important;
    }
    
    .article-header {
        padding: 40px 0 !important;
    }
    
    .article-content {
        padding: 60px 0 !important;
    }
    
    .related-articles {
        padding: 40px 0 !important;
    }
}

@media (max-width: 480px) {
    .compact-articles-title h2 {
        font-size: 1.5rem;
    }
    
    .compact-article-content h3 {
        font-size: 1.1rem;
    }
    
    .compact-article-content p {
        font-size: 0.9rem;
    }
    
    .content-wrapper {
        padding: 20px 15px !important;
    }
    
    .article-text {
        font-size: 1rem !important;
    }
    
    .content-section h2 {
        font-size: 1.5rem !important;
    }
}