/* ===== RESET & GLOBAL ===== */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #121218;
    --bg-tertiary: #1a1a24;
    --bg-card: #1e1e2a;
    --bg-gradient: linear-gradient(135deg, #5865f2 0%, #8b46ff 100%);
    --bg-gradient-dark: linear-gradient(135deg, #4752c4 0%, #7a3be8 100%);
    --text-primary: #ffffff;
    --text-secondary: #b4b8c0;
    --text-muted: #8a8ea6;
    --accent-primary: #5865f2;
    --accent-secondary: #8b46ff;
    --success: #3ba55c;
    --warning: #faa81a;
    --danger: #ed4245;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    background: linear-gradient(135deg, 
        var(--bg-primary) 0%, 
        #15152a 25%, 
        #1a1a35 50%, 
        #15152a 75%, 
        var(--bg-primary) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== ТИПОГРАФИЯ ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== КЛАССЫ ПОМОЩНИКИ ===== */
.sections-container {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
}

.content-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
    scroll-margin-top: 80px;
}

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

.section-title {
    margin-bottom: 60px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-primary);
    opacity: 0.5;
}

.gradient-text {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--accent-primary);
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--bg-gradient);
    color: white;
}

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

.btn-secondary {
    background: rgba(88, 101, 242, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.btn-secondary:hover {
    background: rgba(88, 101, 242, 0.2);
    transform: translateY(-2px);
}

/* ===== НАВИГАЦИЯ ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 15px 0;
}

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

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

.nav-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.nav-name {
    font-size: 1.5rem;
    font-weight: 700;
}

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

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bg-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.contact-btn {
    background: rgba(88, 101, 242, 0.1);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.contact-btn:hover {
    background: rgba(88, 101, 242, 0.2);
}

.nav-mobile-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

/* ===== ГЕРОЙ СЕКЦИЯ (полный экран) ===== */
.hero-section {
    height: 113vh;
    min-height: 800px;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 15, 0.9) 0%,
        rgba(26, 26, 52, 0.8) 50%,
        rgba(10, 10, 15, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(88, 101, 242, 0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 40px;
    z-index: 2;
}

.avatar-container {
    margin-bottom: -30px;
}

.hero-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--accent-primary);
    padding: 4px;
    background: var(--bg-card);
    margin-bottom: 20px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
}

.status-dot.online {
    background: var(--success);
}

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

.status-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== ТАЙМЕР ДОСТУПНОСТИ ===== */
.availability-timer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    max-width: 400px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

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

.timer-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.timer-content {
    flex: 1;
    text-align: left;
}

.timer-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.timer-display {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    margin-bottom: 10px;
    color: var(--accent-primary);
}

.timer-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--bg-gradient);
    width: 70%;
    border-radius: 3px;
    transition: width 1s linear;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.scroll-indicator {
    animation: bounce 2s infinite;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
}

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

/* ===== ОБО МНЕ ===== */
.about-section {
    background: rgba(18, 18, 24, 0.7);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    font-size: 1.1rem;
}

.about-quote {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-primary);
    margin: 30px 0;
    font-style: italic;
    position: relative;
}

.about-quote i:first-child {
    position: absolute;
    top: 15px;
    left: 15px;
    opacity: 0.3;
}

.about-quote i:last-child {
    position: absolute;
    bottom: 15px;
    right: 15px;
    opacity: 0.3;
}

.about-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.about-link:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.about-tech-title {
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.tech-timeline {
    position: relative;
    padding-left: 20px;
}

.tech-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bg-gradient);
}

.tech-item {
    position: relative;
    padding: 20px 0;
    padding-left: 30px;
}

.tech-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 25px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-gradient);
    border: 3px solid var(--bg-secondary);
}

.tech-year {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.tech-name {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.tech-level {
    font-size: 0.85rem;
    color: var(--accent-primary);
    background: rgba(88, 101, 242, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* ===== НАВЫКИ ===== */
.skills-section {
    background: rgba(26, 26, 36, 0.7);
}

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

.skill-category {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.category-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    background: rgba(88, 101, 242, 0.1);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.skill-name {
    min-width: 120px;
    font-weight: 500;
}

.skill-bar {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.skill-level {
    height: 100%;
    background: var(--bg-gradient);
    border-radius: 5px;
    width: 0;
    transition: width 1s ease-out;
}

/* ===== ПРОЕКТЫ ===== */
.projects-section {
    background: rgba(18, 18, 24, 0.7);
}

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

.project-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-card:hover::before {
    transform: translateX(0);
}

.project-badge {
    position: absolute;
    top: 2px;
    right: 20px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.project-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.project-year {
    font-size: 0.9rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.project-description {
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tech-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.project-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.feature i {
    color: var(--success);
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(88, 101, 242, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(88, 101, 242, 0.3);
    color: var(--accent-primary);
    font-weight: 500;
    transition: var(--transition);
}

.project-link:hover {
    background: rgba(88, 101, 242, 0.2);
    transform: translateY(-2px);
}

/* ===== ОПЫТ ===== */
.experience-section {
    background: rgba(26, 26, 36, 0.7);
}

.experience-timeline {
    position: relative;
    padding-left: 30px;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bg-gradient);
}

.timeline-item {
    position: relative;
    padding: 30px 0;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 35px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-gradient);
    border: 4px solid var(--bg-primary);
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.timeline-company {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 15px;
}

.timeline-tasks {
    list-style: none;
    margin-bottom: 20px;
}

.timeline-tasks li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.timeline-tasks li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

.timeline-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline-tech span {
    padding: 6px 12px;
    background: rgba(88, 101, 242, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--accent-primary);
    border: 1px solid rgba(88, 101, 242, 0.3);
}

/* ===== КОНТАКТЫ ===== */
.contact-section {
    background: rgba(18, 18, 24, 0.7);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(88, 101, 242, 0.1);
    border-radius: var(--radius-sm);
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.contact-value {
    font-weight: 500;
    color: var(--text-primary);
}

.availability-display {
    background: rgba(59, 165, 92, 0.1);
    border-radius: var(--radius-md);
    padding: 15px;
    border: 1px solid rgba(59, 165, 92, 0.3);
}

.availability-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.availability-time {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-cta {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.cta-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cta-description {
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== ФУТЕР ===== */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
}

.footer-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-self: end;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.footer-social {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-copyright i {
    color: var(--danger);
    margin: 0 5px;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-mobile-btn {
        display: block;
    }
    
    .skills-categories {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-self: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-links {
        flex-direction: column;
    }
    
    .project-links {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* ===== СКРОЛЛБАР ===== */
::-webkit-scrollbar {
    width: 10px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--bg-gradient-dark);
}

/* ===== АНИМАЦИИ ДЛЯ СЕКЦИЙ ===== */
.content-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section.active {
    opacity: 1;
    transform: translateY(0);
}

.avatar-background {
    position: absolute;
    top: 0; /* Позиционирование по вашему усмотрению */
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/reklama.png'); /* Путь к изображению */
    background-size: cover;
    background-position: center;
    z-index: -1; /* Чтобы фон был под другими элементами */
}