* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #fe2c55;
    --secondary: #25f4ee;
    --bg-dark: #000000;
    --bg-card: #121212;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --gradient-1: linear-gradient(135deg, #fe2c55 0%, #ff6b6b 100%);
    --gradient-2: linear-gradient(135deg, #25f4ee 0%, #00d4ff 100%);
    --gradient-main: linear-gradient(135deg, #fe2c55 0%, #25f4ee 100%);
    --vpn-gradient: linear-gradient(90deg, #00ff88, #00d4ff, #a855f7, #ff00aa, #00ff88);
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: -50px;
    right: -50px;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: var(--secondary);
    bottom: 0;
    left: -30px;
}

/* VPN Banner - Full Width */
.vpn-banner {
    display: block;
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, #0d0d1a, #1a1a2e, #0d0d1a);
    padding: 16px 0;
    overflow: hidden;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 100;
}

.vpn-top {
    border-bottom: 3px solid;
    border-image: var(--vpn-gradient) 1;
    animation: border-glow 3s ease-in-out infinite;
}

.vpn-bottom {
    border-top: 3px solid;
    border-image: var(--vpn-gradient) 1;
    animation: border-glow 3s ease-in-out infinite;
}

@keyframes border-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
}

.vpn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--vpn-gradient);
    background-size: 400% 100%;
    opacity: 0.1;
    animation: vpn-bg-move 4s linear infinite;
}

@keyframes vpn-bg-move {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

.vpn-marquee {
    display: flex;
    width: max-content;
    animation: marquee 15s linear infinite;
}

.marquee-reverse {
    animation: marquee-rev 15s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-rev {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.vpn-text {
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--vpn-gradient);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: vpn-text-shine 3s linear infinite;
    white-space: nowrap;
    padding: 0 8px;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

@keyframes vpn-text-shine {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

.vpn-banner:active {
    transform: scale(0.99);
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Screens */
.screen {
    display: none;
    flex: 1;
    flex-direction: column;
    animation: fadeIn 0.4s ease;
    overflow: hidden;
}

.screen.active {
    display: flex;
}

.screen-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Site Watermark */
.site-watermark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(254, 44, 85, 0.1);
    border-top: 1px solid rgba(254, 44, 85, 0.2);
}

.watermark-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.watermark-text {
    font-size: 16px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

/* Main Screen */
.logo {
    text-align: center;
    margin-bottom: 4px;
}

.logo-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 4px;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.logo h1 {
    font-size: 34px;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

/* Input Section */
.input-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
    width: 100%;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    font-size: 16px;
}

#tiktok-link {
    width: 100%;
    padding: 14px 14px 14px 42px;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s ease;
}

#tiktok-link:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(254, 44, 85, 0.3);
}

#tiktok-link::placeholder {
    color: var(--text-secondary);
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--gradient-1);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 44, 85, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 18px;
}

.hint {
    text-align: center;
    color: var(--text-secondary);
    font-size: 12px;
}

/* Loading Screen */
#loading-screen .screen-content {
    justify-content: center;
}

.loader-container {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 14px;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.loader-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-ring-inner {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--secondary);
    animation: spin 1s linear infinite reverse;
}

.loader-avatar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    overflow: hidden;
}

.loader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loading-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.loading-username {
    color: var(--secondary);
    font-size: 15px;
    margin-bottom: 20px;
}

/* Analysis Steps */
.analysis-steps {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    max-width: 280px;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--bg-card);
    border-radius: 10px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
    background: rgba(254, 44, 85, 0.15);
    border: 1px solid rgba(254, 44, 85, 0.3);
}

.step.completed { opacity: 1; }

.step-icon { font-size: 14px; }
.step-text { flex: 1; font-size: 12px; }
.step-status { font-size: 12px; }

.step.completed .step-status::after {
    content: '✓';
    color: #22c55e;
}

.step.active .step-status::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Result Screen */
#result-screen .screen-content {
    justify-content: flex-start;
    padding-top: 10px;
}

.result-header {
    text-align: center;
    margin-bottom: 10px;
}

.result-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 6px;
    box-shadow: 0 6px 25px rgba(254, 44, 85, 0.3);
    overflow: hidden;
}

.result-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-username {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Price Container */
.price-container {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 14px 20px;
    margin-bottom: 8px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.price-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    transition: background 0.5s ease;
}

.price-label {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
    text-align: center;
}

.price-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 22px;
    font-weight: 700;
    transition: color 0.5s ease;
}

.amount {
    font-size: 36px;
    font-weight: 900;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background 0.5s ease;
}

.price-rank {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Price Levels */
/* Новичок - до 10к - серый/белый */
.price-level-1 .currency { color: #9ca3af; }
.price-level-1 .amount {
    background: linear-gradient(135deg, #9ca3af, #d1d5db);
    -webkit-background-clip: text;
    background-clip: text;
}
.price-level-1 .price-rank { color: #9ca3af; }
.price-level-1::before { background: linear-gradient(90deg, #9ca3af, #d1d5db); }

/* Блогер - до 100к - зелёный */
.price-level-2 .currency { color: #22c55e; }
.price-level-2 .amount {
    background: linear-gradient(135deg, #22c55e, #4ade80);
    -webkit-background-clip: text;
    background-clip: text;
}
.price-level-2 .price-rank { color: #22c55e; }
.price-level-2::before { background: linear-gradient(90deg, #22c55e, #4ade80); }

/* Звезда - до 1 млн - голубой */
.price-level-3 .currency { color: #06b6d4; }
.price-level-3 .amount {
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
}
.price-level-3 .price-rank { color: #06b6d4; }
.price-level-3::before { background: linear-gradient(90deg, #06b6d4, #22d3ee); }

/* Топ - до 5 млн - фиолетовый */
.price-level-4 .currency { color: #a855f7; }
.price-level-4 .amount {
    background: linear-gradient(135deg, #a855f7, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
}
.price-level-4 .price-rank { color: #a855f7; }
.price-level-4::before { background: linear-gradient(90deg, #a855f7, #c084fc); }

/* Легенда - до 15 млн - розово-оранжевый */
.price-level-5 .currency { color: #f97316; }
.price-level-5 .amount {
    background: linear-gradient(135deg, #f97316, #fb923c, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
}
.price-level-5 .price-rank { color: #f97316; }
.price-level-5::before { background: linear-gradient(90deg, #f97316, #ec4899); }

/* Бог - больше 15 млн - золотой с искрами */
.price-level-6 .currency { color: #fbbf24; }
.price-level-6 .amount {
    background: linear-gradient(135deg, #fbbf24, #fcd34d, #fef3c7, #fcd34d, #fbbf24);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gold-shine 2s ease infinite;
}
.price-level-6 .price-rank { color: #fbbf24; }
.price-level-6::before {
    background: linear-gradient(90deg, #fbbf24, #fcd34d, #fbbf24);
    background-size: 200% 100%;
    animation: gold-bar 2s ease infinite;
}

@keyframes gold-shine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes gold-bar {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 200% 50%; }
}

/* Rating Section */
.rating-section {
    width: 100%;
    margin-bottom: 8px;
}

.rating-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.rating-fill {
    height: 100%;
    border-radius: 3px;
    width: 0%;
    background: var(--gradient-main);
}

.rating-labels {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 10px;
    width: 100%;
}

.stat-card {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 10px 6px;
    text-align: center;
}

.stat-card-icon {
    font-size: 16px;
    display: block;
    margin-bottom: 2px;
}

.stat-card-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 1px;
}

.stat-card-label {
    font-size: 9px;
    color: var(--text-secondary);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 8px;
    width: 100%;
}

.btn-share, .btn-retry {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-share {
    background: var(--gradient-1);
    color: white;
    flex: 2;
}

.btn-share:hover {
    box-shadow: 0 8px 25px rgba(254, 44, 85, 0.4);
}

.btn-retry {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-retry:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* VPN Button */
.btn-vpn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #1a0a2e, #2d1b4e, #1a0a2e);
    border: 2px solid transparent;
}

.btn-vpn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7, #d946ef, #a855f7, #8b5cf6);
    background-size: 300% 100%;
    border-radius: 14px;
    z-index: -1;
    animation: purple-glow 2s linear infinite;
}

.btn-vpn-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #8b5cf6, #a855f7, #d946ef);
    background-size: 300% 100%;
    opacity: 0.2;
    animation: purple-glow 2s linear infinite;
}

.btn-vpn-text {
    position: relative;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #c4b5fd, #e9d5ff, #f5d0fe, #e9d5ff, #c4b5fd);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: purple-glow 2s linear infinite;
}

@keyframes purple-glow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.btn-vpn:active {
    transform: scale(0.98);
}

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s ease;
}

/* Action Buttons Row */
.action-buttons-row {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-bottom: 10px;
}

.btn-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 8px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ec4899, #f97316);
    position: relative;
    overflow: hidden;
}

.btn-action::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-action:hover::before {
    opacity: 1;
}

.btn-action-icon {
    font-size: 20px;
    line-height: 1;
}

.btn-action-text {
    font-size: 10px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-action-stats {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.btn-action-retry {
    background: linear-gradient(135deg, #374151, #4b5563);
}

.btn-action:active {
    transform: scale(0.95);
}

/* Stats Button Main */
.btn-stats-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 16px;
    padding: 12px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-stats-main:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

/* Stats Screen */
.stats-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding-top: 10px !important;
    overflow: hidden !important;
}

.stats-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.stats-header h2 {
    font-size: 18px;
    font-weight: 700;
}

.btn-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* Site Stats */
.site-stats {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.site-stat {
    flex: 1;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.site-stat-value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
}

.site-stat-label {
    font-size: 10px;
    color: var(--text-secondary);
}

/* Top Title */
.top-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
    width: 100%;
    flex-shrink: 0;
}

/* Top List */
.top-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    overflow-y: auto;
    margin-bottom: 12px;
    min-height: 0;
}

.top-empty {
    text-align: center;
    color: var(--text-secondary);
    font-size: 12px;
    padding: 20px;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border-radius: 10px;
    padding: 10px 12px;
}

.top-rank {
    font-size: 14px;
    font-weight: 800;
    width: 24px;
    text-align: center;
}

.top-rank.gold { color: #fbbf24; }
.top-rank.silver { color: #9ca3af; }
.top-rank.bronze { color: #f97316; }

.top-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    overflow: hidden;
}

.top-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-info {
    flex: 1;
    min-width: 0;
}

.top-username {
    display: block;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-followers {
    display: block;
    font-size: 10px;
    color: var(--text-secondary);
}

.top-item {
    cursor: pointer;
    transition: all 0.2s ease;
}

.top-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.top-item:active {
    transform: scale(0.98);
}

.top-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

/* Load More Button */
.btn-load-more {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    background: linear-gradient(135deg, #374151, #4b5563);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-load-more:hover {
    background: linear-gradient(135deg, #4b5563, #6b7280);
}

.btn-load-more:active {
    transform: scale(0.98);
}

.btn-load-more:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* SEO Text */
.seo-text {
    width: 100%;
    padding: 12px;
    background: var(--bg-card);
    border-radius: 10px;
    margin-top: 12px;
    flex-shrink: 0;
}

.seo-text h4 {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.seo-text p {
    font-size: 9px;
    color: var(--text-secondary);
    line-height: 1.4;
    opacity: 0.7;
}

/* Mobile height fix */
@supports (-webkit-touch-callout: none) {
    body {
        height: -webkit-fill-available;
    }
}

/* Subscribe Popup */
.subscribe-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.subscribe-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.subscribe-modal {
    position: relative;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px 24px;
    max-width: 340px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: popupIn 0.3s ease;
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.subscribe-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.subscribe-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subscribe-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.subscribe-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.subscribe-btn-channel {
    background: linear-gradient(135deg, #0088cc, #00aaff);
    margin-bottom: 10px;
}

.subscribe-btn-channel:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
}

.subscribe-btn-check {
    background: linear-gradient(135deg, #374151, #4b5563);
}

.subscribe-btn-check:hover {
    background: linear-gradient(135deg, #4b5563, #6b7280);
}

.subscribe-btn:active {
    transform: scale(0.98);
}

.subscribe-error {
    margin-top: 12px;
    font-size: 13px;
    color: #ef4444;
    min-height: 20px;
}
