/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --bg-panel: #111111;
    --accent-green: #00ff41;
    --accent-red: #ff0040;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #1a1a1a;
    --glow-green: rgba(0, 255, 65, 0.3);
    --glow-red: rgba(255, 0, 64, 0.3);
}

body {
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    background-color: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-top: 80px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px var(--glow-green);
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

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

.nav-link:hover {
    color: var(--accent-green);
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--accent-green);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    box-shadow: 0 0 5px var(--glow-green);
}

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

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 65, 0.03) 2px,
            rgba(0, 255, 65, 0.03) 4px
        );
    pointer-events: none;
    z-index: 0;
}

/* Blur Elements with Glow */
.blur-element {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.blur-element-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.6) 0%, rgba(0, 255, 65, 0) 70%);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.blur-element-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.5) 0%, rgba(0, 255, 65, 0) 70%);
    top: 50%;
    right: -15%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.blur-element-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 0, 64, 0.4) 0%, rgba(255, 0, 64, 0) 70%);
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 22s;
}

.blur-element-4 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.35) 0%, rgba(0, 255, 65, 0) 70%);
    top: 70%;
    right: 10%;
    animation-delay: -15s;
    animation-duration: 28s;
}

.blur-element-5 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.45) 0%, rgba(0, 255, 65, 0) 70%);
    top: 30%;
    left: 50%;
    animation-delay: -8s;
    animation-duration: 24s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Первый экран */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.chart-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 0;
}

.chart-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.1;
}

.chart-timeframes {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 15px;
    z-index: 1;
    opacity: 0.3;
}

.chart-timeframe {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--glow-green);
    animation: pulse 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Кнопки CTA */
.cta-button {
    display: inline-block;
    position: relative;
    padding: 18px 40px;
    background: transparent;
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    font-family: inherit;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 65, 0.15);
    transition: left 0.3s ease, background 0.3s ease;
    z-index: -1;
    animation: buttonCallToAction 3s ease-in-out infinite;
}

.cta-button:hover {
    color: #000000 !important;
    box-shadow: 0 0 30px var(--glow-green);
    transform: translateY(-2px);
}

.cta-button:hover .button-text {
    color: #000000 !important;
}

.cta-button:hover::before {
    left: 0;
    background: var(--accent-green);
    animation: none;
}

.cta-button.primary {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.cta-button.secondary {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-scan {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 255, 65, 0.4),
        transparent
    );
    transition: left 0.6s ease;
}

.cta-button:hover .button-scan {
    left: 100%;
}

/* Уведомления */
.notifications-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 350px;
}

.notification {
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-green);
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: slideInLeft 0.5s ease-out;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.notification.up {
    border-left-color: var(--accent-green);
}

.notification.down {
    border-left-color: var(--accent-red);
}

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

.notification-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notification-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    font-family: inherit;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: var(--accent-red);
}

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

.notification-pair {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notification-price {
    font-size: 1rem;
    font-weight: 600;
}

.notification.up .notification-price {
    color: var(--accent-green);
}

.notification.down .notification-price {
    color: var(--accent-red);
}

.notification-button {
    margin-top: 5px;
    padding: 8px 15px;
    background: transparent;
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.notification-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 65, 0.15);
    transition: left 0.3s ease;
    z-index: -1;
    animation: buttonCallToAction 3s ease-in-out infinite;
}

.notification-button:hover {
    color: var(--bg-darker);
}

.notification-button:hover::before {
    background: var(--accent-green);
    left: 0;
    animation: none;
}

/* Информационный блок */
.info-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--glow-green);
}

.info-panel {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    padding: 40px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--glow-green);
}

.info-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-primary);
    font-size: 1rem;
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.info-item:nth-child(1) { animation-delay: 0.1s; }
.info-item:nth-child(2) { animation-delay: 0.2s; }
.info-item:nth-child(3) { animation-delay: 0.3s; }

.info-icon {
    color: var(--accent-green);
    font-size: 1.2rem;
    font-weight: bold;
}

/* Как работает */
.how-it-works {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
}

.step {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 700px;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    padding: 30px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-green);
    min-width: 60px;
    text-align: center;
    border: 2px solid var(--accent-green);
    padding: 10px;
    box-shadow: 0 0 15px var(--glow-green);
}

.step-content {
    flex: 1;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.step-connector {
    width: 2px;
    height: 40px;
    background: var(--accent-green);
    opacity: 0.5;
    box-shadow: 0 0 10px var(--glow-green);
}

/* Преимущества */
.advantages {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.advantage-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.advantage-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: cardAppear 0.6s ease-out;
}

.advantage-card:hover {
    border-color: var(--accent-green);
    box-shadow: 0 0 20px var(--glow-green);
    transform: translateY(-5px);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.advantage-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Промежуточный CTA */
.cta-intermediate {
    padding: 80px 0;
    background: var(--bg-panel);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-intermediate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 255, 65, 0.05),
        transparent
    );
    animation: pulse 4s ease-in-out infinite;
}

.cta-text {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* FAQ */
.faq {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 65, 0.05);
}

.faq-question.active {
    color: var(--accent-green);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-green);
    transition: transform 0.3s ease;
    font-weight: bold;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Финальный CTA */
.final-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--bg-panel);
}

.final-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Дисклеймер */
.disclaimer {
    padding: 40px 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    background: var(--bg-panel);
    border-top: 1px solid var(--border-color);
    padding: 50px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

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

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

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

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-legal-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-contact {
    display: flex;
    align-items: center;
}

.footer-email {
    color: var(--accent-green);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-email:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--glow-green);
}

.email-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: all 0.3s ease;
}

.footer-email:hover .email-icon {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 5px var(--glow-green));
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

/* Privacy Policy Page */
.privacy-section {
    padding: 120px 0 80px;
    min-height: calc(100vh - 80px);
    position: relative;
    z-index: 1;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    padding: 50px 40px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.privacy-title {
    font-size: 2.5rem;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.privacy-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--glow-green);
}

.privacy-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
}

.privacy-article {
    margin-bottom: 40px;
}

.privacy-article:last-child {
    margin-bottom: 0;
}

.privacy-heading {
    font-size: 1.5rem;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    margin-top: 30px;
    position: relative;
    padding-left: 15px;
}

.privacy-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--glow-green);
}

.privacy-subheading {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.privacy-article p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.privacy-list li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
}

.privacy-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.privacy-link {
    color: var(--accent-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--glow-green);
}

.privacy-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 20px;
    text-align: right;
}

/* Legal Information Styles */
.legal-info-block {
    margin-top: 20px;
}

.legal-details {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legal-detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    background: rgba(0, 255, 65, 0.03);
    border-left: 3px solid var(--accent-green);
    transition: all 0.3s ease;
}

.legal-detail-item:hover {
    background: rgba(0, 255, 65, 0.05);
    border-left-color: var(--accent-green);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.1);
}

.legal-label {
    color: var(--accent-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.legal-value {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    word-break: break-word;
}

.legal-contact {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 255, 65, 0.03);
    border-left: 3px solid var(--accent-green);
}

.legal-contact p {
    margin-bottom: 10px;
}

.legal-contact p:last-child {
    margin-bottom: 0;
}

.legal-contact strong {
    color: var(--accent-green);
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 30px 20px;
    }

    .privacy-title {
        font-size: 1.8rem;
    }

    .privacy-heading {
        font-size: 1.2rem;
    }

    .privacy-subheading {
        font-size: 1rem;
    }

    .legal-detail-item {
        padding: 12px;
    }

    .legal-label {
        font-size: 0.85rem;
    }

    .legal-value {
        font-size: 0.95rem;
    }
}

/* Exit Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.exit-popup.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: var(--bg-panel);
    border: 2px solid var(--accent-green);
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 0 50px var(--glow-green);
    animation: slideInDown 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.popup-title {
    font-size: 1.5rem;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: var(--bg-panel);
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--glow-green);
    z-index: 10;
}

.popup-close:hover {
    color: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.5);
    transform: rotate(90deg);
}

.popup-text {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.6;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

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

@keyframes flicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

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

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

@keyframes buttonCallToAction {
    0%, 100% {
        left: -100%;
    }
    10% {
        left: -85%;
    }
    20% {
        left: -100%;
    }
    30% {
        left: -88%;
    }
    40% {
        left: -100%;
    }
    50% {
        left: -90%;
    }
    60% {
        left: -100%;
    }
    70% {
        left: -87%;
    }
    80% {
        left: -100%;
    }
    90% {
        left: -92%;
    }
    100% {
        left: -100%;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .site-header {
        display: block;
        padding: 10px 0;
    }

    .header-container {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid var(--border-color);
        overflow-y: auto;
        z-index: 999;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 20px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        color: var(--accent-green);
        background: rgba(0, 255, 65, 0.05);
    }

    .footer-nav {
        gap: 20px;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 15px;
    }
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .notifications-container {
        bottom: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }

    .notification {
        padding: 12px 15px;
    }

    .notification-pair {
        font-size: 1rem;
    }

    .notification-price {
        font-size: 0.9rem;
    }

    .info-panel {
        padding: 25px;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

    .cta-button {
        padding: 15px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .info-panel,
    .advantage-card {
        padding: 20px;
    }
}

