:root {
    --orange-primary: #ff8c42;
    --orange-dark: #e67a2e;
    --orange-light: #ffb085;
    --orange-glow: rgba(255, 140, 66, 0.3);

    --blue-primary: #3a6ea5;
    --blue-dark: #2c5290;
    --blue-light: #6c9bd2;
    --blue-glow: rgba(58, 110, 165, 0.3);

    --dark-bg: #0a0f1a;
    --darker-bg: #05080f;
    --card-bg: rgba(20, 30, 45, 0.7);
    --text-primary: #e5e9f0;
    --text-secondary: #a0b3d9;
    --text-muted: #6c7a96;

    --gradient-orange: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    --gradient-blue: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    --gradient-mixed: linear-gradient(135deg, var(--orange-primary), var(--blue-primary));

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-orange: 0 8px 24px var(--orange-glow);
    --shadow-blue: 0 8px 24px var(--blue-glow);

    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at 20% 30%, #1a2538, var(--dark-bg), var(--darker-bg));
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== ДЕКОР ========== */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.rune {
    position: absolute;
    font-size: 200px;
    font-weight: bold;
    color: rgba(255, 140, 66, 0.05);
    white-space: nowrap;
    animation: floatRune 30s infinite linear;
}

.rune-1::before { content: 'ᚠ'; }
.rune-2::before { content: 'ᚢ'; }
.rune-3::before { content: 'ᚦ'; }
.rune-4::before { content: 'ᚨ'; }

.rune-1 { top: 10%; left: 5%; animation-delay: 0s; }
.rune-2 { top: 40%; right: 10%; animation-delay: -5s; }
.rune-3 { bottom: 20%; left: 15%; animation-delay: -10s; }
.rune-4 { bottom: 50%; right: 20%; animation-delay: -15s; }

.mist {
    position: absolute;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, transparent, rgba(58, 110, 165, 0.1), transparent);
    filter: blur(40px);
    animation: mistMove 20s infinite alternate;
}

.mist-1 { top: 0; left: -10%; width: 120%; }
.mist-2 { bottom: 0; right: -10%; width: 120%; animation-direction: reverse; }

.ancient-symbol {
    position: absolute;
    font-size: 300px;
    color: rgba(58, 110, 165, 0.03);
    transform: rotate(-15deg);
}

.symbol-1 { top: 20%; right: 5%; }
.symbol-2 { bottom: 10%; left: 5%; transform: rotate(20deg); }
.symbol-3 { top: 60%; left: 20%; }
.symbol-4 { bottom: 30%; right: 15%; }

@keyframes floatRune {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes mistMove {
    0% { transform: translateX(0) scale(1); opacity: 0.3; }
    100% { transform: translateX(30px) scale(1.2); opacity: 0.6; }
}

/* ========== ШАПКА ========== */
.header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(12px);
    background: rgba(10, 15, 26, 0.7);
    border-bottom: 1px solid rgba(255, 140, 66, 0.2);
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Кликабельное лого без подчёркивания */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 8px var(--orange-primary));
    animation: pulse 2s infinite;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes pulse {
    0%, 100% { filter: drop-shadow(0 0 8px var(--orange-primary)); }
    50% { filter: drop-shadow(0 0 16px var(--orange-primary)); }
}

.nav {
    display: flex;
    gap: 24px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-mixed);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* ========== КНОПКИ ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-orange);
    color: white;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px var(--orange-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--orange-primary);
    color: var(--orange-primary);
}

.btn-outline:hover {
    background: rgba(255, 140, 66, 0.1);
    border-color: var(--orange-light);
    color: var(--orange-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

/* ========== HERO ========== */
.hero {
    padding: 60px 0 80px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid var(--orange-primary);
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange-light);
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: left;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--orange-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    position: relative;
    height: 500px;
}

.mythical-scene {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-runes {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 40px;
    color: var(--orange-primary);
    opacity: 0.3;
    animation: rotateRunes 30s infinite linear;
}

.floating-runes span {
    animation: floatRune 4s infinite alternate;
}

.floating-runes span:nth-child(2) { animation-delay: -0.5s; }
.floating-runes span:nth-child(3) { animation-delay: -1s; }
.floating-runes span:nth-child(4) { animation-delay: -1.5s; }
.floating-runes span:nth-child(5) { animation-delay: -2s; }

.dragon-silhouette {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 200px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,50 Q40,20 60,20 Q80,20 80,40 Q80,60 60,70 Q40,80 30,70 Q20,60 20,50" fill="none" stroke="%23ff8c42" stroke-width="2" opacity="0.3"/></svg>') center/contain no-repeat;
    animation: flyDragon 10s infinite alternate;
}

.ancient-pillar {
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 150px;
    background: linear-gradient(to bottom, var(--blue-primary), transparent);
    opacity: 0.3;
    transform: skewX(-10deg);
}

.pillar-1 { left: 20%; }
.pillar-2 { right: 20%; }

.magic-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid var(--orange-primary);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulseCircle 4s infinite;
}

@keyframes rotateRunes {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes flyDragon {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    100% { transform: translate(-40%, -60%) scale(1.1); opacity: 0.6; }
}

@keyframes pulseCircle {
    0% { width: 200px; height: 200px; opacity: 0.2; }
    50% { width: 250px; height: 250px; opacity: 0.4; }
    100% { width: 200px; height: 200px; opacity: 0.2; }
}

/* ========== СЕРВЕРА ========== */
.servers {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.server-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: var(--border-radius-xl);
    padding: 32px 24px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.server-card.featured {
    border: 2px solid var(--orange-primary);
    transform: scale(1.02);
    box-shadow: var(--shadow-orange);
}

.server-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-orange);
}

.server-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
}

.server-icon {
    font-size: 64px;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 10px var(--orange-primary));
}

.server-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.server-status {
    font-size: 14px;
    font-weight: 600;
}

.server-status.online { color: #4caf50; }
.server-status.high { color: #ff9800; }
.server-status.medium { color: #ffc107; }
.server-status.offline { color: #f44336; }

.server-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    flex-grow: 1;
}

.server-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 8px 0;
}

.server-features span {
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 40px;
    padding: 4px 12px;
    font-size: 12px;
    color: var(--orange-light);
}

.server-btn {
    display: inline-block;
    margin-top: 8px;
}

/* ========== НОВОСТИ ========== */
.news {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.news-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-orange);
}

.news-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.news-excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.news-link {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.news-link:hover {
    color: var(--orange-light);
    gap: 8px;
}

/* ========== ПРЕИМУЩЕСТВА ========== */
.features {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,140,66,0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-mixed);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-orange);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px var(--orange-primary));
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px var(--orange-primary));
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.feature-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.feature-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-card:hover .feature-glow {
    opacity: 0.5;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .feature-icon {
        font-size: 40px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Анимация появления */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.feature-card {
    animation: fadeInScale 0.5s ease-out forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }
.feature-card:nth-child(9) { animation-delay: 0.9s; }
.feature-card:nth-child(10) { animation-delay: 1.0s; }

.feature-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ========== CTA ========== */
.cta {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mixed);
    opacity: 0.1;
    z-index: -1;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

/* ========== ПОДВАЛ ========== */
.footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 140, 66, 0.2);
    padding: 60px 0 30px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--orange-primary);
    padding-left: 5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--orange-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 140, 66, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

.magic-signature {
    color: var(--orange-primary);
    font-style: italic;
}

/* ========== АДАПТАЦИЯ ========== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 15, 26, 0.95);
        backdrop-filter: blur(12px);
        padding: 20px;
        border-bottom: 1px solid rgba(255, 140, 66, 0.2);
        z-index: 99;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        height: 300px;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stat-item {
        width: 100%;
        max-width: 200px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
    }

    .servers-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .server-card.featured {
        transform: scale(1);
    }

    .cta-title {
        font-size: 28px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.server-card, .news-card, .feature-item {
    animation: fadeInUp 0.6s ease-out forwards;
}

.server-card:nth-child(2) { animation-delay: 0.1s; }
.server-card:nth-child(3) { animation-delay: 0.2s; }
.server-card:nth-child(4) { animation-delay: 0.3s; }

/* Хлебные крошки */
.breadcrumbs {
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-secondary); /* убрали фиолетовый, теперь серый */
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--orange-primary); /* при наведении оранжевый */
}

.breadcrumbs span {
    color: var(--text-muted);
}

.breadcrumbs span:last-child {
    color: var(--text-primary); /* текущая страница белая */
}

/* ========== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ ШАПКИ ========== */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-actions, .guest-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logout-form {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.logout-form .btn {
    margin: 0;
}

/* Стиль для кнопки выхода */
.btn-icon {
    font-size: 16px;
    margin-right: 4px;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .header-actions {
        gap: 8px;
    }

    .auth-actions, .guest-actions {
        flex-direction: column;
        gap: 8px;
    }

    .logout-form {
        width: 100%;
    }

    .logout-form .btn {
        width: 100%;
    }
}