/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.2);
}

body[data-theme="blue"] .btn-primary {
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.35);
}

body[data-theme="blue"] .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(56, 189, 248, 0.35);
}

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent));
    background-size: 200% 200%;
    animation: glowShift 3s ease-in-out infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

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

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

.btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: 14px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 8px;
}

.btn-full {
    width: 100%;
}

/* ===== GLASS CARDS ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.glass-card-light {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.glass-card-light:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.06);
    filter: saturate(0.9) contrast(1.05) brightness(0.55);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.12), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(217, 70, 239, 0.10), transparent 60%),
        linear-gradient(180deg, rgba(7, 7, 10, 0.55), rgba(7, 7, 10, 0.92));
}

body[data-theme="blue"] .hero-bg::after {
    background:
        radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.10), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(129, 140, 248, 0.08), transparent 60%),
        linear-gradient(180deg, rgba(7, 7, 10, 0.55), rgba(7, 7, 10, 0.92));
}

.hero-bg-empty {
    background-image:
        radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.10), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(217, 70, 239, 0.08), transparent 60%),
        linear-gradient(180deg, rgba(7, 7, 10, 0.55), rgba(7, 7, 10, 0.92));
    transform: none;
    filter: none;
}

.hero-hud {
    position: absolute;
    left: 50%;
    top: 54%;
    transform: translate(-50%, -50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.28;
    filter: blur(0.2px);
}

.hero-hud img {
    width: 100%;
    height: auto;
    border-radius: 26px;
}

.hero-glow-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-card {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 48px;
}

.hero-card {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 100px;
    color: var(--accent_text);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

body[data-theme="blue"] .hero-badge {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== BENEFITS ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    text-align: center;
    padding: 32px 20px;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 16px;
    color: var(--accent_text);
}

body[data-theme="blue"] .benefit-icon {
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.15);
}

.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

/* ===== BEFORE/AFTER SLIDER ===== */
.preview-slider-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 16px;
}

/* ===== VIDEO EMBED ===== */
.video-embed {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(10, 15, 30, 0.25);
    position: relative;
    aspect-ratio: 16 / 9;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-embed-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder-content {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    padding: 28px 22px;
    text-align: center;
}

.reviews-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-card {
    padding: 18px;
}

.review-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.review-name {
    font-weight: 800;
    color: #fff;
}

.review-rating {
    color: rgba(255, 205, 71, 0.95);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.review-text {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin-bottom: 10px;
    white-space: pre-wrap;
}

.review-date {
    color: rgba(255, 255, 255, 0.32);
    font-size: 0.85rem;
}

.reviews-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reviews-form-row {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 16px;
}

.reviews-select {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
}

.reviews-textarea {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    resize: vertical;
}

.ba-slider-wrap {
    padding: 16px;
    margin-bottom: 40px;
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-real {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    transform: translateZ(0);
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.ba-real.loaded {
    opacity: 1;
}

.ba-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-after {
    z-index: 1;
}

.ba-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-placeholder-before {
    background: linear-gradient(135deg, #1a3a2a, #0d1f15, #1a2a1a);
}

.ba-placeholder-after {
    background: linear-gradient(135deg, #0f172a, #1e1b4b, #0c1220);
}

.ba-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.ba-placeholder span {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.ba-label {
    position: absolute;
    top: 16px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 5;
    pointer-events: none;
}

.ba-label-before {
    left: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.7);
}

.ba-label-after {
    right: 16px;
    background: rgba(168, 85, 247, 0.2);
    backdrop-filter: blur(8px);
    color: var(--accent_text);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

body[data-theme="blue"] .ba-label-after {
    background: rgba(56, 189, 248, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.ba-handle-line {
    flex: 1;
    width: 2px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
}

body[data-theme="blue"] .ba-handle-line {
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

.ba-handle-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    color: #0f172a;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ba-handle-circle:hover,
.ba-handle.dragging .ba-handle-circle {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.6), 0 2px 12px rgba(0, 0, 0, 0.4);
}

body[data-theme="blue"] .ba-handle-circle:hover,
body[data-theme="blue"] .ba-handle.dragging .ba-handle-circle {
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.6), 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* ===== FEATURES PAGE ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(10, 10, 14, 0.42);
    border: 1px solid rgba(168, 85, 247, 0.16);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.12), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.45);
    box-shadow: 0 10px 40px -10px rgba(168, 85, 247, 0.22);
}

body[data-theme="blue"] .feature-card {
    border-color: rgba(56, 189, 248, 0.15);
}

body[data-theme="blue"] .feature-card::before {
    background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.1), transparent 70%);
}

body[data-theme="blue"] .feature-card:hover {
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 10px 40px -10px rgba(56, 189, 248, 0.2);
}

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

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 0 20px;
    position: relative;
}

/* Line connecting icons */
.feature-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.32), transparent);
    z-index: 0;
}

.icon-main {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 1;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.32);
    position: relative;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-main {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.55);
}

body[data-theme="blue"] .feature-card:hover .icon-main {
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.5);
}

.icon-side {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 1;
    opacity: 0.8;
    position: relative;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-side {
    transform: scale(1.1);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.feature-number {
    font-family: 'Inter', monospace;
    font-weight: 700;
    color: var(--accent_text);
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.feature-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
}

/* ===== GALLERY ===== */
.gallery-scenes {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.scene-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    padding: 14px;
}

.gallery-photo {
    width: 100%;
    height: 260px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: translateZ(0);
    image-rendering: auto;
}

.gallery-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.12), transparent 45%),
                radial-gradient(circle at 80% 70%, rgba(217, 70, 239, 0.10), transparent 55%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.35));
    pointer-events: none;
}

body[data-theme="blue"] .gallery-photo::after {
    background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.12), transparent 45%),
                radial-gradient(circle at 80% 70%, rgba(56, 189, 248, 0.10), transparent 55%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.35));
}

.gallery-photo-1 { background-image: linear-gradient(135deg, #0b1220, #102a43); }
.gallery-photo-2 { background-image: linear-gradient(135deg, #0a1b2e, #1e1b4b); }
.gallery-photo-3 { background-image: linear-gradient(135deg, #0b1f2a, #0f172a); }
.gallery-photo-4 { background-image: linear-gradient(135deg, #141024, #0b1220); }
.gallery-photo-5 { background-image: linear-gradient(135deg, #0b1a16, #0f172a); }
.gallery-photo-6 { background-image: linear-gradient(135deg, #0d1426, #1f1a3a); }

/* ===== DOWNLOAD PAGE ===== */
.download-main {
    max-width: 600px;
    margin: 0 auto;
}

.download-card {
    text-align: center;
    padding: 48px 40px;
}

.download-icon {
    color: var(--accent_text);
    margin-bottom: 24px;
}

.download-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.download-meta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}

.download-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.download-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.download-stat svg {
    color: var(--accent);
}

.download-btn {
    margin-bottom: 16px;
    background: linear-gradient(90deg, var(--accent), var(--accent_dark));
}

.download-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== INSTALL STEPS ===== */
.install-steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.install-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
}

.step-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    color: var(--accent_text);
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
}

body[data-theme="blue"] .step-number {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.step-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent_text);
}

.faq-arrow {
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 0 100px;
}

.cta-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 32px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mia-easter-egg {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 96px;
    opacity: 0.06;
    filter: saturate(0.85);
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateY(0);
}

.mia-easter-egg:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.mia-photo {
    width: 78px;
    height: 78px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.mia-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mia-label {
    position: absolute;
    top: -18px;
    left: 62px;
    color: #ff2b2b;
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    font-family: 'Segoe Script', 'Comic Sans MS', cursive;
    transform: rotate(-10deg);
    text-shadow: 0 2px 12px rgba(255, 43, 43, 0.28);
    pointer-events: none;
}

.mia-arrow {
    position: absolute;
    top: -26px;
    left: 8px;
    width: 110px;
    height: 80px;
    pointer-events: none;
}

.mia-arrow path {
    stroke: #ff2b2b;
    stroke-width: 4.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mia-arrow marker path {
    fill: #ff2b2b;
}

/* ===== ABOUT PAGE ===== */
.about-story {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.author-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.author-card {
    padding: 44px;
}

.author-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    position: relative;
}

.author-top.mia-unlocked .author-avatar img {
    display: none;
}

.author-top.mia-unlocked .author-avatar-fallback {
    display: none;
}

.author-top.mia-unlocked .author-avatar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.author-top.mia-unlocked .author-avatar::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/mia-photo');
    background-size: cover;
    background-position: center;
    border-radius: 18px;
}

.author-top.mia-unlocked [data-mia-author-name] {
    display: none;
}

.author-top.mia-unlocked .author-meta::after {
    content: 'Mia';
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    display: block;
}

.mia-secret-trigger {
    position: absolute;
    right: 2px;
    bottom: -6px;
    width: 12px;
    height: 12px;
    opacity: 0;
    pointer-events: auto;
    touch-action: manipulation;
}

.mia-easter-egg-hidden {
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.mia-easter-egg-hidden:not(.mia-easter-egg-hidden) {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    opacity: 1;
    pointer-events: auto;
    z-index: 9999;
    background: rgba(7, 7, 10, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(12px);
}

.mia-easter-egg-hidden .mia-photo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 8px;
}

.mia-easter-egg-hidden .mia-label {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
}

.mia-easter-egg.mia-easter-egg--author {
    position: absolute;
    top: -10px;
    left: 86px;
    width: 110px;
    height: 90px;
    opacity: 0;
    pointer-events: none;
}

.mia-easter-egg.mia-easter-egg--author .mia-arrow {
    display: none;
}

.mia-easter-egg.mia-easter-egg--author:hover {
    opacity: 0;
    transform: translateY(0);
}

.mia-easter-egg.mia-easter-egg--author.is-unlocked {
    opacity: 1;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), rgba(217, 70, 239, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.06em;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateZ(0);
}

.author-avatar-fallback {
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar.has-photo .author-avatar-fallback {
    display: none;
}

.author-avatar.fallback {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), rgba(217, 70, 239, 0.14));
}

body[data-theme="blue"] .author-avatar.fallback {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(129, 140, 248, 0.14));
}

.section-title-underline {
    position: relative;
    display: inline-block;
}

.section-title-underline::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 72%;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 50%, rgba(168, 85, 247, 0.35), transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(217, 70, 239, 0.25), transparent 60%);
    filter: blur(1px);
    opacity: 0.9;
    pointer-events: none;
}

body[data-theme="blue"] .section-title-underline::after {
    background: radial-gradient(circle at 30% 50%, rgba(56, 189, 248, 0.35), transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(129, 140, 248, 0.25), transparent 60%);
}

.author-meta h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.author-sub {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.5);
}

.author-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.audience-card {
    text-align: center;
    padding: 36px 24px;
}

.audience-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(168, 85, 247, 0.06);
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: 20px;
    color: var(--accent_text);
}

body[data-theme="blue"] .audience-icon {
    background: rgba(56, 189, 248, 0.06);
    border: 1px solid rgba(56, 189, 248, 0.1);
}

.audience-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.audience-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 36px 24px;
}

.team-avatar {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 50%;
    color: var(--accent_text);
}

body[data-theme="blue"] .team-avatar {
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.15);
}

.team-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.85rem;
    color: var(--accent_text);
    margin-bottom: 10px;
}

.team-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

/* ===== ADMIN STYLES ===== */
.admin-login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.admin-login-card {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    padding: 48px 40px;
}

.admin-login-header {
    text-align: center;
    margin-bottom: 32px;
}

.admin-login-header .admin-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.admin-login-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.admin-login-header p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

.admin-error {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    color: #ef4444;
    font-size: 0.88rem;
    margin-bottom: 24px;
}

.admin-success {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 10px;
    color: #22c55e;
    font-size: 0.88rem;
    margin-bottom: 24px;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.form-group input {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus {
    border-color: rgba(168, 85, 247, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

body[data-theme="blue"] .form-group input:focus {
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.admin-login-footer {
    text-align: center;
    margin-top: 24px;
}

.admin-login-footer a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.admin-login-footer a:hover {
    color: var(--accent_text);
}

/* ===== ADMIN DASHBOARD ===== */
.admin-dashboard {
    padding: 120px 0 80px;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.admin-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.admin-header p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.admin-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
}

.admin-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.12);
    border-radius: 16px;
    color: var(--accent_text);
    flex-shrink: 0;
}

.admin-card-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.admin-card-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.admin-section {
    margin-bottom: 24px;
    padding: 32px;
}

.admin-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.admin-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.admin-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
}

.admin-action-btn:hover {
    color: var(--accent_text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .reviews-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-card {
        padding: 40px 24px;
    }

    .hero-hud {
        top: 58%;
        opacity: 0.22;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

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

    .ba-slider {
        height: 300px;
    }

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

    .gallery-photo {
        height: 220px;
    }

    .audience-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .author-card {
        padding: 32px;
    }

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

    .admin-actions-grid {
        grid-template-columns: 1fr;
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .download-card {
        padding: 32px 24px;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .glass-card {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-card {
        padding: 34px 18px;
    }

    .hero-stats {
        gap: 18px;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .benefit-icon {
        width: 52px;
        height: 52px;
    }

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

    .feature-visual {
        flex-wrap: wrap;
        gap: 10px;
    }

    .feature-visual::after {
        display: none;
    }

    .icon-main {
        width: 58px;
        height: 58px;
    }

    .icon-side {
        width: 36px;
        height: 36px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .mia-easter-egg {
        opacity: 0.12;
    }
}

/* ===== ADMIN REVIEWS ===== */
.admin-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-review-item {
    padding: 20px;
    position: relative;
}

.admin-review-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.admin-review-name {
    font-weight: 700;
    color: #fff;
}

.admin-review-date {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.admin-review-rating {
    color: rgba(255, 205, 71, 0.95);
    font-size: 0.9rem;
    letter-spacing: 0.06em;
}

.admin-review-text {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    white-space: pre-wrap;
    margin-bottom: 12px;
}

.admin-review-delete-form {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

.admin-review-delete-form .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ===== ADMIN FOOTER ===== */
.admin-footer {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.admin-footer p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
}

.admin-footer a {
    color: var(--accent_text);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.admin-footer a:hover {
    opacity: 0.8;
}
