/* Fire & Forget Landing Page Styles */
:root {
    --primary-orange: #ff6b35;
    --secondary-orange: #f7931e;
    --accent-orange: #ff8c42;
    --gradient-orange: linear-gradient(135deg, #ff6b35, #f7931e, #ff8c42);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 107, 53, 0.3);
    --glass-hover: rgba(255, 255, 255, 0.1);
    --shadow-orange: 0 4px 20px rgba(255, 107, 53, 0.2);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.3);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide scrollbars globally */
html {
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera on all elements */
*::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a1a;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Animated background effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 140, 66, 0.06) 0%, transparent 50%),
        linear-gradient(45deg, rgba(45, 27, 23, 0.8) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(42, 28, 28, 0.8) 100%);
    animation: noiseMovement 15s ease-in-out infinite;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 60% 10%, rgba(255, 107, 53, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 10% 90%, rgba(247, 147, 30, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 60%, rgba(255, 140, 66, 0.03) 0%, transparent 40%);
    animation: noiseMovement2 10s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes noiseMovement {
    0%, 100% {
        filter: hue-rotate(0deg) brightness(1);
    }
    25% {
        filter: hue-rotate(10deg) brightness(1.1);
    }
    50% {
        filter: hue-rotate(25deg) brightness(0.9);
    }
    75% {
        filter: hue-rotate(15deg) brightness(1.05);
    }
}

@keyframes noiseMovement2 {
    0%, 100% {
        filter: hue-rotate(0deg) brightness(1) saturate(1);
    }
    33% {
        filter: hue-rotate(-8deg) brightness(1.15) saturate(1.2);
    }
    66% {
        filter: hue-rotate(18deg) brightness(0.85) saturate(0.8);
    }
}

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

/* Header Styles */
.header {
    padding: 60px 0 40px;
    text-align: center;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.fire-icon-container {
    position: relative;
    animation: fireGlow 3s ease-in-out infinite;
}

.fire-icon {
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
    transition: var(--transition);
}

@keyframes fireGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8));
    }
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
    margin: 0;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.hero {
    text-align: center;
    margin-bottom: 80px;
}

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

/* Стили для выделения ключевых элементов в описании */
.highlight-brand {
    color: var(--primary-orange);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.highlight-action {
    color: var(--secondary-orange);
    font-weight: 600;
    background: linear-gradient(45deg, rgba(247, 147, 30, 0.2), rgba(255, 107, 53, 0.1));
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(247, 147, 30, 0.3);
}

.highlight-emphasis {
    color: var(--accent-orange);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--accent-orange);
    text-underline-offset: 3px;
}

.highlight-burn {
    color: #ff4444;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.4);
    animation: burnGlow 2s ease-in-out infinite alternate;
}

@keyframes burnGlow {
    0% { text-shadow: 0 0 8px rgba(255, 68, 68, 0.4); }
    100% { text-shadow: 0 0 12px rgba(255, 68, 68, 0.6); }
}

.highlight-data {
    color: #66d9ff;
    font-weight: 500;
    background: linear-gradient(90deg, rgba(102, 217, 255, 0.1), rgba(102, 217, 255, 0.05));
    padding: 1px 4px;
    border-radius: 3px;
}

.highlight-forget {
    color: #cc99ff;
    font-weight: 600;
    font-style: italic;
}

.highlight-options {
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 2px 6px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.highlight-fresh {
    color: #66ff99;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(102, 255, 153, 0.3);
}

.highlight-use {
    color: var(--text-secondary);
    font-weight: 500;
    background: linear-gradient(90deg, rgba(204, 204, 204, 0.1), transparent);
    padding: 1px 3px;
    border-radius: 3px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gradient-orange);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-orange);
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    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;
}

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

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

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

.btn-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.download-btn:hover .btn-icon {
    transform: translate(2px, -2px);
}

/* Privacy Section */
.privacy-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-dark);
    margin-bottom: 60px;
    position: relative;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 30px;
    text-align: center;
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.privacy-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.7;
}

.brand-name {
    color: var(--primary-orange);
    font-weight: 700;
}

.privacy-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.privacy-item h3 {
    color: var(--secondary-orange);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.privacy-item ul {
    list-style: none;
    padding: 0;
}

.privacy-item li {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.privacy-item li::before {
    content: '•';
    color: var(--accent-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Privacy Modal Styles */
.privacy-expand-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.privacy-expand-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
}

.privacy-expand-btn svg {
    transition: var(--transition);
}

.privacy-expand-btn:hover svg {
    transform: scale(1.1);
}

.privacy-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-modal-overlay::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 140, 66, 0.06) 0%, transparent 50%),
        linear-gradient(45deg, rgba(45, 27, 23, 0.8) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(42, 28, 28, 0.8) 100%);
    animation: noiseMovement 15s ease-in-out infinite;
    z-index: -2;
}

.privacy-modal-overlay::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 60% 10%, rgba(255, 107, 53, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 10% 90%, rgba(247, 147, 30, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 60%, rgba(255, 140, 66, 0.03) 0%, transparent 40%);
    animation: noiseMovement2 10s ease-in-out infinite reverse;
    z-index: -1;
}

.privacy-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.privacy-modal-overlay.animate-in .privacy-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.privacy-modal-overlay.animate-out .privacy-modal-content {
    transform: scale(0.95) translateY(20px);
    opacity: 0;
}

.privacy-modal-content {
    width: 100%;
    height: 100%;
    position: relative;
    transform: scale(0.9) translateY(50px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.privacy-modal-container {
    background: rgba(26, 26, 26, 0.95); /* Убрал стеклянный фон, сделал темный непрозрачный */
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    backdrop-filter: none; /* Убрал размытие */
    box-shadow: var(--shadow-dark);
    width: 100%;
    max-width: 700px; /* Сделал уже с 900px до 700px */
    max-height: 90vh;
    position: relative;
    overflow: hidden;
}

.privacy-modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.privacy-modal-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin: 0;
    text-align: center;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.privacy-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.privacy-modal-close:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
}

.privacy-modal-close svg {
    transition: var(--transition);
}

.privacy-modal-close:hover svg {
    transform: scale(1.1);
}

.privacy-modal-body {
    padding: 40px;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

/* Стили для модального окна - контент */
.privacy-modal-text {
    display: flex;
    flex-direction: column;
    gap: 24px; /* Увеличил отступы между блоками с 16px до 24px */
}

.privacy-modal-text .privacy-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 16px; /* Добавил отступ снизу для intro */
}

.privacy-modal-text .privacy-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    margin-bottom: 0; /* Убрал margin-bottom, так как используется gap */
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0 60px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

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

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

.footer-link:hover {
    color: var(--primary-orange);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-orange);
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Убираем оранжевую точку на конце */
/* .scroll-progress-bar::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -1px;
    width: 6px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.8);
} */

/* Modal Scroll Progress */
.modal-scroll-progress {
    position: fixed; /* Изменил с absolute на fixed */
    bottom: 0; /* Размещаю внизу экрана */
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1002; /* Высокий z-index чтобы был поверх модала */
    backdrop-filter: blur(10px);
}

.modal-scroll-progress-bar {
    height: 100%;
    background: var(--gradient-orange);
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.modal-scroll-progress-bar::after {
    background: var(--primary-orange);
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .title {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .privacy-section {
        padding: 24px;
    }

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

    .download-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .privacy-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .privacy-modal-body {
        padding: 50px 24px 24px;
    }

    .privacy-modal-title {
        font-size: 2.2rem;
    }

    .privacy-modal-text .privacy-intro {
        font-size: 1.1rem;
    }

    .privacy-modal-text .privacy-item {
        padding: 20px;
    }

    .privacy-modal-text .privacy-item h3 {
        font-size: 1.2rem;
    }

    .privacy-modal-text .privacy-item li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 40px 0 30px;
    }

    .title {
        font-size: 2rem;
    }

    .fire-icon {
        width: 48px;
        height: 48px;
    }

    .description {
        font-size: 1rem;
    }

    .privacy-section {
        padding: 20px;
    }

    .privacy-item {
        padding: 20px;
    }

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

    .privacy-expand-btn {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }

    .privacy-modal-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .privacy-modal-body {
        padding: 45px 20px 20px;
    }

    .privacy-modal-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}
