/* Reset & BaseStyles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #05070e;
    --bg-secondary: #0a0e19;
    --bg-card: rgba(16, 21, 35, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    
    --accent-primary: #10b981; /* Neon green */
    --accent-glow: rgba(16, 185, 129, 0.4);
    --vip-color: #fbbf24; /* Gold */
    --vip-glow: rgba(251, 191, 36, 0.3);
    
    --blur-xl: blur(24px);
    --blur-md: blur(12px);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Background Effects */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

.glow-primary {
    top: -10%;
    left: 20%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, rgba(5,7,14,0) 70%);
}

.glow-secondary {
    top: 30%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, rgba(5,7,14,0) 70%);
}

/* Glassmorphism Utilities */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-panel {
    background: rgba(10, 14, 25, 0.85);
    backdrop-filter: var(--blur-xl);
    -webkit-backdrop-filter: var(--blur-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(5, 7, 14, 0.8);
    backdrop-filter: var(--blur-md);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-link:hover {
    color: var(--text-primary);
}

.vip-link {
    color: var(--vip-color);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.vip-link:hover {
    background: rgba(251, 191, 36, 0.2);
    box-shadow: 0 0 15px var(--vip-glow);
    color: var(--vip-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 var(--accent-glow); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.stat-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.vip-text {
    color: var(--vip-color);
}

.hero-visual {
    position: relative;
    perspective: 1000px;
}

.hero-card {
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(20,25,40,0.8) 0%, rgba(10,15,25,0.9) 100%);
    border-top: 1px solid rgba(255,255,255,0.2);
    border-left: 1px solid rgba(255,255,255,0.1);
}

.hero-card:hover {
    transform: rotateY(0) rotateX(0);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
}

.match-mini {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.match-mini .league {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.teams-mini {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
}

.prediction-mini {
    background: rgba(255,255,255,0.03);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.confidence-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-glow);
}

.confidence-text {
    font-size: 0.8rem;
    align-self: flex-end;
    color: var(--accent-primary);
}

/* Trust / Social Proof Band */
.trust-band {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    padding: 2.5rem 0;
}

.trust-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex: 1;
    min-width: 150px;
}

.trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.trust-icon.vip {
    background: rgba(251, 191, 36, 0.15);
    color: var(--vip-color);
    border: 1px solid rgba(251, 191, 36, 0.25);
    box-shadow: 0 0 18px rgba(251, 191, 36, 0.1);
}

.trust-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 18px rgba(16, 185, 129, 0.08);
}

.trust-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.08);
}

.trust-numbers {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 0.2rem;
}

.trust-big {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.trust-slash {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.trust-sub {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.trust-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
    white-space: nowrap;
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: var(--border-color);
    flex-shrink: 0;
}

/* Prediction Sections */
.predictions-section {
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-secondary);
}

.tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    vertical-align: middle;
}

.tag-free {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-primary);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.tag-vip {
    background: rgba(251, 191, 36, 0.15);
    color: var(--vip-color);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.vip-header h2 i {
    color: var(--vip-color);
}

.predictions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.loading-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    color: var(--text-secondary);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    border-top-color: var(--accent-primary);
    animation: spin 1s infinite linear;
    margin-bottom: 1rem;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Match Cards */
.match-card {
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-primary);
    opacity: 0;
    transition: var(--transition);
}

/* Ad System & Free Lock Overlay */
.free-container-wrapper {
    position: relative;
    min-height: 400px;
}

.free-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.free-lock-content {
    text-align: center;
    padding: 3rem;
    border-radius: 16px;
    max-width: 450px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: rgba(10, 14, 25, 0.95);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.free-lock-content .lock-icon {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--accent-glow);
}

.free-lock-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.free-lock-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    width: 100%;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

/* Ad Modal */
.ad-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.ad-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.ad-content {
    width: 90%;
    max-width: 600px;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.ad-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255,255,255,0.02);
}

.ad-timer {
    background: rgba(16, 185, 129, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.ad-body {
    padding: 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-placeholder {
    width: 100%;
    height: 250px;
    background: rgba(255,255,255,0.02);
    border: 2px dashed rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border-radius: 8px;
    text-align: center;
}

.ad-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ad-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
}

.btn-disabled {
    background: rgba(255,255,255,0.05);
    color: var(--text-secondary);
    cursor: not-allowed;
}

/* Reset disabled state manually in JS */
.btn-enabled {
    background: var(--accent-primary);
    color: #fff;
    cursor: pointer;
}
.btn-enabled:hover {
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.match-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 0 20px rgba(16, 185, 129, 0.1);
}

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

.match-card.vip-card::before {
    background: var(--vip-color);
}

.match-card.vip-card:hover {
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 0 20px rgba(251, 191, 36, 0.1);
}

.match-card-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.match-league {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 40%;
    text-align: center;
}

.team-logo {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.team-name {
    font-weight: 500;
    font-size: 0.95rem;
}

.vs {
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.05);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.match-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1.5rem 0;
}

.match-prediction {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    background: rgba(255,255,255,0.02);
    padding: 0.8rem;
    border-radius: 8px;
}

.highlight-text {
    color: var(--accent-primary);
    font-weight: 600;
}

.vip-card .highlight-text {
    color: var(--vip-color);
}

.odds-box {
    background: rgba(255,255,255,0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.confidence-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.confidence-percentage {
    color: var(--accent-primary);
    font-weight: 600;
}

.vip-card .confidence-percentage {
    color: var(--vip-color);
}

.confidence-bar-bg {
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    overflow: hidden;
}

.confidence-bar-fill {
    height: 100%;
    background: var(--accent-primary);
    border-radius: 3px;
    width: 0%; /* Set by JS */
    transition: width 1s ease-out;
}

.vip-card .confidence-bar-fill {
    background: var(--vip-color);
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

/* VIP Section specifics */
.vip-container-wrapper {
    position: relative;
}

.is-blurred {
    filter: blur(8px) grayscale(50%);
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
}

.vip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.vip-lock-content {
    text-align: center;
    padding: 3rem;
    border-radius: 16px;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lock-icon {
    font-size: 3rem;
    color: var(--vip-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--vip-glow);
}

.vip-lock-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.vip-lock-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.btn-vip-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    width: 100%;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-vip-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-primary);
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-links h4, .footer-disclaimer h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-disclaimer p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding-top: 6rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
}

/* ===== Google AdSense Banners ===== */
.adsense-banner {
    margin: 0 0 2rem;
    width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
}

.adsense-banner ins.adsbygoogle {
    width: 100%;
}

/* AdSense reklam birimi modal içinde */
.ad-modal-ins {
    width: 100%;
    min-height: 250px;
}

/* ===== VIP Lock Overlay ===== */
.vip-container-wrapper {
    position: relative;
    min-height: 400px;
}

.vip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.vip-lock-content {
    text-align: center;
    padding: 3rem;
    border-radius: 16px;
    max-width: 450px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: rgba(10, 14, 25, 0.95);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.vip-icon {
    font-size: 3rem;
    color: var(--vip-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--vip-glow);
}

.vip-lock-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--vip-color);
}

.vip-lock-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.btn-vip {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: #0a0e19;
    width: 100%;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-vip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(251, 191, 36, 0.6);
}

/* VIP Modal Header altın tema */
.vip-ad-content {
    border-color: rgba(251, 191, 36, 0.3);
}

.vip-ad-header {
    background: rgba(251, 191, 36, 0.05);
    border-color: rgba(251, 191, 36, 0.2);
}

.vip-ad-header h3 {
    color: var(--vip-color);
}

.vip-timer {
    background: rgba(251, 191, 36, 0.15);
    color: var(--vip-color);
}

/* AI Stats Section */
.ai-stats-section {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255,255,255,0.1);
}

.ai-stat {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ai-stat i {
    color: var(--accent-primary);
}

.vip-card .ai-stat i {
    color: var(--vip-color);
}
