/* 
Theme Name: PremiumtvLive
Theme URI: https://premiumtvlive.com
Author: Web Developer
Description: Premium IPTV WordPress Theme for PremiumtvLive.com
Version: 1.0
Text Domain: premiumtvlive
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #120a24;
    --bg-card: #1d103b;
    --bg-card-alt: #26164d;
    --bg-elevated: #2f1c5e;
    --purple-primary: #7c3aed;
    --purple-light: #a78bfa;
    --purple-bright: #9333ea;
    --purple-muted: #6d28d9;
    --purple-subtle: rgba(124, 58, 237, 0.08);
    --green-check: #34d399;
    --text-white: #f1f0f5;
    --text-secondary: #c4c0d4;
    --text-muted: #8a86a0;
    --border-color: rgba(139, 92, 246, 0.12);
    --border-hover: rgba(139, 92, 246, 0.35);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --orange-accent: #f59e0b;
    --pink-accent: #ec4899;
    --blue-accent: #3b82f6;
    --teal-accent: #14b8a6;
    --glow-purple: 0 0 20px rgba(124, 58, 237, 0.15);
    --glow-purple-strong: 0 0 40px rgba(124, 58, 237, 0.2);
    --card-shadow: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
    --card-shadow-hover: 0 10px 40px rgba(0,0,0,0.4), var(--glow-purple);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--purple-muted); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-light); }

/* ===== NAVBAR ===== */
.navbar-custom {
    background: rgba(7, 6, 15, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 8px 0;
    z-index: 1000;
}

.navbar-brand-logo {
    display: flex; align-items: center; gap: 10px; text-decoration: none;
}

.navbar-brand-logo .play-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-bright));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #fff;
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.3);
}

.navbar-brand-logo .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.navbar-brand-logo .brand-name { font-size: 19px; font-weight: 800; color: #fff; letter-spacing: -0.3px; }
.navbar-brand-logo .brand-name span { color: var(--purple-light); }
.navbar-brand-logo .brand-sub { font-size: 10px; color: var(--text-muted); font-weight: 400; letter-spacing: 0.5px; }

.navbar-custom .nav-link {
    color: var(--text-muted) !important;
    font-size: 13px; font-weight: 500;
    padding: 8px 14px !important;
    transition: color 0.2s;
    letter-spacing: 0.1px;
}

.navbar-custom .nav-link:hover { color: var(--text-secondary) !important; }
.navbar-custom .nav-link.active,
.navbar-custom .current-menu-item > a {
    color: var(--text-white) !important;
    position: relative;
}
.navbar-custom .nav-link.active::after,
.navbar-custom .current-menu-item > a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 14px; right: 14px;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-primary), var(--purple-bright));
    border-radius: 1px;
}

.navbar-right-icons { display: flex; align-items: center; gap: 10px; }

.lang-selector {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 6px 14px;
    color: var(--text-secondary); font-size: 12px; cursor: pointer;
    transition: all 0.2s;
}
.lang-selector:hover { border-color: var(--border-hover); }
.lang-selector i { font-size: 14px; color: var(--text-muted); }

.nav-icon-btn {
    color: var(--text-muted); font-size: 18px;
    background: none; border: none; cursor: pointer;
    transition: color 0.2s; padding: 4px;
}
.nav-icon-btn:hover { color: var(--purple-light); }

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(160deg, #120a2e 0%, #0a0714 35%, var(--bg-dark) 70%);
    position: relative;
    padding: 70px 0 50px;
    overflow: hidden;
    min-height: 440px;
}
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 65% 40%, rgba(124, 58, 237, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.hero-subtitle {
    color: var(--purple-light); font-size: 13px; font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px; text-transform: uppercase;
}

.hero-title {
    font-size: 46px; font-weight: 900; line-height: 1.08;
    margin-bottom: 18px; letter-spacing: -1px;
    color: var(--text-white);
}

.hero-desc {
    color: var(--text-muted); font-size: 15px;
    margin-bottom: 28px; max-width: 480px; line-height: 1.7;
}

.hero-features {
    display: flex; flex-wrap: wrap; gap: 14px 32px; margin-bottom: 32px;
}

.hero-feature-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text-secondary);
}
.hero-feature-item .check-icon { color: var(--green-check); font-size: 15px; }

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(160deg, #120a2e 0%, #0a0714 40%, var(--bg-dark) 80%);
    position: relative; padding: 80px 0 50px; overflow: hidden; text-align: center;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(124, 58, 237, 0.06) 0%, transparent 65%);
    pointer-events: none;
}
.page-hero .hero-title { font-size: 40px; margin-bottom: 12px; }
.page-hero .hero-desc { max-width: 560px; margin: 0 auto 20px; text-align: center; }
.page-hero .breadcrumb-custom {
    display: flex; justify-content: center; gap: 8px;
    font-size: 12px; color: var(--text-muted);
}
.page-hero .breadcrumb-custom a { color: var(--purple-light); text-decoration: none; }

/* ===== BUTTONS ===== */
.btn-purple {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-bright));
    color: #fff; border: none; border-radius: 8px;
    padding: 11px 26px; font-size: 13px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.25s; text-decoration: none; cursor: pointer;
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.25);
}
.btn-purple:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.35);
    color: #fff;
}

.btn-purple-lg { padding: 14px 36px; font-size: 15px; border-radius: 10px; }

.btn-outline-custom {
    background: rgba(255,255,255,0.03);
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 11px 26px; font-size: 13px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.25s; text-decoration: none; cursor: pointer;
}
.btn-outline-custom:hover {
    border-color: var(--border-hover);
    background: rgba(124, 58, 237, 0.06);
    color: var(--text-white);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #1ebe5d);
    color: #fff; border: none; border-radius: 8px;
    padding: 13px 30px; font-size: 14px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.25s; text-decoration: none; cursor: pointer;
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.2);
}
.btn-whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.25);
    color: #fff;
}

.btn-buy {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-bright));
    color: #fff; border: none; border-radius: 8px;
    padding: 10px 20px; font-size: 13px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
    width: 100%; justify-content: center; cursor: pointer;
    transition: all 0.25s; text-decoration: none;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
}
.btn-buy:hover {
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
    transform: translateY(-1px); color: #fff;
}

/* ===== CARDS ===== */
.theme-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px; padding: 28px;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
    position: relative;
}
.theme-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}

/* ===== CHANNEL SECTION ===== */
.channels-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px; padding: 22px 26px;
    margin-top: -30px; position: relative; z-index: 10;
    box-shadow: var(--card-shadow);
}

.channels-header {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px;
}
.channels-title {
    display: flex; align-items: center; gap: 10px;
    font-size: 15px; font-weight: 700;
}
.channels-title i { color: var(--purple-light); font-size: 18px; }

.channels-see-all {
    color: var(--text-muted); font-size: 12px; text-decoration: none;
    display: flex; align-items: center; gap: 4px;
    transition: color 0.2s;
}
.channels-see-all:hover { color: var(--purple-light); }

.channel-carousel-wrapper { position: relative; }

.channel-carousel {
    display: flex; gap: 12px;
    overflow-x: auto; scroll-behavior: smooth;
    scrollbar-width: none; -ms-overflow-style: none;
    padding: 2px;
}
.channel-carousel::-webkit-scrollbar { display: none; }

.channel-card {
    min-width: 150px; height: 76px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s; cursor: pointer;
}
.channel-card:hover {
    border-color: var(--border-hover);
    background: rgba(124, 58, 237, 0.04);
}
.channel-card .channel-name {
    font-size: 17px; font-weight: 800; text-align: center; line-height: 1.2;
}

.carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 34px; height: 34px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); cursor: pointer; z-index: 2;
    font-size: 14px; transition: all 0.2s;
}
.carousel-arrow:hover {
    background: var(--purple-primary);
    border-color: var(--purple-primary);
    color: #fff;
}
.carousel-arrow.left { left: -17px; }
.carousel-arrow.right { right: -17px; }

.carousel-dots {
    display: flex; justify-content: center; gap: 6px; margin-top: 14px;
}
.carousel-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.12); cursor: pointer;
    transition: all 0.3s;
}
.carousel-dot.active {
    background: var(--purple-light);
    width: 20px; border-radius: 4px;
}

/* ===== PACKAGE ===== */
.package-group {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px; padding: 28px;
    box-shadow: var(--card-shadow);
}

.package-group-header {
    display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.package-group-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-bright));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff;
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.25);
}
.package-group-title { font-size: 17px; font-weight: 700; }
.package-group-desc { font-size: 13px; color: var(--text-muted); margin: 0; }

.package-cards { display: flex; gap: 12px; flex-wrap: wrap; }

.package-card {
    flex: 1; min-width: 180px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 22px 16px; text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.package-card:hover {
    border-color: var(--border-hover);
    background: rgba(124, 58, 237, 0.03);
    transform: translateY(-2px);
    box-shadow: var(--glow-purple);
}

.package-card.popular {
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(124, 58, 237, 0.04);
    box-shadow: var(--glow-purple);
}

.popular-badge {
    position: absolute; top: -1px; right: 12px;
    background: linear-gradient(135deg, #ef4444, var(--orange-accent));
    color: #fff; font-size: 10px; font-weight: 700;
    padding: 3px 10px; border-radius: 0 0 6px 6px;
    letter-spacing: 0.3px;
}

.package-duration { font-size: 22px; font-weight: 800; margin-bottom: 3px; }
.package-type { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.package-price { font-size: 30px; font-weight: 800; margin-bottom: 16px; }
.package-price .currency { font-size: 16px; font-weight: 600; margin-right: 2px; color: var(--text-muted); }

.package-feature-list {
    list-style: none; padding: 0; margin: 0 0 18px 0; text-align: left;
}
.package-feature-list li {
    font-size: 12px; color: var(--text-muted);
    padding: 5px 0;
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.package-feature-list li:last-child { border-bottom: none; }
.package-feature-list li i { color: var(--green-check); font-size: 13px; }

/* ===== FEATURES BAR ===== */
.features-bar {
    padding-top: 28px;
    padding-bottom: 28px;
    border-top: 1px solid var(--border-subtle);
}

.feature-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; }

.feature-icon {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--purple-light); flex-shrink: 0;
}

.feature-text h6 { font-size: 13px; font-weight: 700; margin-bottom: 1px; }
.feature-text p { font-size: 11px; color: var(--text-muted); margin: 0; }

/* ===== BOTTOM LINKS ===== */
.bottom-links { padding-bottom: 40px; }

.bottom-link-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 22px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.25s; text-decoration: none;
    color: var(--text-white); height: 100%;
    box-shadow: var(--card-shadow);
}
.bottom-link-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px); color: var(--text-white);
    box-shadow: var(--card-shadow-hover);
}
.bottom-link-card .link-left { display: flex; align-items: center; gap: 14px; }
.bottom-link-card .link-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-bright));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #fff; flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
}
.bottom-link-card h6 { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.bottom-link-card p { font-size: 11px; color: var(--text-muted); margin: 0; }
.bottom-link-card .link-arrow { font-size: 16px; color: var(--text-muted); }

.bottom-link-card.bayilik-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(147, 51, 234, 0.04));
    border-color: rgba(124, 58, 237, 0.2);
}
.bottom-link-card.bayilik-special {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-bright));
    border: none;
}
.bottom-link-card.bayilik-special p { color: rgba(255,255,255,0.75); }
.bottom-link-card.bayilik-special .link-arrow { color: #fff; }

.bayilik-special .btn-bayilik {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px; padding: 4px 12px;
    font-size: 10px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 4px;
    margin-top: 6px; cursor: pointer; transition: all 0.2s;
}
.bayilik-special .btn-bayilik:hover { background: rgba(255,255,255,0.25); }

/* ===== HERO MOCKUP ===== */
.hero-right { position: relative; z-index: 1; }
.hero-image-container { position: relative; display: flex; align-items: center; justify-content: center; }

.hero-mockup {
    position: relative; width: 100%; max-width: 540px; height: 310px;
    background: linear-gradient(135deg, #150d35, #1e1250);
    border-radius: 14px;
    border: 1px solid rgba(124, 58, 237, 0.15);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.hero-mockup::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(147, 51, 234, 0.04));
}

.mockup-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 5px; padding: 18px; width: 100%;
}
.mockup-thumb {
    aspect-ratio: 16/10; border-radius: 5px;
    background: linear-gradient(135deg, #1e1250, #2a1665);
    border: 1px solid rgba(124, 58, 237, 0.1);
}
.mockup-thumb:nth-child(odd) { background: linear-gradient(135deg, #150d35, #1e1250); }

.hero-play-btn {
    position: absolute; width: 56px; height: 56px;
    background: rgba(124, 58, 237, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff; z-index: 2;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

.hero-badge {
    position: absolute; top: 16px; right: -8px;
    background: linear-gradient(135deg, var(--purple-bright), var(--orange-accent));
    color: #fff; padding: 7px 14px; border-radius: 8px;
    font-size: 12px; font-weight: 700; z-index: 3;
    transform: rotate(4deg); text-align: center; line-height: 1.3;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.hero-devices {
    position: absolute; bottom: -10px; right: 20px;
    display: flex; gap: 6px; z-index: 3;
}
.device-icon-box {
    width: 30px; height: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: var(--text-muted);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-subtle);
    padding-top: 56px;
}

.footer-logo {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px; text-decoration: none;
}
.footer-logo .play-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-bright));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: #fff;
}
.footer-logo .brand-name { font-size: 17px; font-weight: 800; color: #fff; }
.footer-logo .brand-name span { color: var(--purple-light); }

.footer-desc { color: var(--text-muted); font-size: 12px; line-height: 1.8; margin-bottom: 18px; }

.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 15px;
    transition: all 0.2s; text-decoration: none;
}
.footer-social a:hover {
    background: var(--purple-primary);
    border-color: var(--purple-primary);
    color: #fff;
}

.footer-title {
    font-size: 14px; font-weight: 700; margin-bottom: 18px; color: var(--text-white);
    letter-spacing: 0.3px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
    color: var(--text-muted); font-size: 12px; text-decoration: none;
    transition: color 0.2s; display: flex; align-items: center; gap: 5px;
}
.footer-links a:hover { color: var(--purple-light); }
.footer-links a i { font-size: 10px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item .contact-icon {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--purple-light); flex-shrink: 0;
}
.footer-contact-item .contact-text { font-size: 12px; color: var(--text-secondary); }
.footer-contact-item .contact-label { color: var(--text-muted); font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-contact-item a { color: var(--text-white); text-decoration: none; transition: color 0.2s; font-size: 13px; }
.footer-contact-item a:hover { color: var(--purple-light); }

/* SEO Links */
.footer-seo {
    border-top: 1px solid var(--border-subtle);
    padding: 22px 0; margin-top: 36px;
}
.footer-seo-title {
    font-size: 12px; font-weight: 600; margin-bottom: 12px;
    color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px;
}
.footer-seo-links { display: flex; flex-wrap: wrap; gap: 5px; }
.footer-seo-links a {
    color: var(--text-muted); font-size: 11px; text-decoration: none;
    padding: 3px 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 5px;
    transition: all 0.2s;
}
.footer-seo-links a:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--border-hover);
    color: var(--purple-light);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 18px 0; margin-top: 18px; text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 11px; margin: 0; }

/* ===== HELPERS ===== */
.section-padding { padding-top: 56px; padding-bottom: 56px; }
.section-padding-sm { padding-top: 36px; padding-bottom: 36px; }

.section-title {
    font-size: 30px; font-weight: 800; margin-bottom: 8px;
    color: var(--text-white); letter-spacing: -0.5px;
}
.section-desc { color: var(--text-muted); font-size: 14px; max-width: 560px; margin: 0 auto; margin-bottom: 24px; }

.icon-box {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-bright));
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff; flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.25);
}
.icon-box-sm { width: 42px; height: 42px; border-radius: 10px; font-size: 18px; }
.icon-box-outline {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    color: var(--purple-light);
    box-shadow: none;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 22px; right: 22px;
    width: 52px; height: 52px;
    background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #fff;
    box-shadow: 0 3px 16px rgba(37, 211, 102, 0.3);
    z-index: 9999; transition: all 0.25s;
    text-decoration: none;
    animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== TELEGRAM FLOAT ===== */
.telegram-float {
    position: fixed; bottom: 84px; right: 22px;
    width: 52px; height: 52px;
    background: #0088cc; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #fff;
    box-shadow: 0 3px 16px rgba(0, 136, 204, 0.3);
    z-index: 9999; transition: all 0.25s;
    text-decoration: none;
    animation: pulse-tg 2s infinite;
}
.telegram-float:hover { transform: scale(1.08); color: #fff; }

@keyframes pulse-tg {
    0% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.35); }
    70% { box-shadow: 0 0 0 12px rgba(0, 136, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title { font-size: 34px; }
    .page-hero .hero-title { font-size: 30px; }
    .hero-right { margin-top: 40px; }
    .section-title { font-size: 24px; }
    .channels-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 767px) {
    .hero-title { font-size: 28px; }
    .page-hero .hero-title { font-size: 24px; }
    .hero-section { padding: 40px 0 30px; min-height: auto; }
    .page-hero { padding: 60px 0 36px; }
}

/* ===== BLOG & POSTS ===== */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}
.blog-thumbnail {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-dark);
}
.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-meta {
    font-size: 11px;
    color: var(--purple-light);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.3;
}
.blog-title a {
    color: var(--text-white);
    transition: color 0.2s;
}
.blog-title a:hover {
    color: var(--purple-light);
}
.blog-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}
.blog-read-more {
    margin-top: auto;
    font-size: 13px;
    font-weight: 700;
    color: var(--purple-light);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.blog-read-more:hover {
    color: var(--purple-bright);
}

/* ===== SINGLE POST ===== */
.single-post-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    color: var(--text-secondary);
    line-height: 1.8;
}
.single-post-content h1, .single-post-content h2, .single-post-content h3 {
    color: var(--text-white);
    margin-top: 24px;
    margin-bottom: 16px;
    font-weight: 800;
}
.single-post-content p {
    margin-bottom: 20px;
}
.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* ===== PAGINATION ===== */
.pagination-custom {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
}
.pagination-custom ul {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.pagination-custom ul li a,
.pagination-custom ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 40px;
    padding: 0 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s;
    text-decoration: none;
}
.pagination-custom ul li a:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--border-hover);
    color: var(--text-white);
}
.pagination-custom ul li span.current {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-bright));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.25);
}

/* ===== 404 PAGE ===== */
.error-404 {
    text-align: center;
    padding: 80px 0;
}
.error-404 h1 {
    font-size: 100px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-light), var(--purple-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}
.error-404 h2 {
    font-size: 30px;
    color: var(--text-white);
    margin-bottom: 20px;
}
.error-404 p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 30px;
}


/* ===== WIDGET STYLES ===== */
.widget { margin-bottom: 30px; }
.widget_nav_menu ul, .widget ul {
    list-style: none; padding: 0; margin: 0;
}
.widget_nav_menu ul li, .widget ul li { margin-bottom: 9px; position: relative; }
.widget_nav_menu ul a, .widget ul a {
    color: var(--text-muted); font-size: 12px; text-decoration: none; transition: color 0.2s;
    display: inline-flex; align-items: center; gap: 5px;
}
.widget_nav_menu ul a:hover, .widget ul a:hover { color: var(--purple-light); }
.widget_nav_menu ul a::before, .widget_pages ul a::before, .widget_meta ul a::before {
    content: "\F285"; font-family: "bootstrap-icons"; font-size: 10px; margin-right: 4px;
}
.footer-contact-item { margin-bottom: 15px; }


/* ===== REDESIGNED HOME PAGE CSS ===== */

/* Package Horizontal Panel */
.package-horizontal-card {
    background: rgba(15, 5, 29, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pkg-horz-header {
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 16px;
}
.pkg-horz-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-bright));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}
.pkg-horz-header h4 {
    font-weight: 700;
    font-size: 18px;
}
.pkg-horz-header p {
    font-size: 12px;
}

/* Mini Price Cards */
.mini-price-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 16px 10px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.mini-price-card:hover {
    background: rgba(124, 58, 237, 0.05);
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}
.mini-price-duration {
    font-weight: 800;
    color: var(--text-white);
    font-size: 15px;
    margin-bottom: 2px;
}
.mini-price-type {
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.mini-price-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
    margin-top: auto;
}
.btn-mini-buy {
    display: block;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    color: #fff;
    text-decoration: none;
    padding: 8px 0;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}
.btn-mini-buy:hover {
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    color: #fff;
    filter: brightness(1.1);
}

.mini-popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #a855f7, #d946ef);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(217, 70, 239, 0.4);
}

/* Feature Horizontal Bars */
.feat-horz-card {
    background: rgba(15, 5, 29, 0.5);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    transition: all 0.3s;
}
.feat-horz-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(15, 5, 29, 0.8);
}
.feat-horz-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-light);
    font-size: 16px;
    flex-shrink: 0;
}
.feat-horz-text h6 {
    font-size: 12px;
    color: var(--text-white);
    margin: 0 0 2px 0;
    font-weight: 700;
}
.feat-horz-text p {
    font-size: 10px;
    color: var(--text-muted);
    margin: 0;
}

/* Bottom Action Links */
.bottom-action-card {
    background: rgba(15, 5, 29, 0.6);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.bottom-action-card:hover {
    border-color: var(--purple-primary);
    transform: translateY(-2px);
}
.act-icon {
    width: 42px;
    height: 42px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--purple-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 14px;
    flex-shrink: 0;
}
.act-text h6 {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px 0;
}
.act-text p {
    color: var(--text-muted);
    font-size: 11px;
    margin: 0;
    line-height: 1.3;
}
.act-arrow {
    position: absolute;
    right: 16px;
    color: var(--text-muted);
    font-size: 14px;
    transition: 0.3s;
}
.bottom-action-card:hover .act-arrow {
    color: var(--purple-light);
    transform: translateX(3px);
}

/* Special Deal Card */
.deal-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(15, 5, 29, 0.9));
    border: 1px solid var(--purple-primary);
}
.deal-card .act-icon {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-bright));
    color: #fff;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}
.deal-card .btn-bayi {
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid var(--purple-primary);
    color: #fff;
    padding: 4px 10px;
    font-size: 10px;
    border-radius: 4px;
    margin-top: 6px;
    display: inline-block;
    transition: 0.3s;
}
.deal-card:hover .btn-bayi {
    background: var(--purple-primary);
}


/* ===== KANAL LISTESI & KATEGORILER ===== */
.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s;
    height: 100%;
}
.category-card:hover {
    border-color: var(--purple-light);
    transform: translateY(-2px);
}
.category-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-bright));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff; margin-bottom: 14px;
}
.category-title { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.channel-list {
    list-style: none; padding: 0; margin: 0;
}
.channel-list li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 5px 0;
    border-bottom: 1px solid rgba(42,37,69,0.4);
}
.channel-list li:last-child { border-bottom: none; }
.channel-list i { font-size: 6px; color: var(--purple-light); vertical-align: middle; margin-right: 6px; }

/* Filter Buttons */
.filter-btn {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--purple-primary);
    border-color: var(--purple-primary);
}


/* ===== UYGULAMALAR ===== */
.app-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}
.app-card:hover {
    border-color: var(--purple-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(139,47,201,0.15);
}
.app-icon {
    width: 72px; height: 72px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: #fff;
    margin: 0 auto 16px;
}
.app-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.app-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.app-devices { display: flex; justify-content: center; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.app-device-tag {
    font-size: 11px;
    padding: 4px 10px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-muted);
}


/* ===== BAYILIK ===== */
.panel-mockup {
    background: linear-gradient(135deg, #1e1245, #2a1560);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}
.panel-mockup::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(139,47,201,0.15), transparent 60%);
}
.panel-bar {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    margin-bottom: 8px;
}
.panel-bar.short { width: 60%; }
.panel-bar.medium { width: 80%; }
.panel-bar.purple { background: linear-gradient(90deg, var(--purple-primary), var(--purple-bright)); }
.panel-row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}
.panel-box {
    flex: 1;
    height: 40px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}
.stat-number {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-light), var(--purple-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}


/* ===== DESIGN ENHANCEMENTS (BORDERS & GLOW) ===== */
.mini-price-card, .feat-horz-card, .bottom-action-card, .package-horizontal-card {
    border: 2px solid rgba(124, 58, 237, 0.15) !important;
}

.mini-price-card:hover, .feat-horz-card:hover, .bottom-action-card:hover {
    border: 2px solid rgba(124, 58, 237, 0.6) !important;
    box-shadow: inset 0 0 15px rgba(124, 58, 237, 0.1), 0 5px 25px rgba(124, 58, 237, 0.25) !important;
}

.package-horizontal-card {
    box-shadow: inset 0 0 30px rgba(124, 58, 237, 0.05), 0 10px 40px rgba(0,0,0,0.6) !important;
}

.mini-price-card[style*="background"] {
    border: 2px solid rgba(124, 58, 237, 0.6) !important;
    box-shadow: inset 0 0 20px rgba(124, 58, 237, 0.1) !important;
}
.mini-price-card[style*="background"]:hover {
    border: 2px solid rgba(168, 85, 247, 0.9) !important;
    box-shadow: inset 0 0 30px rgba(168, 85, 247, 0.2), 0 5px 25px rgba(124, 58, 237, 0.35) !important;
}

.deal-card {
    border: 2px solid rgba(168, 85, 247, 0.6) !important;
}
.deal-card:hover {
    border: 2px solid rgba(217, 70, 239, 0.9) !important;
    box-shadow: inset 0 0 25px rgba(217, 70, 239, 0.2), 0 8px 30px rgba(168, 85, 247, 0.4) !important;
}

/* ===== POPULAR CHANNELS UPGRADE ===== */
.channels-section {
    background: linear-gradient(135deg, rgba(15, 5, 29, 0.9), rgba(124, 58, 237, 0.15)) !important;
    border: 2px solid rgba(124, 58, 237, 0.3) !important;
    box-shadow: inset 0 0 30px rgba(124, 58, 237, 0.05), 0 10px 40px rgba(0,0,0,0.6) !important;
}

.channel-card {
    background: rgba(15, 5, 29, 0.6) !important;
    border: 2px solid rgba(124, 58, 237, 0.15) !important;
}

.channel-card:hover {
    background: rgba(124, 58, 237, 0.15) !important;
    border: 2px solid rgba(168, 85, 247, 0.6) !important;
    box-shadow: inset 0 0 15px rgba(124, 58, 237, 0.2), 0 5px 20px rgba(124, 58, 237, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* Upgrade slider buttons */
.carousel-arrow {
    background: rgba(124, 58, 237, 0.2) !important;
    border: 1px solid rgba(124, 58, 237, 0.5) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3) !important;
}
.carousel-arrow:hover {
    background: var(--purple-primary) !important;
    border-color: var(--purple-bright) !important;
}

/* Dots upgrade */
.carousel-dot {
    background: rgba(124, 58, 237, 0.3) !important;
}
.carousel-dot.active {
    background: var(--purple-bright) !important;
    box-shadow: 0 0 10px var(--purple-bright) !important;
}

/* ===== GLOBAL PURPLE GRADIENT UPGRADES ===== */

/* Header / Navbar */
.navbar-custom {
    background: linear-gradient(135deg, rgba(20, 8, 40, 0.95), rgba(40, 15, 75, 0.95)) !important;
    border-bottom: 1px solid rgba(124, 58, 237, 0.25) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5) !important;
}

/* Hero Sections (Home & Inner Pages) */
.hero-section, .page-hero {
    background: radial-gradient(ellipse at top right, rgba(124, 58, 237, 0.2), transparent 60%),
                radial-gradient(ellipse at bottom left, rgba(60, 20, 120, 0.3), transparent 50%),
                linear-gradient(180deg, #110524 0%, #0a0414 100%) !important;
    position: relative;
}

/* Footer */
.site-footer {
    background: linear-gradient(0deg, #090212 0%, #15062e 100%) !important;
    border-top: 2px solid rgba(124, 58, 237, 0.2) !important;
    box-shadow: 0 -10px 40px rgba(124, 58, 237, 0.05) !important;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center top, rgba(124, 58, 237, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.site-footer .container {
    position: relative;
    z-index: 1;
}

/* Base Body enhancement to ensure smooth transitions */
body {
    background: #0a0414 !important;
    background-image: radial-gradient(circle at 50% 0%, rgba(40, 15, 75, 0.2), transparent 50%) !important;
    background-attachment: fixed !important;
}


/* ===== GLOBAL THICK BORDERS (ALL PAGES & BUTTONS) ===== */

/* 1. All Button Borders */
.btn-purple, .btn-whatsapp, .filter-btn, .nav-icon-btn, .blog-read-more {
    border: 2px solid rgba(168, 85, 247, 0.4) !important;
    transition: all 0.3s ease !important;
}

.btn-purple:hover, .btn-whatsapp:hover, .filter-btn:hover, .nav-icon-btn:hover, .filter-btn.active {
    border: 2px solid rgba(217, 70, 239, 0.8) !important;
    box-shadow: inset 0 0 15px rgba(217, 70, 239, 0.2), 0 5px 20px rgba(168, 85, 247, 0.3) !important;
}

/* 2. Inner Page Cards (Blog, Kategoriler, Uygulamalar, Bayilik vs.) */
.category-card:hover, 
.app-card:hover, 
.blog-card:hover {
    border: 2px solid rgba(168, 85, 247, 0.7) !important;
    box-shadow: inset 0 0 20px rgba(124, 58, 237, 0.15), 0 8px 25px rgba(124, 58, 237, 0.25) !important;
}


/* Apply global button styles to btn-outline-custom as well */
.btn-outline-custom {
    border: 2px solid rgba(168, 85, 247, 0.4) !important;
    transition: all 0.3s ease !important;
}
.btn-outline-custom:hover {
    border: 2px solid rgba(217, 70, 239, 0.8) !important;
    box-shadow: inset 0 0 15px rgba(217, 70, 239, 0.2), 0 5px 20px rgba(168, 85, 247, 0.3) !important;
}

/* Also ensure the mini buy buttons get the treatment */
.btn-mini-buy {
    border: 2px solid rgba(168, 85, 247, 0.4) !important;
}
.btn-mini-buy:hover {
    border: 2px solid rgba(217, 70, 239, 0.8) !important;
    box-shadow: inset 0 0 15px rgba(217, 70, 239, 0.2), 0 5px 20px rgba(168, 85, 247, 0.3) !important;
}

/* ===== GLOBAL BODY PURPLE IMMERSION ===== */
body {
    background: radial-gradient(circle at 15% 50%, rgba(124, 58, 237, 0.08), transparent 50%),
                radial-gradient(circle at 85% 80%, rgba(88, 28, 135, 0.1), transparent 50%),
                radial-gradient(ellipse at 50% 0%, rgba(124, 58, 237, 0.15), transparent 60%),
                linear-gradient(180deg, #110524 0%, #0a0414 100%) !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    color: var(--text-white);
}

/* Make sure hero section is transparent so it blends with the deep body background */
.hero-section, .page-hero {
    background: transparent !important;
}

/* Make Navbar WhatsApp Icon Button perfectly round instead of square */
.nav-icon-btn {
    border-radius: 50% !important;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* ===== ILETISIM SAYFASI CSS ===== */
.contact-card {
    background: var(--bg-card);
    border: 2px solid rgba(124, 58, 237, 0.25) !important;
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}
.contact-card:hover {
    border: 2px solid rgba(168, 85, 247, 0.7) !important;
    transform: translateY(-3px);
    box-shadow: inset 0 0 20px rgba(124, 58, 237, 0.15), 0 8px 25px rgba(124, 58, 237, 0.25) !important;
}
.contact-icon-lg {
    width: 72px; height: 72px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: #fff;
    margin: 0 auto 20px;
}
.contact-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.contact-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.whatsapp-big-cta {
    background: transparent !important; /* User requested removal of darkness here */
    border: 2px solid rgba(124, 58, 237, 0.25) !important;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.whatsapp-big-cta:hover {
    border: 2px solid rgba(168, 85, 247, 0.7) !important;
    box-shadow: inset 0 0 20px rgba(124, 58, 237, 0.15), 0 8px 25px rgba(124, 58, 237, 0.25) !important;
}
.whatsapp-big-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(37,211,102,0.12), transparent 70%);
}

/* ===== HARMONIZE DARK BACKGROUNDS (GLASSMORPHISM) ===== */
/* Remove the solid dark backgrounds and replace with semi-transparent purple glass to match the body */

.stat-card, 
.single-post-content, 
.theme-card, 
.page-content,
.panel-mockup, 
.panel-box, 
.blog-card, 
.category-card, 
.app-card, 
.package-horizontal-card, 
.mini-price-card,
.widget {
    background: rgba(35, 15, 65, 0.35) !important; /* Semi-transparent purple instead of solid dark */
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

/* On hover, let them glow slightly brighter purple */
.stat-card:hover, 
.blog-card:hover, 
.category-card:hover, 
.app-card:hover, 
.mini-price-card:hover {
    background: rgba(50, 20, 90, 0.5) !important;
}

/* Also ensure the content text within articles looks good */
.single-post-content, .theme-card {
    padding: 30px;
    border: 2px solid rgba(124, 58, 237, 0.25) !important;
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(124, 58, 237, 0.1), 0 10px 30px rgba(0,0,0,0.4) !important;
}

/* Ensure Contact Cards also use the glassmorphism instead of solid dark */
.contact-card {
    background: rgba(35, 15, 65, 0.35) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}
.contact-card:hover {
    background: rgba(50, 20, 90, 0.5) !important;
}

/* ===== CATEGORY LINK & READ MORE BUTTON FIX ===== */
.blog-meta a {
    color: var(--purple-bright) !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}
.blog-meta a:hover {
    color: var(--purple-light) !important;
    text-decoration: underline !important;
}

.blog-read-more {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 18px !important;
    border-radius: 20px !important;
    color: var(--text-white) !important;
    background: rgba(124, 58, 237, 0.15) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin-top: 10px !important;
    border: 2px solid rgba(168, 85, 247, 0.4) !important;
}
.blog-read-more:hover {
    background: rgba(124, 58, 237, 0.4) !important;
    color: #fff !important;
}
.blog-read-more i {
    margin-left: 6px;
}

/* Update Contact Page WhatsApp Box Background */
.whatsapp-big-cta {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.4), rgba(124, 58, 237, 0.15)) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

/* Package Feature List */
.pkg-features-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
    text-align: left;
}
.pkg-features-list li {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pkg-features-list li i {
    color: var(--purple-bright);
    font-size: 14px;
}

/* ===== REVIEWS SECTION ===== */
.review-card {
    background: rgba(35, 15, 65, 0.35) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 2px solid rgba(124, 58, 237, 0.25) !important;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    height: 100%;
}
.review-card:hover {
    border: 2px solid rgba(168, 85, 247, 0.7) !important;
    background: rgba(50, 20, 90, 0.5) !important;
    box-shadow: inset 0 0 20px rgba(124, 58, 237, 0.15), 0 8px 25px rgba(124, 58, 237, 0.25) !important;
    transform: translateY(-3px);
}
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}
.review-text {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-top: 15px;
    margin-bottom: 0;
    line-height: 1.6;
    font-style: italic;
}
.review-stars i {
    font-size: 12px;
}

/* ===== FAQ ACCORDION ===== */
.custom-accordion .accordion-item {
    background: rgba(35, 15, 65, 0.35) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 2px solid rgba(124, 58, 237, 0.25) !important;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
}
.custom-accordion .accordion-button {
    background: transparent !important;
    color: var(--text-white) !important;
    font-weight: 600;
    box-shadow: none !important;
    padding: 20px;
}
.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--purple-light) !important;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2) !important;
}
.custom-accordion .accordion-button::after {
    filter: invert(1) grayscale(100%) brightness(200%);
}
.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(0.5) sepia(1) saturate(5) hue-rotate(250deg);
}
.custom-accordion .accordion-body {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    padding: 20px;
}
.custom-accordion .accordion-body strong {
    color: var(--text-white);
}

/* ===== SIDEBAR WIDGET STYLES ===== */
.sidebar-widget .widget-title,
.widget .widget-title {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.sidebar-widget ul,
.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li,
.widget ul li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.sidebar-widget ul li:last-child,
.widget ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-widget ul li a,
.widget ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.sidebar-widget ul li a::before,
.widget ul li a::before {
    content: '\F285'; /* bootstrap icon chevron-right */
    font-family: 'bootstrap-icons';
    font-size: 10px;
    margin-right: 8px;
    color: var(--purple-primary);
    transition: all 0.3s ease;
}

.sidebar-widget ul li:hover a,
.widget ul li:hover a {
    color: var(--purple-light);
    transform: translateX(5px);
}

.sidebar-widget ul li:hover {
    border-bottom-color: rgba(124, 58, 237, 0.3);
}

/* Category Post Count */
.sidebar-widget ul li span,
.widget ul li span,
.sidebar-widget ul li a + span,
.widget ul li a + span {
    font-size: 11px;
    background: rgba(139, 47, 201, 0.15);
    color: var(--purple-light);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}


/* ===== FOOTER WIDGET FIXES ===== */
.footer-widget ul {
    list-style: none; padding: 0; margin: 0;
}
.footer-widget ul li {
    margin-bottom: 12px;
}
.footer-widget ul a {
    color: var(--text-muted); text-decoration: none; font-size: 14px;
    transition: all 0.3s; display: inline-flex; align-items: center;
}
.footer-widget ul a:hover {
    color: var(--purple-light); transform: translateX(5px);
}
.footer-widget ul a::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
    font-size: 12px;
    margin-right: 8px;
    color: var(--purple-primary);
}

}

/* Sync trigger 1789910677223 */
