        /* 1. SIFIRLAMA VE ANA AYARLAR */
        html {
            height: 100%;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
    
        /* 2. HAREKETLÄ° VE KOYU ARKA PLAN (Renk burasÄ±dÄ±r) */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            /* Hareketli koyu lacivert-mor geÃ§iÅŸi */
            background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e, #1a1a2e) !important;
            background-size: 400% 400% !important;
            animation: gradientBG 15s ease infinite !important;
            font-size: 0.95rem;
            color: #fff;
            overflow-x: hidden;
            min-height: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* İçerik alanı büyür, footer her zaman en altta kalır */
        .site-page {
            flex: 1 0 auto;
            width: 100%;
            display: flex;
            flex-direction: column;
        }
    
        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
    
        /* 3. CAM EFEKTLÄ° KARTLAR */
        .feature-card, .pricing-card, .contact-card, .faq-item {
            background: rgba(255, 255, 255, 0.03); /* Hafif transparan */
            backdrop-filter: blur(15px); /* ArkayÄ± bulanÄ±klaÅŸtÄ±rÄ±r */
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            transition: all 0.4s ease !important;
        }
    
        /* 4. ALTIN SARISI FÄ°YATLAR (Daha parlak hale getirildi) */
        .price, .price-range, .price-highlight {
            background: linear-gradient(135deg, #e0e7ff 0%, #a5b4fc 45%, #667eea 100%) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
            font-weight: 800 !important;
            font-size: 2.2em;
        }
    
        /* 5. ÃœZERÄ°NE GELÄ°NCE PARLAMA (Hover) */
        .feature-card:hover, .pricing-card:hover {
            transform: translateY(-10px);
            border-color: #667eea !important;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3) !important;
        }

        /* Navigation — yalnızca üst site menüsü (ürün sekmeleri <div> kullanır) */
        nav.site-nav,
        body:not(.product-page) .site-page > nav,
        body:not(.product-page) > nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(15, 12, 41, 0.95);
            backdrop-filter: blur(10px);
            padding: 12px 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-container .nav-actions {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .nav-container .nav-social {
            display: inline-flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
            gap: 8px;
        }
        .nav-container .nav-social .nav-icon-btn {
            flex: 0 0 auto;
            width: 34px;
            height: 34px;
            min-width: 34px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.35);
            background: rgba(255, 255, 255, 0.08);
            box-sizing: border-box;
        }
        .nav-container .nav-social .nav-icon-btn svg {
            width: 17px;
            height: 17px;
            display: block;
        }

        .logo {
            font-size: 1.4em;
            font-weight: bold;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
            align-items: center;
        }

        .language-selector {
            position: relative;
            display: inline-block;
        }

        .lang-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            padding: 8px 15px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.9em;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .lang-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 5px;
            background: rgba(15, 12, 41, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            min-width: 150px;
            display: none;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .lang-dropdown.show {
            display: block;
        }

        .lang-option {
            padding: 12px 20px;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .lang-option:last-child {
            border-bottom: none;
        }

        .lang-option:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .lang-option.active {
            background: rgba(255, 255, 255, 0.3);
            color: #667eea;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            transition: width 0.3s ease;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #fff;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 80vh;
            display: flex;
            flex-direction: column; /* GÃ¶rsel Ã¼stte, baÅŸlÄ±k altta olacak ÅŸekilde dikey hizalama */
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 20px 40px;
            position: relative;
            overflow: hidden;
        }

        /* Ã–nceki parlama animasyonu kaldÄ±rÄ±ldÄ± */

        .hero-content {
            max-width: 700px;
            z-index: 1;
        }

        .hero h1 {
            font-size: 2.5em;
            margin-bottom: 15px;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.2em;
            color: #cbd5e0;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95em;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
        }

        .telegram-channel-link:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #8b9aff;
        }

        .telegram-channel-link:hover span:last-child {
            transform: translateX(5px);
        }

        /* Section Styles */
        section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2em;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1em;
            color: #a0aec0;
            margin-bottom: 40px;
        }

        /* Macros Section */
        .macros-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            position: static;
            margin-bottom: 50px;
            flex-wrap: wrap;
            align-items: flex-start;
            padding: 12px 20px 16px;
            background: transparent;      /* Arka plan transparan */
            backdrop-filter: none;
            border-bottom: none;
        }

        .tab-btn-wrapper {
            position: relative;
            display: inline-block;
        }

        .free-badge {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            color: #ef4444;
            font-size: 0.7em;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .tab-btn {
            background: rgba(15, 12, 41, 0.95); /* Dolu, koyu arka plan */
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            padding: 10px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 0.95em;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .tab-btn:hover, .tab-btn.active {
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
        }

        .macro-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        /* Global Captcha banner - tÃ¼m paketlerde mevcuttur */
        .captcha-global-banner {
            width: 100%;
            max-width: 900px;
            margin: 0 auto 24px;
            padding: 12px 20px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(220, 224, 230, 0.25) 100%);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 12px;
            text-align: center;
            font-size: 0.95em;
            color: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .captcha-global-banner .captcha-banner-icon { font-size: 1.3em; }

        .captcha-card-badge {
            display: inline-block;
            margin-top: 6px;
            padding: 4px 10px;
            background: rgba(255, 255, 255, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 20px;
            font-size: 0.8em;
            color: #a5b4fc;
        }

        .macro-content.active {
            display: block;
        }

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

        .macro-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 20px;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
        }

        .feature-icon {
            font-size: 2em;
            margin-bottom: 12px;
        }

        .feature-card h3 {
            font-size: 1.2em;
            margin-bottom: 10px;
            color: #667eea;
        }

        .feature-card p {
            color: #cbd5e0;
            line-height: 1.5;
            font-size: 0.9em;
        }

        /* Video kartlarÄ±nÄ±n arka planÄ±nÄ± kaldÄ±rmak iÃ§in Ã¶zel sÄ±nÄ±f */
        .video-wrapper,
        .download-wrapper {
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
            padding: 0 !important;
        }

        /* Video sekmeli tab yapÄ±sÄ± */
        .video-tabs-container {
            margin-top: 14px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: flex-start;
        }
        .video-tabs-list {
            flex: 0 0 200px;
            min-width: 180px;
            max-height: 600px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .video-tabs-list::-webkit-scrollbar {
            width: 6px;
        }
        .video-tabs-list::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.5);
            border-radius: 3px;
        }
        .video-tab {
            padding: 10px 14px;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.08);
            background: rgba(255,255,255,0.03);
            color: #cbd5e0;
            font-size: 0.88em;
            line-height: 1.3;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .video-tab:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            color: #e2e8f0;
        }
        .video-tab.active {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(220, 224, 230, 0.2));
            border-color: rgba(255, 255, 255, 0.6);
            color: #fff;
        }
        .video-tab-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            width: 100%;
        }
        .video-tab-group-label {
            padding: 10px 14px;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.08);
            background: rgba(255,255,255,0.03);
            color: #cbd5e0;
            font-size: 0.88em;
            line-height: 1.3;
            cursor: pointer;
            transition: all 0.25s ease;
            text-align: left;
            font-family: inherit;
            width: 100%;
        }
        .video-tab-group-label:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            color: #e2e8f0;
        }
        .video-tab-group-label.active {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(220, 224, 230, 0.2));
            border-color: rgba(255, 255, 255, 0.6);
            color: #fff;
        }
        .video-tab-group-body {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding: 4px 0 4px 10px;
            border-left: 2px solid rgba(255, 255, 255, 0.35);
            margin-left: 4px;
        }
        .video-tab-group-body[hidden] {
            display: none !important;
        }
        .video-tab-nested {
            font-size: 0.88em;
        }
        .video-tab-panels {
            flex: 1 1 400px;
            min-width: 300px;
        }
        .video-tab-panel {
            display: none;
            flex-direction: column;
            gap: 14px;
        }
        .video-tab-panel.active {
            display: flex;
        }
        .video-tab-panel .video-player-wrap {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 14px;
            border: 1px solid rgba(255,255,255,0.08);
        }
        .video-tab-panel .video-player-wrap iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        .video-tab-panel .video-desc {
            color: #cbd5e0;
            font-size: 0.9em;
            line-height: 1.6;
        }

        /* Macro detay kartlarÄ± (DetaylÄ± incele) */
        .macro-details-card {
            margin-top: 10px;
            position: relative;
        }

        .macro-details-body {
            max-height: 280px;
            overflow: hidden;
            position: relative;
        }

        .macro-details-card.expanded .macro-details-body {
            max-height: none;
        }

        .macro-details-fade {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 56px;
            height: 80px;
            background: linear-gradient(to bottom, rgba(15,12,41,0), rgba(15,12,41,0.9));
            pointer-events: none;
            display: none;
        }

        .macro-details-card:not(.expanded) .macro-details-fade {
            display: block;
        }

        .macro-details-toggle {
            margin-top: 18px;
            display: inline-block;
            padding: 8px 18px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.1);
            color: #e5e7eb;
            font-size: 0.9em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .macro-details-toggle:hover {
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-color: transparent;
            transform: translateY(-2px);
        }

        /* Ã–zellikler grid - kart yapÄ±sÄ± */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
            margin-top: 12px;
        }
        .feature-cat-card {
            background: rgba(255,255,255,0.03);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 14px 16px;
            transition: all 0.25s ease;
            box-shadow: 0 0 12px rgba(255, 255, 255, 0.06);
        }
        .feature-cat-card:hover {
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 0 24px rgba(255, 255, 255, 0.15);
        }
        .feature-cat-card .cat-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            color: #667eea;
            font-weight: 600;
            font-size: 0.95em;
        }
        .feature-cat-card > p {
            margin: 0;
            color: #cbd5e0;
            font-size: 0.88em;
            line-height: 1.6;
        }
        .feature-cat-card .cat-icon {
            font-size: 1.2em;
        }
        .feature-cat-card ul {
            margin: 0;
            padding-left: 20px;
            color: #cbd5e0;
            font-size: 0.88em;
            line-height: 1.55;
        }
        .feature-cat-card ul li {
            margin-bottom: 4px;
        }
        .feature-cat-card .feature-num {
            color: #a78bfa;
            font-weight: 700;
        }
        .features-grid-sm {
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        }
        .feature-cat-card-sm {
            padding: 16px 18px;
        }
        .feature-cat-card-sm .cat-header {
            margin-bottom: 0;
            font-size: 0.95em;
            font-weight: 500;
        }
        .feature-cat-card-sm .cat-header span:last-child {
            color: #cbd5e0;
        }
        .feature-cat-card-sm .cat-icon {
            font-size: 1.3em;
        }
        /* Upgrade HakkÄ±nda - dikkat Ã§ekici alan */
        .upgrade-about {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 16px;
            margin-top: 10px;
        }
        .upgrade-about-card {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 14px;
            padding: 18px 20px;
            transition: all 0.25s ease;
        }
        .upgrade-about-highlight {
            border-color: rgba(255, 255, 255, 0.45);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
        }
        .upgrade-about-highlight:hover {
            border-color: rgba(255, 255, 255, 0.6);
            box-shadow: 0 0 28px rgba(255, 255, 255, 0.2);
        }
        .upgrade-about-icon {
            font-size: 2em;
            line-height: 1;
        }
        .upgrade-about-title {
            display: block;
            color: #a78bfa;
            font-size: 1.05em;
            margin-bottom: 6px;
        }
        .upgrade-about-desc {
            margin: 0;
            color: #cbd5e0;
            font-size: 0.92em;
            line-height: 1.55;
        }

        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Daha dar kartlar, 5'e kadar yan yana */
            gap: 16px;
            margin-top: 30px;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            padding: 22px;
            text-align: center;
            transition: all 0.3s ease;
            min-height: 190px;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
        }

        .pricing-card.featured {
            border-color: rgba(255, 255, 255, 0.1);
        }

        .pricing-card h3 {
            font-size: 1.1em;
            margin-bottom: 10px;
            color: #667eea;
        }

        .price {
            font-size: 1.8em; /* Fiyat yazÄ±sÄ±nÄ± kÃ¼Ã§Ã¼lttÃ¼k */
            font-weight: bold;
            color: #fbbf24;
            margin: 10px 0;
        }

        .price span {
            font-size: 0.4em;
            color: #a0aec0;
        }

        .price-list {
            display: none; /* Fiyat kartlarÄ±nda Ã¶zellik listelerini gizle */
        }

        .price-list li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: #cbd5e0;
            font-size: 0.9em;
        }

        .price-list li:before {
            content: "âœ“";
            color: #10b981;
            font-weight: bold;
            margin-right: 10px;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: block;
            color: inherit;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.1);
        }

        .contact-icon {
            font-size: 2em;
            margin-bottom: 12px;
        }

        .contact-card h3 {
            font-size: 1.2em;
            margin-bottom: 10px;
            color: #667eea;
        }

        .contact-card p {
            color: #cbd5e0;
            line-height: 1.5;
            font-size: 0.9em;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            padding: 18px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1em;
            font-weight: 600;
        }

        .faq-question:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 25px;
            color: #cbd5e0;
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            max-height: 1000px;
            padding: 0 18px 18px;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* Footer — viewport / sayfa en altı (pro footer ayrı: byron-pro-ui.css) */
        footer.site-footer:not(.site-footer-pro),
        footer:not(.site-footer-pro) {
            background: rgba(15, 12, 41, 0.95);
            padding: 30px 20px;
            text-align: center;
            border-top: 2px solid rgba(102, 126, 234, 0.3);
            flex-shrink: 0;
            width: 100%;
            box-sizing: border-box;
            margin-top: 0;
        }

        footer.site-footer:not(.site-footer-pro) p,
        footer:not(.site-footer-pro) p {
            color: #a0aec0;
            margin: 10px 0;
        }

        /* Price Table Styles */
        .price-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            overflow: hidden;
            margin: 20px 0;
        }

        .price-table thead {
            background: rgba(255, 255, 255, 0.2);
        }

        .price-table th {
            padding: 15px;
            text-align: center;
            font-weight: 600;
            color: #667eea;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        }

        .price-table td {
            padding: 12px 15px;
            text-align: center;
            color: #cbd5e0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .price-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .price-table tbody tr:last-child td {
            border-bottom: none;
        }

        .price-highlight {
            color: #fbbf24;
            font-weight: 600;
        }

        .table-title {
            text-align: center;
            font-size: 1.1em;
            color: #667eea;
            margin: 10px 0 8px;
            font-weight: 500;
        }

        .price-table-container {
            display: none; /* Kart iÃ§inde sadece veri kaynaÄŸÄ± olarak kullanÄ±lacak */
        }

        .price-table-container.show {
            display: block;
        }

        .show-details-btn {
            background: rgba(255, 255, 255, 0.22);
            border: 1px solid rgba(255, 255, 255, 0.45);
            color: #e5e7eb;
            padding: 6px 16px;
            border-radius: 999px;
            cursor: pointer;
            margin: 10px auto 0;
            display: inline-block;
            font-size: 0.8em;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .show-details-btn:hover {
            background: rgba(255, 255, 255, 0.35);
            transform: translateY(-1px);
        }

        .price-range {
            font-size: 1.8em; /* Fiyat yazÄ±sÄ±nÄ± bir tÄ±k kÃ¼Ã§Ã¼lttÃ¼k */
            font-weight: bold;
            color: #fbbf24;
            margin: 10px 0;
        }

        /* Image Gallery */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 10px;
            margin-top: 20px;
            max-width: 100%;
        }

        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            max-height: 80px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            max-height: 80px;
        }

        /* HWID Reset Modal */
        .hwid-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(5px);
            justify-content: center;
            align-items: center;
        }

        .hwid-modal.active {
            display: flex;
        }

        .hwid-modal-content {
            background: linear-gradient(135deg, rgba(15, 12, 41, 0.95) 0%, rgba(48, 43, 99, 0.95) 100%);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            padding: 30px;
            max-width: 450px;
            width: 90%;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .hwid-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .hwid-modal-close:hover {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
        }

        .hwid-modal-content input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
        }

        .hwid-modal-content button[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
        }

        .hwid-modal-content button[type="submit"]:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Lightbox Modal */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            justify-content: center;
            align-items: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: #fff;
            font-size: 2em;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10001;
        }

        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        /* Lightbox Navigation Buttons */
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: #fff;
            font-size: 2em;
            cursor: pointer;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10001;
        }

        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-nav.prev {
            left: 20px;
        }

        .lightbox-nav.next {
            right: 20px;
        }

        .lightbox-nav:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .lightbox-nav:disabled:hover {
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
        }


        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(15, 12, 41, 0.98);
            backdrop-filter: blur(10px);
            padding: 20px;
            z-index: 10000;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
            display: none;
            border-top: 2px solid rgba(255, 255, 255, 0.3);
        }

        .cookie-banner.show {
            display: block;
        }

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

        .cookie-text {
            flex: 1;
            color: #cbd5e0;
            font-size: 0.9em;
            line-height: 1.6;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-btn {
            padding: 10px 20px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.9em;
        }

        .cookie-accept {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
        }

        .cookie-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
        }

        .cookie-decline {
            background: rgba(255, 255, 255, 0.1);
            color: #cbd5e0;
        }

        .cookie-decline:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Floating contact buttons (WhatsApp & Telegram) */
        .floating-contact {
            position: fixed;
            right: 22px;
            bottom: 22px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 1200;
        }

        .floating-contact a {
            width: 60px;
            height: 60px;
            display: inline-block;
            text-decoration: none;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .floating-contact a:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
            opacity: 0.95;
        }

        @media (max-width: 768px) {
            .floating-contact {
                right: 16px;
                bottom: 16px;
            }

            .floating-contact a {
                width: 52px;
                height: 52px;
            }
        }


        .price-range span {
            font-size: 0.4em;
            color: #a0aec0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(15, 12, 41, 0.98);
                flex-direction: column;
                justify-content: flex-start;
                padding: 40px;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .mobile-menu {
                display: flex;
            }

            .hero h1 {
                font-size: 2em;
            }

            .hero p {
                font-size: 1em;
            }

            .section-title {
                font-size: 1.6em;
            }

            .pricing-grid, .macro-grid, .contact-grid {
                grid-template-columns: 1fr;
            }

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

            .video-tabs-container {
                flex-direction: column;
            }
            .video-tabs-list {
                flex: none;
                max-width: 100%;
                max-height: 260px;
                flex-direction: row;
                flex-wrap: wrap;
                overflow-x: auto;
                overflow-y: auto;
            }
            .video-tab {
                flex: 0 0 auto;
                min-width: 140px;
            }
            .video-tab-group {
                flex: 1 1 100%;
            }

            .price-table-container {
                overflow-x: auto;
                margin: 15px -10px;
            }

            .price-table {
                font-size: 0.85em;
            }

            .price-table th,
            .price-table td {
                padding: 8px 10px;
            }

            .table-title {
                font-size: 1.1em;
            }

            .image-gallery {
                grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
                gap: 8px;
            }

            .gallery-item {
                max-height: 60px;
            }

            .gallery-item img {
                max-height: 60px;
            }

            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 1.5em;
            }

            .lightbox-nav.prev {
                left: 10px;
            }

            .lightbox-nav.next {
                right: 10px;
            }

            .language-selector {
                margin-top: 20px;
            }

            .lang-btn {
                font-size: 0.85em;
                padding: 6px 12px;
            }

            .image-gallery {
                grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
                gap: 8px;
            }

            .gallery-item {
                max-height: 60px;
            }

            .gallery-item img {
                max-height: 60px;
            }

            .lightbox-content {
                max-width: 95%;
                max-height: 95%;
            }

            .services-grid {
                grid-template-columns: 1fr !important;
            }

            .service-card {
                padding: 20px !important;
            }

            .free-badge {
                font-size: 0.6em;
                top: -18px;
            }

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

            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }

            .cookie-btn {
                flex: 1;
                max-width: 150px;
            }

            .tab-btn-wrapper {
                margin-top: 20px;
            }
        }

        /* Nav dropdown - Ürünler */
        .nav-item-dropdown { position: relative; }
        .nav-item-dropdown > a { cursor: default; }
        .nav-dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 8px;
            min-width: 220px;
            background: rgba(15, 12, 41, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 12px;
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
            transform: translateX(-50%) translateY(6px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
            z-index: 1100;
        }
        .nav-item-dropdown:hover .nav-dropdown,
        .nav-item-dropdown:focus-within .nav-dropdown,
        .nav-item-dropdown.open .nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        .nav-dropdown a {
            display: block;
            padding: 10px 18px;
            color: #e2e8f0;
            text-decoration: none;
            font-size: 0.92em;
            transition: background 0.2s;
        }
        .nav-dropdown a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }
        .nav-dropdown .dropdown-badge {
            float: right;
            font-size: 0.7em;
            color: #ef4444;
            font-weight: 700;
        }

        /* Ürün sayfası hero */
        .product-hero {
            padding: 100px 20px 40px;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        .product-hero h1 { font-size: 2.2em; margin-bottom: 12px; }
        .product-hero .product-price-inline {
            font-size: 1.8em;
            margin: 16px 0;
        }
        .product-nav-breadcrumb {
            font-size: 0.85em;
            color: #a0aec0;
            margin-bottom: 20px;
        }
        .product-nav-breadcrumb a { color: #667eea; text-decoration: none; }
        /* Ana sayfa ürün kartları: extras-multipage.css (body.home-page) */

        /* Sohbet widget — ayrıntılar extras-multipage.css içinde */
        @media (max-width: 768px) {
            .nav-item-dropdown .nav-dropdown {
                position: static; transform: none; opacity: 1; visibility: visible;
                display: none; margin: 8px 0 0 16px; box-shadow: none;
                border: none; background: transparent; padding: 0;
            }
            .nav-item-dropdown.open .nav-dropdown { display: block; }
        }

        /* Ürün sayfası düzeni: extras-multipage.css (body.product-page) */

