/* ========================================
   TACTICS GAME SURVIVAL — СТИЛИ
   ======================================== */

:root {
    --bg-dark: #0c0c0c;
    --card-bg: #161616;
    --accent-primary: #ff7a18;
    --accent-secondary: #4fc3f7;
    --text: #eaeaea;
    --text-secondary: #888;
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 122, 24, 0.3);
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 10px 30px rgba(255, 122, 24, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER / НАВИГАЦИЯ
   ======================================== */

.header {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-fire {
    font-size: 28px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.logo:hover .logo-text {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav a:hover, .nav a.active {
    color: var(--accent-primary);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav a:hover::after, .nav a.active::after {
    transform: scaleX(1);
}

.discord-btn {
    background: var(--accent-primary);
    color: white !important;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--accent-primary);
}

.discord-btn:hover {
    background: #e66a00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: all 0.3s;
}

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

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

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

/* ========================================
   HERO / ГЛАВНЫЙ БЛОК
   ======================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(12, 12, 12, 0.9)), url('/assets/img/hero.jpg') center/cover no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeIn 1s ease-out;
}

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

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 45px;
    background: var(--accent-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid var(--accent-primary);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--accent-primary);
}

.btn-secondary {
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
}

.btn-secondary:hover {
    background: #3da8e0;
    box-shadow: 0 10px 30px rgba(79, 195, 247, 0.4);
}

/* ========================================
   PHILOSOPHY / ФИЛОСОФИЯ
   ======================================== */

.philosophy {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-dark) 0%, var(--card-bg) 100%);
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.6;
}

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

.philosophy-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow);
}

.philosophy-card {
    border-top: 5px solid var(--accent-primary);
}

.philosophy-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.philosophy-card .philosophy-icon {
    color: var(--accent-primary);
}

.philosophy-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.philosophy-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.philosophy-highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.2), rgba(79, 195, 247, 0.2));
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: 600;
}

/* Баннер философии */
.philosophy-banner {
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.1) 0%, rgba(79, 195, 247, 0.1) 100%);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.philosophy-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.05) 0%, rgba(79, 195, 247, 0.05) 100%);
    animation: rotate 20s linear infinite;
}

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

.philosophy-banner h3 {
    color: var(--accent-primary);
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.philosophy-banner p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ========================================
   ПОЧЕМУ ВЫБИРАЮТ НАС
   ======================================== */

.why-us {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--card-bg) 0%, var(--bg-dark) 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.why-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow);
}

.why-card {
    border-top: 5px solid var(--accent-primary);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-card .why-icon {
    color: var(--accent-primary);
}

.why-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* ========================================
   ЦИТАТА
   ======================================== */

.quote-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(12, 12, 12, 0.95)), url('/assets/img/hero.jpg') center/cover;
    text-align: center;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(22, 22, 22, 0.7);
    border-radius: 15px;
    border: 1px solid var(--border);
}

.quote-text {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
}

.quote-text::before,
.quote-text::after {
    content: '"';
    font-size: 60px;
    color: var(--accent-primary);
    position: absolute;
    opacity: 0.3;
}

.quote-text::before {
    top: -20px;
    left: -20px;
}

.quote-text::after {
    bottom: -40px;
    right: -20px;
}

.quote-author {
    color: var(--accent-secondary);
    font-size: 18px;
    font-weight: 600;
}

/* ========================================
   СТАТИСТИКА
   ======================================== */

.stats-section {
    padding: 80px 0;
    background: var(--card-bg);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

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

/* ========================================
   РАСШИРЕННЫЕ ОСОБЕННОСТИ
   ======================================== */

.features-extended {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.features-extended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-extended-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 35px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-extended-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow);
}

.feature-extended-icon {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--accent-primary);
}

.feature-extended-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-extended-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   FEATURES / ОСОБЕННОСТИ
   ======================================== */

.features {
    padding: 100px 0;
    background-color: var(--card-bg);
}

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

.feature-card {
    background: rgba(22, 22, 22, 0.7);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    background: rgba(28, 28, 28, 0.9);
}

.feature-icon {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--accent-primary);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* ========================================
   DONATE / ДОНАТ
   ======================================== */

.page-header {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(rgba(12, 12, 12, 0.9), rgba(22, 22, 22, 0.9)), url('/assets/img/hero.jpg') center/cover;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 20px;
}

.donate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.donate-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.donate-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow);
}

.donate-icon {
    height: 120px;
    background: rgba(255, 122, 24, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.donate-icon img {
    max-height: 80px;
    max-width: 80px;
    object-fit: contain;
}

.donate-content {
    padding: 25px;
    text-align: center;
}

.donate-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.donate-price {
    color: var(--accent-primary);
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0;
}

.donate-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
    min-height: 60px;
    line-height: 1.5;
}

.donate-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    border: 2px solid var(--accent-primary);
}

.donate-btn:hover {
    background: #e66a00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.donate-disclaimer {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 40px;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background: rgba(255, 122, 24, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent-primary);
}

/* ========================================
   PAGES / СТРАНИЦЫ
   ======================================== */

.page-content {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
    line-height: 1.8;
}

.page-content h2 {
    color: var(--accent-primary);
    margin: 30px 0 15px;
    font-size: 28px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.page-content h3 {
    color: var(--accent-secondary);
    margin: 25px 0 10px;
    font-size: 22px;
    font-weight: 600;
}

.page-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-content ul {
    padding-left: 25px;
    margin: 20px 0;
    color: var(--text-secondary);
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-content a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.page-content a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.connect-info {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 700px;
    margin: 40px auto;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.connect-ip {
    font-size: 28px;
    font-weight: 700;
    margin: 20px 0;
    color: var(--accent-primary);
    word-break: break-all;
    background: rgba(255, 122, 24, 0.1);
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
    width: 100%;
}

/* ========================================
   FOOTER / ПОДВАЛ
   ======================================== */

.footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 70px 0 40px;
    margin-top: auto;
    border-top: 1px solid var(--border);
}

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

.footer-logo {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-col h3 {
    color: var(--accent-primary);
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s;
    font-size: 15px;
    padding: 5px 0;
}

.footer-col a:hover {
    color: var(--accent-primary);
    transform: translateX(5px);
}

.footer-col a i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

/* ========================================
   404 PAGE
   ======================================== */

.error-page {
    text-align: center;
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.error-page h1 {
    font-size: 120px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.error-page h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text);
}

.error-page p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 18px;
}

/* ========================================
   UTILITIES / УТИЛИТЫ
   ======================================== */

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

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ========================================
   RESPONSIVE / АДАПТИВНОСТЬ
   ======================================== */
/* ========================================
   ТАЙМЕР ОБРАТНОГО ОТСЧЁТА
   ======================================== */

.countdown-section {
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.2) 0%, rgba(79, 195, 247, 0.2) 100%);
    border: 2px solid var(--accent-primary);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.1) 0%, rgba(79, 195, 247, 0.1) 100%);
    animation: rotate 15s linear infinite;
    z-index: 0;
}

.countdown-header {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.countdown-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    margin-top: 10px;
}

.next-wipe-text {
    color: var(--text-secondary);
    margin-top: 15px;
    font-size: 16px;
}

.next-wipe-date {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 18px;
    margin-top: 5px;
    display: block;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.countdown-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    color: var(--text-secondary);
    font-size: 16px;
    margin-top: 10px;
    text-transform: lowercase;
}

.countdown-warning {
    background: rgba(255, 122, 24, 0.15);
    border-left: 4px solid var(--accent-primary);
    padding: 15px;
    border-radius: 8px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.countdown-warning-text {
    color: var(--accent-primary);
    font-weight: 600;
}

/* Анимация для цифр при обновлении */
.countdown-number {
    transition: transform 0.3s ease;
}

.countdown-item:hover .countdown-number {
    transform: scale(1.1);
}
@media (max-width: 992px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-dark);
        flex-direction: column;
        padding: 40px 0;
        gap: 25px;
        transition: left 0.4s ease-out;
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav a {
        font-size: 22px;
        display: block;
        text-align: center;
        width: 100%;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        padding: 14px;
    }

    .section-title {
        font-size: 36px;
    }

    .philosophy-card {
        padding: 30px 20px;
    }
    
    .philosophy-banner {
        padding: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .feature-icon {
        font-size: 36px;
    }

    .donate-price {
        font-size: 24px;
    }
    
    .error-page h1 {
        font-size: 80px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .quote-text {
        font-size: 22px;
    }
}

/* ========================================
   ANIMATIONS / АНИМАЦИИ
   ======================================== */

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Фильтры каталога */
#searchInput, #categoryFilter, #sortFilter {
    transition: border-color 0.3s;
}

#searchInput:focus, #categoryFilter:focus, #sortFilter:focus {
    border-color: var(--accent-primary);
    outline: none;
}

/* ========================================
   EVENT LINK HIGHLIGHT
   ======================================== */
.event-link {
    position: relative;
    color: #ffd700 !important;
    font-weight: 600;
    animation: eventPulse 2s ease-in-out infinite;
}

.event-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

.event-link:hover {
    color: #ffed4e !important;
}

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

/* Мобильная версия */
@media (max-width: 768px) {
    .event-link {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.1));
        padding: 10px 15px;
        border-radius: 8px;
        border: 1px solid rgba(255, 215, 0, 0.3);
    }
}
