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

:root {
    --primary-dark: #0a0a2e;
    --secondary-dark: #16213e;
    --accent-red: #ff4444;
    --pure-white: #ffffff;
    --text-light: #e8f4f8;
    --text-gray: #b8c5d1;
    --gradient-primary: linear-gradient(135deg, #0a0a2e 0%, #16213e 50%, #1e3a5f 100%);
    --gradient-accent: linear-gradient(45deg, #ff4444 0%, #ff6666 50%, #ff2222 100%);
    --shadow-glow: 0 0 30px rgba(255, 68, 68, 0.3);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-light);
    background: var(--gradient-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Анимированный фон */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 68, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 68, 68, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 68, 68, 0.08) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: -1;
}

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

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

/* Современный хедер */
header {
    background: rgba(10, 10, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 68, 68, 0.2);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

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

.logo {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 68, 68, 0.5);
    animation: logoGlow 3s ease-in-out infinite;
}

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

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 8px;
    transition: color 0.3s ease;
    background: rgba(22, 33, 62, 0.6);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

nav a:hover {
    color: var(--accent-red);
    background: rgba(22, 33, 62, 0.8);
    border-color: rgba(255, 68, 68, 0.4);
}

nav a.active {
    color: var(--accent-red);
    background: rgba(255, 68, 68, 0.1);
    border-color: rgba(255, 68, 68, 0.6);
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 24px;
    }
    
    nav ul {
        justify-content: center;
        gap: 15px;
    }
    
    nav a {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    nav ul {
        gap: 10px;
    }
    
    nav a {
        padding: 8px 12px;
        font-size: 13px;
    }
}

main {
    padding: 60px 0;
}

/* Современные хлебные крошки */
.breadcrumbs {
    margin-bottom: 32px;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(22, 33, 62, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    font-size: 14px;
    border: 1px solid rgba(255, 68, 68, 0.2);
    box-shadow: var(--shadow-soft);
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.breadcrumbs li:not(:last-child)::after {
    content: "→";
    margin-left: 12px;
    color: var(--accent-red);
    font-weight: bold;
}

.breadcrumbs a {
    color: var(--accent-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--pure-white);
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.8);
}

.last-updated {
    font-size: 14px;
    color: var(--accent-red);
    font-style: italic;
    margin: 16px 0 !important;
    opacity: 0.8;
}

/* Футуристический герой-секция */
.hero {
    background: rgba(22, 33, 62, 0.6);
    backdrop-filter: blur(20px);
    padding: 80px 60px;
    border-radius: 24px;
    margin-bottom: 60px;
    text-align: center;
    border: 1px solid rgba(255, 68, 68, 0.3);
    box-shadow: var(--shadow-glow), var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 68, 68, 0.1), transparent);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

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

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    animation: titleFloat 4s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(255, 68, 68, 0.5);
}

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

.hero p {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto 24px;
    line-height: 1.8;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-bottom: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 68, 68, 0.4);
    box-shadow: var(--shadow-glow);
    transition: all 0.4s ease;
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(255, 68, 68, 0.6);
}

/* Панель доступа */
.access-panel {
    background: rgba(10, 10, 46, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 68, 68, 0.3);
    padding: 40px;
    margin: 40px 0;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 68, 68, 0.1);
    position: relative;
    overflow: hidden;
}

.access-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.6);
}

.access-info {
    margin-bottom: 30px;
}

.access-info h3 {
    color: var(--accent-red);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.access-link-container {
    margin-bottom: 30px;
}

.link-display {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(22, 33, 62, 0.8);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.link-display:hover {
    border-color: rgba(255, 68, 68, 0.6);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
}

.link-icon {
    font-size: 24px;
    color: var(--accent-red);
}

.link-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 16px;
    font-family: 'Courier New', monospace;
    padding: 10px 15px;
    border-radius: 8px;
    outline: none;
    cursor: text;
}

.link-input:focus {
    background: rgba(255, 68, 68, 0.1);
}

.copy-btn {
    background: rgba(22, 33, 62, 0.8);
    border: 2px solid rgba(255, 68, 68, 0.4);
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    min-width: 100px;
    justify-content: center;
}

.copy-btn:hover {
    background: rgba(255, 68, 68, 0.2);
    border-color: rgba(255, 68, 68, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
}

.copy-icon {
    font-size: 16px;
}

.copy-text {
    font-weight: 600;
}

.copy-status {
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.access-warning {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.access-warning h4 {
    color: var(--accent-red);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.access-warning p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Адаптивность для панели доступа */
@media (max-width: 768px) {
    .access-panel {
        padding: 30px;
    }
    
    .link-display {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .link-input {
        width: 100%;
        text-align: center;
    }
    
    .copy-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .access-panel {
        padding: 20px;
    }
    
    .access-info h3 {
        font-size: 20px;
    }
    
    .link-display {
        padding: 15px;
    }
    
    .link-input {
        font-size: 14px;
    }
}

/* Современные секции с улучшенным дизайном */
section {
    background: rgba(22, 33, 62, 0.8);
    backdrop-filter: blur(20px);
    padding: 70px;
    margin-bottom: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 68, 68, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 68, 68, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-accent);
    transform: scaleY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.6);
}

section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

section:hover::before {
    transform: scaleY(1);
}

section:hover::after {
    transform: scale(1);
}

section:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 68, 68, 0.4),
        inset 0 1px 0 rgba(255, 68, 68, 0.2);
    border-color: rgba(255, 68, 68, 0.5);
}

h2 {
    color: var(--pure-white);
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 40px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 68, 68, 0.6);
    position: relative;
    padding-bottom: 20px;
    animation: titlePulse 3s ease-in-out infinite;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.8);
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

h3 {
    color: var(--accent-red);
    font-size: 30px;
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 20px;
}

h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: var(--gradient-accent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.6);
    transition: all 0.3s ease;
}

h3:hover {
    text-shadow: 0 0 25px rgba(255, 68, 68, 0.9);
    transform: translateX(5px);
}

h3:hover::before {
    height: 40px;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.8);
}

h4 {
    color: var(--pure-white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

h4::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-size: 16px;
    animation: pulse 2s ease-in-out infinite;
}

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

p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    font-size: 18px;
}

/* Креативные макеты изображений */
.image-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 40px 0;
}

.split-left {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 2px solid rgba(255, 68, 68, 0.4);
    box-shadow: var(--shadow-glow);
    transition: all 0.4s ease;
}

.split-left:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 68, 68, 0.6);
}

.split-content {
    padding: 24px;
}

.image-float {
    margin: 40px 0;
}

.float-right {
    width: 50%;
    max-width: 500px;
    height: auto;
    float: right;
    margin: 0 0 24px 40px;
    border-radius: 16px;
    border: 2px solid rgba(255, 68, 68, 0.4);
    box-shadow: var(--shadow-glow);
    transition: all 0.4s ease;
}

.float-right:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 40px rgba(255, 68, 68, 0.6);
}

.image-grid {
    margin: 40px 0;
}

.grid-main {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 68, 68, 0.4);
    box-shadow: var(--shadow-glow);
    transition: all 0.4s ease;
}

.grid-main:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(255, 68, 68, 0.6);
}

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

.grid-item {
    background: rgba(10, 10, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 68, 68, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.grid-item:hover::before {
    transform: scaleX(1);
}

.grid-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 68, 68, 0.6);
}

@media (max-width: 768px) {
    .image-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .float-right {
        width: 100%;
        float: none;
        margin: 0 0 24px 0;
    }
}

/* Современные ресурсные блоки */
.resource-box {
    background: rgba(10, 10, 46, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 68, 68, 0.4);
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 68, 68, 0.1);
}

.resource-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-accent);
    transform: scaleY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.6);
}

.resource-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.03) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.resource-box:hover::before {
    transform: scaleY(1);
}

.resource-box:hover::after {
    transform: scale(1);
}

.resource-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 68, 68, 0.5),
        inset 0 1px 0 rgba(255, 68, 68, 0.2);
    border-color: rgba(255, 68, 68, 0.7);
}

.resource-box h3 {
    color: var(--accent-red);
    margin-top: 0;
    font-size: 26px;
    font-weight: 800;
    position: relative;
    padding-left: 25px;
}

.resource-box h3::before {
    content: '🔗';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.2); }
}

.resource-box a {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.resource-box a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.resource-box a:hover::after {
    width: 100%;
}

.resource-box a:hover {
    color: var(--accent-red);
    text-shadow: 0 0 15px rgba(255, 68, 68, 0.8);
    transform: translateX(5px);
}

/* Современные кнопки социальных сетей */
.share-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.share-btn {
    padding: 18px 36px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--pure-white);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 68, 68, 0.5);
    background: rgba(22, 33, 62, 0.9);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 68, 68, 0.2);
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.share-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 68, 68, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.share-btn:hover::before {
    left: 0;
}

.share-btn:hover::after {
    width: 300px;
    height: 300px;
}

.share-btn:hover {
    color: var(--primary-dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 68, 68, 0.6),
        inset 0 1px 0 rgba(255, 68, 68, 0.3);
    border-color: rgba(255, 68, 68, 0.8);
}

/* Дополнительные стили для кнопок */
.btn-primary {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    color: var(--pure-white);
    background: linear-gradient(45deg, #ff2222, #ff4444);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
}

.btn-secondary:hover {
    background: var(--accent-red);
    color: var(--primary-dark);
}

/* Современные FAQ элементы */
.faq-item {
    background: rgba(10, 10, 46, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 68, 68, 0.4);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 68, 68, 0.1);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.8);
}

.faq-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.03) 0%, transparent 70%);
    transform: translateY(-50%) scale(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item:hover::after {
    transform: translateY(-50%) scale(1);
}

.faq-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 68, 68, 0.5),
        inset 0 1px 0 rgba(255, 68, 68, 0.2);
    border-color: rgba(255, 68, 68, 0.7);
}

.faq-item h3 {
    color: var(--pure-white);
    margin-top: 0;
    font-size: 24px;
    font-weight: 800;
    position: relative;
    padding-left: 25px;
}

.faq-item h3::before {
    content: '?';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: var(--primary-dark);
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.6);
}

/* Современный футер */
footer {
    background: rgba(10, 10, 46, 0.95);
    backdrop-filter: blur(20px);
    color: var(--pure-white);
    padding: 80px 24px 32px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 68, 68, 0.2);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-accent);
}

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-red);
    font-weight: 700;
}

.footer-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-section ul li a:hover {
    color: var(--accent-red);
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.6);
}

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

.footer-bottom p {
    margin: 12px 0;
    line-height: 1.7;
    color: var(--text-gray);
}

.footer-bottom p:first-child {
    font-weight: 700;
    font-size: 18px;
    color: var(--accent-red);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 50px;
    }
    
    .hero {
        padding: 60px 40px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 38px;
    }
    
    h3 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    h2 {
        font-size: 32px;
        padding-bottom: 15px;
    }
    
    h2::after {
        width: 40px;
        height: 3px;
    }
    
    h3 {
        font-size: 22px;
        padding-left: 15px;
    }
    
    h3::before {
        width: 3px;
        height: 25px;
    }
    
    h4 {
        font-size: 18px;
        padding-left: 12px;
    }
    
    section {
        padding: 35px;
    }
    
    .hero {
        padding: 40px 24px;
    }
    
    .faq-item {
        padding: 30px;
    }
    
    .resource-box {
        padding: 30px;
    }
    
    .share-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    h2 {
        font-size: 24px;
        padding-bottom: 12px;
    }
    
    h2::after {
        width: 30px;
        height: 2px;
    }
    
    h3 {
        font-size: 18px;
        padding-left: 12px;
    }
    
    h3::before {
        width: 2px;
        height: 20px;
    }
    
    h4 {
        font-size: 16px;
        padding-left: 10px;
    }
    
    section {
        padding: 25px;
    }
    
    .hero {
        padding: 32px 20px;
    }
    
    .faq-item {
        padding: 25px;
    }
    
    .resource-box {
        padding: 25px;
    }
    
    .share-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .share-buttons {
        gap: 16px;
    }
}

/* Дополнительные анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeInUp 0.8s ease-out;
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* Кастомный скроллбар */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}
