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

body {
    background: #000000;
    color: #e0e0e0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.4;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Фоновые частицы */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.top-line, .bottom-line {
    position: fixed;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 100;
    pointer-events: none;
}

.top-line {
    top: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.3) 20%, 
        rgba(255,255,255,0.8) 50%, 
        rgba(255,255,255,0.3) 80%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: lineGlow 3s ease-in-out infinite;
}

.bottom-line {
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.3) 20%, 
        rgba(255,255,255,0.8) 50%, 
        rgba(255,255,255,0.3) 80%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: lineGlow 3s ease-in-out infinite reverse;
}

@keyframes lineGlow {
    0% { background-position: 200% 0%; }
    100% { background-position: -200% 0%; }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    animation: containerAppear 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
    animation: headerReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

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

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #888888 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoShine 4s ease-in-out infinite;
    cursor: default;
    transition: transform 0.3s ease;
}

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

@keyframes logoShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.logo span {
    -webkit-text-fill-color: #aaa;
    font-weight: 400;
    animation: none;
}

.header-sub {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #888;
    margin-top: 0.5rem;
    animation: subtitlePulse 3s ease-in-out infinite;
}

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

/* Счетчик посетителей */
.visitor-counter {
    position: fixed;
    top: 25px;
    right: 25px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 60px;
    padding: 10px 20px;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: slideInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.visitor-counter:hover {
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    transform: translateY(-2px);
}

.visitor-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.visitor-counter:hover .visitor-icon {
    background: rgba(255,255,255,0.2);
    transform: rotate(360deg);
}

.visitor-icon svg {
    width: 16px;
    height: 16px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.visitor-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.visitor-label {
    font-size: 0.65rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.visitor-counter:hover .visitor-label {
    color: #aaa;
}

.visitor-count {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.visitor-counter:hover .visitor-count {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.visitor-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: visitorPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

@keyframes visitorPulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.5);
    }
}

/* Статистическая панель */
.stats-panel {
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 16px;
    z-index: 98;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    display: none;
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-panel.visible {
    display: block;
}

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

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stats-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #eee;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-close {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 4px;
    transition: color 0.3s ease;
    line-height: 1;
}

.stats-close:hover {
    color: #fff;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stat-item:last-of-type {
    border-bottom: none;
}

.stat-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.stat-graph {
    margin-top: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 8px;
    min-height: 80px;
    position: relative;
}

.stat-graph canvas {
    width: 100%;
    height: auto;
    display: block;
}

/* Тоггл статистики */
.stats-toggle {
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    z-index: 97;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: slideInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

.stats-toggle:hover {
    border-color: rgba(255,255,255,0.4);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

.stats-toggle svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.stats-toggle.active {
    background: white;
}

.stats-toggle.active svg {
    stroke: black;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    animation: cardAppear 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(var(--index) * 0.1s + 0.3s);
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

.service-card:hover::before {
    left: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -20px rgba(255,255,255,0.15),
                0 0 20px rgba(255,255,255,0.05);
}

.service-card:active {
    transform: translateY(-4px) scale(0.98);
    transition: transform 0.1s ease;
}

.service-card.active {
    border: 2px solid rgba(255,255,255,0.8);
    background: rgba(10, 10, 10, 0.9);
    box-shadow: 0 0 30px rgba(255,255,255,0.1),
                inset 0 0 30px rgba(255,255,255,0.02);
    animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255,255,255,0.1); }
    50% { box-shadow: 0 0 35px rgba(255,255,255,0.2); }
}

.card-logo {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .card-logo {
    transform: scale(1.1) rotate(2deg);
}

.card-logo img {
    max-height: 45px;
    max-width: 80%;
    object-fit: contain;
    filter: grayscale(0.3) brightness(0.9);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .card-logo img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.05);
}

.card-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #eee;
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
}

.service-card:hover .card-title {
    color: #fff;
}

.card-sub {
    font-size: 0.7rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.service-card:hover .card-sub {
    color: #aaa;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: #666;
    border: 1px dashed rgba(255,255,255,0.1);
    background: rgba(5, 5, 5, 0.5);
    margin-bottom: 2rem;
    border-radius: 12px;
    display: none;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.detail-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    margin: 2rem 0;
    padding: 2.5rem;
    border-radius: 16px;
    display: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    animation: detailAppear 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.detail-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.detail-card:hover {
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 0 30px rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

.detail-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.detail-icon {
    width: 90px;
    height: 90px;
    background: rgba(15, 15, 15, 0.8);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: iconFloat 3s ease-in-out infinite;
}

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

.detail-card:hover .detail-icon {
    transform: scale(1.05) rotate(3deg);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    animation: none;
}

.detail-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.detail-card h2 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.detail-card:hover h2 {
    transform: scale(1.02);
}

.detail-card p {
    max-width: 550px;
    margin-bottom: 1.5rem;
    color: #bcbcbc;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.detail-card:hover p {
    color: #ddd;
}

.detail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.detail-features span {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #ddd;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    animation: featurePop 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(var(--feature-index) * 0.05s + 0.2s);
}

@keyframes featurePop {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.detail-features span:hover {
    background: rgba(30, 30, 30, 0.9);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
    padding: 0.8rem 2.2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border-radius: 8px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

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

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

.btn:hover {
    background: white;
    color: black;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
    gap: 12px;
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeIn 0.6s ease 0.4s both;
}

.category-btn {
    padding: 0.8rem 1.6rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.category-btn:hover::before {
    opacity: 1;
}

.category-btn:hover {
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.category-btn.active {
    background: white;
    color: black;
    border-color: white;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    animation: activeBtnGlow 2s ease-in-out infinite;
}

@keyframes activeBtnGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255,255,255,0.2); }
    50% { box-shadow: 0 0 30px rgba(255,255,255,0.4); }
}

.category-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    animation: fadeIn 0.6s ease 0.6s both;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: modalOverlayIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes modalOverlayIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 2.5rem;
    max-width: 480px;
    width: 90%;
    border-radius: 16px;
    text-align: center;
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: white;
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 0 rgba(255,255,255,0); }
    50% { text-shadow: 0 0 20px rgba(255,255,255,0.3); }
}

.modal-content p {
    color: #bbb;
    line-height: 1.6;
    margin: 1.2rem 0;
    font-size: 0.95rem;
}

.lang-switch {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 60px;
    padding: 6px 12px;
    display: flex;
    gap: 8px;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: slideInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lang-switch:hover {
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    transform: translateY(-2px);
}

.lang-option {
    padding: 8px 16px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    color: #aaa;
    background: transparent;
    border: none;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.lang-option::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.lang-option:hover::before {
    width: 60%;
}

.lang-option.active {
    background: white;
    color: black;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
    animation: langActive 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes langActive {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}

.lang-option:not(.active):hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

/* Социальные сети */
.social-section {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.social-title {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #aaa;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.8rem 1.8rem;
    border-radius: 60px;
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.5);
    background: rgba(20, 20, 20, 0.9);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    color: white;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    transition: transform 0.2s ease;
}

.social-link:hover .social-icon svg {
    transform: scale(1.1);
}

.social-name {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Скроллбар */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Адаптив */
@media (max-width: 750px) {
    .container {
        padding: 1rem;
    }
    .detail-card h2 {
        font-size: 1.6rem;
    }
    .visitor-counter {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
    }
    .lang-switch {
        bottom: 15px;
        right: 15px;
        padding: 4px 8px;
    }
    .action-buttons {
        gap: 1rem;
    }
    .category-buttons {
        gap: 0.75rem;
    }
    .category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    .stats-panel {
        right: 15px;
        bottom: 90px;
        min-width: 180px;
    }
    .stats-toggle {
        right: 15px;
        bottom: 90px;
    }
    .social-link {
        padding: 0.6rem 1.2rem;
    }
    .social-name {
        font-size: 0.8rem;
    }
}
/* Добавить в style.css */
.stat-item:last-child {
    border-bottom: none;
}

.stat-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    font-family: 'Inter', monospace;
}

.stat-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Убираем график */
.stat-graph {
    display: none;
}