/* ===========================
   Hovor.ru - Styles
   =========================== */

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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --bg-dark: #ffffff;
    --bg-card: #f8f9fa;
    --bg-card-hover: #e9ecef;
    --text-primary: #1a1a2e;
    --text-secondary: #495057;
    --text-muted: #6c757d;
    --border: #dee2e6;
    --success: #10b981;
    --error: #ef4444;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
}

[data-theme="dark"] {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --bg-dark: #0f0f23;
    --bg-card: #1a1a2e;
    --bg-card-hover: #252542;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b80;
    --border: #2a2a40;
    --success: #10b981;
    --error: #ef4444;
}

body {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
    transition: background 0.3s ease, color 0.3s ease;
    padding-top: 60px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 40px;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .header {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header .logo,
.header .nav {
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-primary);
    cursor: pointer;
    transition: opacity 0.2s ease;
    letter-spacing: -0.02em;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 24px;
}

.logo-dot {
    color: var(--primary);
}

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

.user-credits {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: var(--bg-card);
    border-radius: 20px;
    font-weight: 400;
}

.credits-icon {
    font-size: 16px;
}

.icon-coin {
    width: 20px;
    height: 20px;
    vertical-align: -4px;
    display: inline-block;
    flex-shrink: 0;
}

.user-email {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .user-email {
        display: none;
    }
}

/* Buttons */
.btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 0 10px;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-title-gradient {
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    margin-bottom: 10px;
    background: linear-gradient(to bottom right, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
    line-height: 130%;
    white-space: pre-wrap;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 0;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Section Titles */
.section-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

/* Services Section */
.services {
    padding: 40px 0;
}

@media (max-width: 768px) {
    .services {
        padding: 30px 0;
    }
}

/* New Cards Grid */
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .card {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    opacity: 0.9;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Card accent colors — Текст */
.card--text::before { background: linear-gradient(90deg, #6366F1, #818CF8); }
.card--text:hover { border-color: rgba(99, 102, 241, 0.3); }
.card--text .card__icon { background: rgba(99, 102, 241, 0.1); color: #6366F1; }
.card--text .card__btn:hover { background: rgba(99, 102, 241, 0.08); border-color: rgba(99, 102, 241, 0.3); }

/* Card accent colors — Фото */
.card--photo::before { background: linear-gradient(90deg, #06B6D4, #22D3EE); }
.card--photo:hover { border-color: rgba(6, 182, 212, 0.3); }
.card--photo .card__icon { background: rgba(6, 182, 212, 0.1); color: #06B6D4; }
.card--photo .card__btn:hover { background: rgba(6, 182, 212, 0.08); border-color: rgba(6, 182, 212, 0.3); }

/* Card accent colors — Музыка */
.card--music::before { background: linear-gradient(90deg, #6366F1, #06B6D4); }
.card--music:hover { border-color: rgba(99, 102, 241, 0.3); }
.card--music .card__icon { background: rgba(99, 102, 241, 0.1); color: #6366F1; }
.card--music .card__btn:hover { background: rgba(99, 102, 241, 0.08); border-color: rgba(99, 102, 241, 0.3); }

/* Card accent colors — Видео */
.card--video::before { background: linear-gradient(90deg, #06B6D4, #6366F1); }
.card--video:hover { border-color: rgba(6, 182, 212, 0.3); }
.card--video .card__icon { background: rgba(6, 182, 212, 0.1); color: #06B6D4; }
.card--video .card__btn:hover { background: rgba(6, 182, 212, 0.08); border-color: rgba(6, 182, 212, 0.3); }

.card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.card__title {
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}

.card__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
    text-decoration: none;
}

a.card__btn:hover {
    text-decoration: none;
}

.card__btn:active {
    transform: scale(0.98);
}

.card__btn-text {
    flex: 1;
}

.card__btn-arrow {
    margin-left: auto;
    opacity: 0.25;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.card__btn:hover .card__btn-arrow {
    opacity: 0.7;
    transform: translateX(3px);
}

/* Coming soon buttons */
.card__btn--soon {
    opacity: 0.55;
    cursor: default;
}

.card__btn--soon:hover {
    background: var(--bg-dark) !important;
    border-color: var(--border) !important;
    transform: none !important;
}

.card__btn-badge {
    margin-left: auto;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-title-gradient {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card {
        padding: 24px 20px;
    }
}

/* Legacy service classes (kept for compatibility) */
.service-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.service-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.service-card.coming-soon {
    opacity: 0.6;
}

.service-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.service-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
}

.service-credits {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-light);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 400;
}

/* Pricing Section */
.pricing {
    padding: 40px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-grid-4 {
    max-width: 1200px;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid-4 {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.pricing-card.popular {
    border-color: #ffd700;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.07);
}

.pricing-card.featured {
    border-color: #ff6b6b;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.pricing-badge.secondary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4444 100%);
    color: white;
}

.pricing-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.pricing-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.pricing-old-price {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 4px;
    position: relative;
    display: inline-block;
}

.pricing-old-price::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 50%;
    height: 3px;
    background: #ef4444;
    transform: rotate(-12deg);
    border-radius: 2px;
}

.pricing-card:nth-child(3) .pricing-old-price::after {
    transform: rotate(-8deg);
}

.pricing-card:nth-child(4) .pricing-old-price::after {
    transform: rotate(-15deg);
}

.pricing-price {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.pricing-price.highlight {
    color: #f59e0b;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.pricing-credits {
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
}

.pricing-discount {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 400;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success);
    margin-right: 10px;
}

.pricing-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.benefit-item {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
}

@media (max-width: 600px) {
    .pricing-benefits {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    border: 1px solid var(--border);
    animation: modalIn 0.3s ease;
}

.modal-large {
    max-width: 600px;
}

.modal-pricing {
    max-width: 960px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
}

/* Pricing Timer */
.pricing-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 12px;
    animation: timerPulse 2s ease-in-out infinite;
}

@keyframes timerPulse {
    0%, 100% { border-color: rgba(239, 68, 68, 0.25); }
    50% { border-color: rgba(239, 68, 68, 0.5); }
}

.pricing-timer-icon {
    font-size: 22px;
    animation: timerFlame 1s ease-in-out infinite alternate;
}

@keyframes timerFlame {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

.pricing-timer-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-timer-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-timer-countdown {
    font-size: 20px;
    font-weight: 700;
    color: #ef4444;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

.pricing-timer.expired .pricing-timer-countdown {
    color: var(--text-muted);
}

.pricing-timer.expired {
    animation: none;
    border-color: var(--border);
    background: var(--bg-card);
}

@media (max-width: 520px) {
    .pricing-timer {
        flex-direction: column;
        gap: 4px;
        padding: 10px 16px;
    }

    .pricing-timer-text {
        flex-direction: column;
        gap: 2px;
    }

    .pricing-timer-label {
        font-size: 12px;
    }

    .pricing-timer-countdown {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .modal-pricing {
        max-width: 100%;
        width: 100%;
        max-height: 100vh;
        border-radius: 12px 12px 0 0;
        padding: 24px 16px;
    }
}

.pricing-grid-modal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

@media (max-width: 960px) {
    .pricing-grid-modal {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .pricing-grid-modal {
        grid-template-columns: 1fr;
    }
}

.pricing-grid-modal .pricing-card {
    padding: 24px 16px;
}

.pricing-grid-modal .pricing-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.pricing-grid-modal .pricing-name {
    font-size: 16px;
    margin-bottom: 8px;
}

.pricing-grid-modal .pricing-price {
    font-size: 28px;
    margin-bottom: 4px;
}

.pricing-grid-modal .pricing-old-price {
    font-size: 22px;
}

.pricing-grid-modal .pricing-features li {
    font-size: 12px;
    padding: 4px 0;
}

.pricing-grid-modal .pricing-benefits {
    margin-top: 20px;
    padding: 16px;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -0.02em;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 400;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-error {
    color: var(--error);
    font-size: 14px;
    text-align: center;
}

.form-error:not(:empty) {
    margin-bottom: 15px;
}

.form-success {
    color: var(--success);
    font-size: 14px;
    text-align: center;
}

.form-success:not(:empty) {
    margin-bottom: 15px;
}

.modal-switch {
    text-align: center;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.modal-switch a {
    color: var(--primary-light);
    text-decoration: none;
}

.modal-switch a:hover {
    text-decoration: underline;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    cursor: pointer;
    line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    flex-shrink: 0;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-checkbox a {
    color: var(--primary-light);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Dashboard */
.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-card {
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.dashboard-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.dashboard-value {
    font-size: 18px;
    font-weight: 500;
}

.dashboard-section-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.token-box {
    display: flex;
    gap: 10px;
    align-items: center;
    background: var(--bg-dark);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 10px;
}

.token-box code {
    flex: 1;
    font-size: 12px;
    color: var(--text-secondary);
    word-break: break-all;
    font-family: monospace;
}

.token-hint {
    font-size: 12px;
    color: var(--text-muted);
}

/* Dashboard Buy Section */
.dashboard-buy-section {
    margin-bottom: 20px;
}

.dashboard-buy-section .btn {
    font-size: 16px;
    padding: 14px 24px;
    gap: 8px;
}

/* Transactions History */
.transactions-section {
    margin-top: 24px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.transactions-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.transactions-list {
    max-height: 300px;
    overflow-y: auto;
}

.transactions-loading,
.transactions-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 20px;
    font-size: 14px;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--bg-dark);
    border-radius: 8px;
    margin-bottom: 8px;
}

.transaction-info {
    flex: 1;
}

.transaction-desc {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.transaction-date {
    font-size: 12px;
    color: var(--text-muted);
}

.transaction-amount {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    margin-left: 12px;
}

.transaction-amount.positive {
    color: var(--success);
}

.transaction-amount.negative {
    color: var(--error);
}

@media (max-width: 768px) {
    .transactions-list {
        max-height: 200px;
    }

    .transaction-item {
        padding: 10px;
    }

    .transaction-desc {
        font-size: 12px;
    }

    .transaction-date {
        font-size: 10px;
    }

    .transaction-amount {
        font-size: 14px;
    }

    .transaction-thumb {
        width: 36px;
        height: 36px;
    }
}

/* Transaction Media */
.transaction-media {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.transaction-thumb {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform 0.15s, border-color 0.15s;
}

.transaction-thumb:hover {
    transform: scale(1.1);
    border-color: var(--primary);
}

.transaction-arrow {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
}

.transaction-audio {
    height: 28px;
    max-width: 200px;
}

.transaction-video {
    max-width: 160px;
    max-height: 90px;
    border-radius: 6px;
    border: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-title-gradient {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .header {
        flex-direction: column;
        gap: 15px;
    }
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s;
}

.theme-toggle:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 40px 0 20px;
    background: linear-gradient(to bottom, var(--bg-card) 0%, var(--bg-dark) 100%);
    border-top: 1px solid var(--border);
    overflow-x: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section-desktop {
    display: none;
}

@media (min-width: 768px) {
    .footer-section-desktop {
        display: flex;
    }
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.footer-subtitle {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.footer-text {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.footer-accreditation {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 15px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .footer-accreditation {
        max-width: 80%;
    }
}

[data-theme="dark"] .footer-accreditation {
    background: rgba(255, 255, 255, 0.03);
}

.accreditation-icon {
    flex-shrink: 0;
}

.accreditation-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.accreditation-text {
    font-size: 10px;
    line-height: 1.3;
    color: var(--text-secondary);
}

.accreditation-text p {
    margin: 0;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-payments img {
    height: 28px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-payments img:hover {
    opacity: 1;
}

.footer-company-mobile {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .footer-company-mobile {
        display: none;
    }
}

.footer-address {
    display: none;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .footer-address {
        display: flex;
    }
}

.footer-company-info {
    font-size: 12px;
    line-height: 1.4;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-company-info > div {
    margin-bottom: 4px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-icon {
    font-size: 14px;
    opacity: 0.7;
    flex-shrink: 0;
}

.footer-link {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid transparent;
}

.footer-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

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

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-link {
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-bottom-link:hover {
    opacity: 0.7;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 16px 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

[data-theme="dark"] .cookie-banner {
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 280px;
}

.cookie-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.cookie-text p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.cookie-link {
    color: var(--primary-light);
    text-decoration: none;
    transition: opacity 0.2s;
}

.cookie-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    white-space: nowrap;
    padding: 10px 24px;
}

@media (max-width: 600px) {
    .cookie-banner {
        padding: 16px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* ===========================
   Email Verification Notice
   =========================== */
.verification-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.verification-notice-content {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

.verification-notice-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.verification-notice-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.verification-notice-content p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.verification-notice-hint {
    font-size: 0.85rem;
    margin-top: 16px !important;
    margin-bottom: 20px !important;
}

.verification-notice-hint a {
    color: var(--accent);
}

.verification-notice-hint a:hover {
    text-decoration: underline;
}

/* Notification Toast */
.notification-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 24px;
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 90%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    animation: toastSlideIn 0.4s ease;
}

.notification-toast button {
    background: none;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0 4px;
    opacity: 0.7;
}

.notification-toast button:hover {
    opacity: 1;
}

.notification-success {
    background: linear-gradient(135deg, #00b894, #00cec9);
}

.notification-error {
    background: linear-gradient(135deg, #e74c3c, #fd79a8);
}

.notification-info {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
