@import "tailwindcss";
@source "./index.html";
@source "./noor.js";

/* Alt tarafta senin diğer eski CSS kodların aynı şekilde kalacak... */
:root {
    --font-en: 'Inter', sans-serif;
    --font-ar: 'Noto Sans Arabic', sans-serif; 
    --brand-blue: #2563eb;
}

body {
    font-family: var(--font-en);
    background-color: #ffffff;
    color: #111;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =========================================
--- RTL & LTR SUPPORT ---
========================================= */
body.rtl {
    direction: rtl;
    font-family: var(--font-ar);
    text-align: right;
}

.force-ltr-font {
    font-family: var(--font-en) !important;
    direction: ltr !important;
    unicode-bidi: embed;
}

.font-arabic {
    font-family: var(--font-ar) !important;
}

/* =========================================
--- SAYFA GEÇİŞ ANİMASYONLARI ---
========================================= */
.page-section {
    display: none;
    opacity: 0;
    will-change: opacity;
}

.page-section.active {
    display: block;
    animation: proReveal 0.4s ease-out forwards; 
}

@keyframes proReveal {
    0% { 
        opacity: 0; 
        transform: translateY(15px);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* =========================================
--- BİLGİSAYAR ALT BAŞLIK STANDARTLAŞTIRMASI ---
========================================= */
p[data-i18n="computer_desc"],
#comp_second_hand p,
.apple-subtext {
    position: relative !important;
    z-index: 10 !important;
    color: #d1d5db !important;
    font-weight: 500 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    font-size: 1rem !important;
    text-align: center !important;
    max-width: 36rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    line-height: 1.6 !important;
}

@media (min-width: 768px) {
    p[data-i18n="computer_desc"],
    #comp_second_hand p,
    .apple-subtext {
        font-size: 1.125rem !important; 
    }
}

/* =========================================
--- BUTON STİLLERİ ---
========================================= */
.btn-special {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 18px 30px;
    background-color: #ffffff;
    color: #000000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-radius: 50px;
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); 
    z-index: 10;
    width: 100%;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .btn-special {
        padding: 18px 50px;
        width: auto;
    }
}

.btn-special:hover, .btn-special:active {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px); 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-special-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: none;
    backdrop-filter: blur(5px);
}

.btn-special-outline:hover, .btn-special-outline:active {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
}

.btn-form {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-form:hover, .btn-form:active {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
}

.btn-back-black {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-back-black:hover {
    background-color: #ffffff;
    color: #000000;
}

/* =========================================
--- DİL SEÇİM DROPDOWN MENU ---
========================================= */
.dropdown-menu {
    transform-origin: top right;
    transition: all 0.2s ease-in-out;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    display: none;
    z-index: 9999;
}

.dropdown-menu.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    display: block;
}

body.rtl .dropdown-menu {
    transform-origin: top left;
}

/* =========================================
--- LOGO ANİMASYONLARI ---
========================================= */
.img-glow:hover {
    box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.5);
}

@keyframes legendaryPulse {
    0% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.5); transform: translateY(-4px) scale(1.02); }
    100% { box-shadow: 0 0 60px rgba(37, 99, 235, 0.9), 0 0 100px rgba(37, 99, 235, 0.4); transform: translateY(-8px) scale(1.05); }
}

.logo-legendary:hover {
    animation: legendaryPulse 1.0s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 50;
}

/* =========================================
--- PRO FEATURE CARDS (Ana Sayfa Özellikler) ---
========================================= */
.feature-card-pro {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 1px solid #f3f4f6;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .feature-card-pro {
        padding: 3rem 2rem;
    }
}

.feature-card-pro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-pro.blue-theme:hover::before { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); }
.feature-card-pro.purple-theme:hover::before { background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%); }
.feature-card-pro.green-theme:hover::before { background: linear-gradient(135deg, #16a34a 0%, #15803d 100%); }

.feature-card-pro:hover, .feature-card-pro:active {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}
.feature-card-pro:hover::before { opacity: 1; }

.feature-card-pro h3, .feature-card-pro p, .feature-card-pro svg { transition: all 0.4s ease; }
.feature-card-pro:hover h3 { color: #ffffff !important; }
.feature-card-pro:hover p { color: rgba(255, 255, 255, 0.9) !important; }

.feature-card-pro .icon-container {
    transition: all 0.4s ease;
    background-color: #f8fafc;
}

.feature-card-pro:hover .icon-container { 
    background-color: rgba(255, 255, 255, 0.2); 
    transform: scale(1.1) rotate(-3deg);
}

.feature-card-pro:hover svg { color: #ffffff !important; }

.feature-card-pro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.feature-card-pro.blue-theme::after { background-color: #2563eb; }
.feature-card-pro.purple-theme::after { background-color: #9333ea; }
.feature-card-pro.green-theme::after { background-color: #16a34a; }

.feature-card-pro:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    background-color: white; 
}

/* =========================================
--- KATEGORİ KARTLARI ---
========================================= */
.team-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 25px 15px; 
    width: 100%;
    max-width: 240px; 
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04); 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
    border: 1px solid transparent; 
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    border-color: #2563eb;
}

.team-card-img-wrapper {
    width: 100%;
    height: 140px; 
    margin: 0 auto 15px auto;
    border-radius: 10px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card:hover .team-card-img-wrapper {
    transform: scale(1.05); 
}

.team-card-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.team-card-title {
    font-size: 1.1rem; 
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0;
}

/* =========================================
--- 3D DÖNEN (FLIP) ALT ÜRÜN KARTLARI ---
========================================= */
.sub-product-card {
    background-color: transparent;
    width: 100%;
    max-width: 100%;
    height: 300px;
    perspective: 1000px;
    cursor: pointer;
    display: block;
}

.sub-product-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.sub-product-card.flipped .sub-product-card-inner {
    transform: rotateY(180deg);
}

.sub-product-card-front, .sub-product-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* ÖN YÜZ */
.sub-product-card-front {
    background-color: #ffffff;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sub-product-card:hover .sub-product-card-front {
    border-color: #2563eb;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.12);
}

.sub-product-card-img-wrapper {
    width: 100%;
    height: 140px;
    margin-bottom: 10px;
    background-color: transparent; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-product-card-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.sub-product-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
}

/* ARKA YÜZ */
.sub-product-card-back {
    background-color: #2d1b4e;
    color: white;
    transform: rotateY(180deg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.sub-product-card-back h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #60a5fa;
    text-align: center;
    width: 100%;
}

.sub-product-card-back ul {
    text-align: left;
    font-size: 0.85rem;
    line-height: 1.6;
    list-style-type: none;
    padding: 0;
    margin: 0 0 10px 0;
    width: 100%;
    flex-grow: 1;
}

.sub-product-card-back ul li::before {
    content: "✓ ";
    color: #60a5fa;
    font-weight: bold;
    margin-right: 5px;
}

/* =========================================
--- COOLER PAD ANİMASYONLARI ---
========================================= */
#comp_cooler_pad section:first-of-type {
    position: relative;
    background: #000000 !important; 
    overflow: hidden;
}

.fan-blade {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: conic-gradient(from 0deg at 50% 50%, rgba(37, 99, 235, 0) 0%, rgba(37, 99, 235, 0.9) 20%, transparent 40%, rgba(59, 130, 246, 0.9) 60%, transparent 100%);
    animation: spinFan 1.2s linear infinite;
    filter: blur(6px);
    position: absolute;
    opacity: 0.8;
    box-shadow: 0 0 80px rgba(37, 99, 235, 0.4);
}

.fan-blade:nth-of-type(1) { left: 5%; top: 15%; }
.fan-blade:nth-of-type(2) { left: 40%; top: 5%; animation-duration: 0.8s; }
.fan-blade:nth-of-type(3) { right: 5%; top: 15%; animation-direction: reverse; }

@keyframes spinFan {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cooler-wind {
    position: absolute;
    width: 120%;
    height: 300px;
    background: linear-gradient(to top, transparent, rgba(147, 197, 253, 0.15), transparent);
    bottom: -300px;
    animation: riseWind 3s infinite ease-out;
    pointer-events: none;
    z-index: 1;
}

.delay-1 { animation-delay: 1s; left: 10%; }
.delay-2 { animation-delay: 2s; right: 10%; }

@keyframes riseWind {
    0% { transform: translateY(0) scaleX(1); opacity: 0; }
    40% { opacity: 0.7; }
    100% { transform: translateY(-1000px) scaleX(2); opacity: 0; }
}

#comp_cooler_pad h2 {
    text-shadow: 0 0 30px rgba(59, 130, 246, 1), 0 0 60px rgba(37, 99, 235, 0.6);
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .hide-mobile { display: none; }
    .fan-blade { width: 160px; height: 160px; opacity: 0.6; }
}

/* =========================================
--- İKİNCİ EL BİLGİSAYAR - MEKANİK ÇARK ---
========================================= */
#comp_second_hand section:first-of-type {
    background: #0a0a0a !important;
    position: relative;
    overflow: hidden;
}

#comp_second_hand h2 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.digital-grid {
    position: absolute;
    width: 350px; height: 350px;
    border: 30px dashed rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    top: -150px; right: -100px;
    animation: cark-don-sag 25s linear infinite;
    z-index: 1;
}

.digital-grid::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 20px dashed rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    animation: cark-don-sol 15s linear infinite;
}

.scan-bar-1 {
    position: absolute;
    width: 200px; height: 200px;
    border: 20px dashed rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    bottom: -80px; left: -50px;
    animation: cark-don-sol 20s linear infinite;
    z-index: 1;
}

.scan-bar-2 {
    position: absolute;
    bottom: 0; left: -10%;
    width: 120%; height: 3px;
    background: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
    animation: asansor-tarama 6s ease-in-out infinite alternate;
    z-index: 2;
}

@keyframes cark-don-sag { 100% { transform: rotate(360deg); } }
@keyframes cark-don-sol { 100% { transform: rotate(-360deg); } }
@keyframes asansor-tarama { 0% { transform: translateY(50px); } 100% { transform: translateY(-250px); } }

/* =========================================
--- SIFIR BİLGİSAYAR - 3D KUTU/KAPAK ---
========================================= */
#comp_new_laptop section:first-of-type {
    position: relative;
    overflow: hidden;
    background: #000 !important;
    perspective: 1500px; 
    z-index: 0;
}

#comp_new_laptop section:first-of-type::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a192f 0%, #020c1b 100%);
    z-index: 5;
    transform-origin: top; 
    animation: unboxing-lid 8s infinite ease-in-out;
    border-bottom: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

#comp_new_laptop section:first-of-type::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, #2563eb, transparent 70%);
    opacity: 0;
    z-index: 1;
    animation: unboxing-light-leak 8s infinite ease-in-out;
}

#comp_new_laptop section:first-of-type h2,
#comp_new_laptop section:first-of-type button {
    position: relative;
    z-index: 10;
    transition: all 0.5s ease;
}

#comp_new_laptop section:first-of-type h2 {
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
}

@keyframes unboxing-lid {
    0%, 15% { transform: rotateX(0deg); opacity: 1; }
    40%, 75% { transform: rotateX(-115deg) translateY(-50px); opacity: 0.1; }
    100% { transform: rotateX(0deg); opacity: 1; }
}

@keyframes unboxing-light-leak {
    0%, 20% { opacity: 0; transform: scale(0.8); }
    45%, 70% { opacity: 0.8; transform: scale(1.3); }
    100% { opacity: 0; transform: scale(0.8); }
}

/* =========================================
--- DELL TECH CORE ANIMATION ---
========================================= */
#comp_sh_dell section:first-of-type {
    background: radial-gradient(circle at center, #0a192f 0%, #000000 80%) !important;
    position: relative;
    overflow: hidden;
}

#comp_sh_dell section:first-of-type::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

.dell-super-container {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem auto;
    perspective: 1000px;
    z-index: 2;
}

.dell-super-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400%;
    height: 400%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.5;
    animation: massiveAmbientPulse 5s ease-in-out infinite alternate;
    z-index: -1;
    pointer-events: none;
}

.dell-ring-outer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--brand-blue);
    border-right-color: var(--brand-blue);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.6), inset 0 0 10px rgba(37, 99, 235, 0.3);
    animation: reactorSpin 8s linear infinite;
    z-index: 2;
}

.dell-ring-inner {
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    animation: reactorSpin 12s linear infinite reverse; 
    opacity: 0.7;
    z-index: 2;
}

.dell-core-glow {
    position: absolute;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, var(--brand-blue) 0%, transparent 70%);
    filter: blur(12px);
    opacity: 0.8;
    animation: corePulse 3s ease-in-out infinite alternate;
    z-index: 1;
}

.dell-super-text {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 10;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(37, 99, 235, 1);
}

.letter-e-super {
    display: inline-block;
    transform: rotate(-15deg) translateY(2px); 
    transition: all 0.4s ease; 
}

.dell-super-container:hover .dell-ring-outer {
    animation-duration: 3s;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.9), inset 0 0 20px rgba(37, 99, 235, 0.6);
    border-color: #60a5fa; 
}

.dell-super-container:hover .dell-ring-inner {
    animation-duration: 5s;
    border-color: #ffffff;
    opacity: 1;
}

.dell-super-container:hover .dell-core-glow {
    filter: blur(10px);
    opacity: 1;
    transform: scale(1.2);
}

.dell-super-container:hover .letter-e-super {
    transform: rotate(0deg) translateY(0) scale(1.1);
    color: var(--brand-blue);
    text-shadow: 0 0 20px #ffffff;
}

@keyframes reactorSpin { to { transform: rotate(360deg); } }
@keyframes corePulse { 0% { transform: scale(0.9); opacity: 0.6; } 100% { transform: scale(1.1); opacity: 0.9; } }
@keyframes massiveAmbientPulse { 0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); } 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); } }

/* =========================================
--- LENOVO CYBER/GLITCH ANIMATION ---
========================================= */
#comp_sh_lenovo section:first-of-type {
    background: radial-gradient(circle at 50% 0%, #1a0505 0%, #000000 80%) !important;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

#comp_sh_lenovo section:first-of-type::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(45deg, rgba(226, 35, 26, 0.04) 25%, transparent 25%, transparent 50%, rgba(226, 35, 26, 0.04) 50%, rgba(226, 35, 26, 0.04) 75%, transparent 75%, transparent);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
}

.lenovo-brand-stage {
    position: relative;
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem auto;
    z-index: 10;
}

.lenovo-laser {
    position: absolute;
    top: 50%;
    left: -100%;
    width: 200%;
    height: 2px;
    background: #e2231a;
    box-shadow: 0 0 20px 4px rgba(226, 35, 26, 0.8);
    transform: translateY(-50%);
    animation: laserScan 3.5s infinite cubic-bezier(0.7, 0, 0.3, 1);
    z-index: 20;
    opacity: 0;
    pointer-events: none;
}

@keyframes laserScan {
    0% { left: -100%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.lenovo-think-dot {
    position: absolute;
    top: 20px;
    right: 50%;
    margin-right: -130px; 
    width: 14px;
    height: 14px;
    background: #e2231a;
    border-radius: 50%;
    box-shadow: 0 0 15px #e2231a, inset 0 -3px 5px rgba(0,0,0,0.4);
    animation: dotPulse 2s infinite alternate;
    z-index: 15;
}

@keyframes dotPulse {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(226, 35, 26, 0.4); }
    100% { transform: scale(1.3); box-shadow: 0 0 25px rgba(226, 35, 26, 1), 0 0 40px rgba(226, 35, 26, 0.6); }
}

.lenovo-title-wrapper {
    position: relative;
    z-index: 5;
    text-align: center;
}

.lenovo-modern-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    letter-spacing: 6px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.5s ease;
}

.lenovo-modern-text::before,
.lenovo-modern-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0.8;
}

.lenovo-modern-text::before {
    left: 3px;
    text-shadow: -2px 0 #e2231a;
    clip: rect(24px, 550px, 90px, 0);
    animation: lenovoGlitch 3s infinite linear alternate-reverse;
}

.lenovo-modern-text::after {
    left: -3px;
    text-shadow: -2px 0 rgba(37, 99, 235, 0.6);
    clip: rect(85px, 550px, 140px, 0);
    animation: lenovoGlitch 2.5s infinite linear alternate-reverse;
}

@keyframes lenovoGlitch {
    0% { clip: rect(10px, 9999px, 44px, 0); transform: skew(0.2deg); }
    20% { clip: rect(65px, 9999px, 99px, 0); transform: skew(0.5deg); }
    40% { clip: rect(23px, 9999px, 12px, 0); transform: skew(0.1deg); }
    60% { clip: rect(89px, 9999px, 78px, 0); transform: skew(0.8deg); }
    80% { clip: rect(12px, 9999px, 56px, 0); transform: skew(0.3deg); }
    100% { clip: rect(45px, 9999px, 23px, 0); transform: skew(0deg); }
}

.lenovo-sharp-line {
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e2231a, transparent);
    margin: 5px auto 0 auto;
    box-shadow: 0 0 10px #e2231a;
    animation: expandLenovoLine 1.5s forwards cubic-bezier(0.8, 0, 0.2, 1) 0.5s;
}

@keyframes expandLenovoLine { to { width: 130%; } }

.lenovo-brand-stage:hover .lenovo-laser { animation-duration: 1.5s; }
.lenovo-brand-stage:hover .lenovo-modern-text { letter-spacing: 12px; color: #f8f9fc; text-shadow: 0 0 20px rgba(226, 35, 26, 0.5); }
.lenovo-brand-stage:hover .lenovo-think-dot { background: #ffffff; box-shadow: 0 0 20px #ffffff, 0 0 50px #e2231a; }

/* =========================================
--- HP PREMIUM CORPORATE ANIMATION ---
========================================= */
#comp_sh_hp section:first-of-type {
    background: radial-gradient(circle at center, #1a2530 0%, #020508 100%) !important;
    position: relative;
    overflow: hidden;
}

#comp_sh_hp section:first-of-type::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 2px,
        transparent 2px,
        transparent 4px
    );
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay; 
}

.hp-premium-stage {
    position: relative;
    width: 250px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    z-index: 10;
}

.hp-ambient-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(0, 150, 214, 0.15) 0%, transparent 70%);
    filter: blur(20px);
    animation: hpGentleBreathe 4s ease-in-out infinite alternate;
    z-index: 2;
}

@keyframes hpGentleBreathe {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hp-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.hp-slash {
    width: 4px;
    height: 80px;
    background: linear-gradient(to bottom, #ffffff, #0096d6);
    border-radius: 2px;
    transform: skewX(-20deg);
    opacity: 0;
    box-shadow: 0 0 10px rgba(0, 150, 214, 0.3);
}

.hp-slash-left {
    margin-right: 15px;
    animation: hpSlideInLeft 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hp-slash-right {
    margin-left: 15px;
    animation: hpSlideInRight 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.3s;
}

@keyframes hpSlideInLeft {
    0% { transform: skewX(-20deg) translateY(50px); opacity: 0; }
    100% { transform: skewX(-20deg) translateY(0); opacity: 1; }
}

@keyframes hpSlideInRight {
    0% { transform: skewX(-20deg) translateY(-50px); opacity: 0; }
    100% { transform: skewX(-20deg) translateY(0); opacity: 1; }
}

.hp-elegant-text {
    font-family: 'Times New Roman', serif;
    font-size: 5rem;
    font-style: italic;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    opacity: 0;
    transform: scale(0.9);
    animation: hpTextFadeIn 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.5s;
}

@keyframes hpTextFadeIn { to { opacity: 1; transform: scale(1); } }

.hp-chrome-reflection {
    position: absolute;
    bottom: -10px;
    width: 150%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), rgba(0, 150, 214, 0.6), rgba(255,255,255,0.4), transparent);
    box-shadow: 0 5px 15px rgba(0, 150, 214, 0.2);
    opacity: 0;
    animation: hpReflectShow 2s ease forwards 1s;
}

@keyframes hpReflectShow { to { opacity: 1; bottom: 10px; } }

.hp-premium-stage:hover .hp-slash {
    background: #0096d6;
    box-shadow: 0 0 15px rgba(0, 150, 214, 0.6);
    transform: skewX(-20deg) scaleY(1.1);
    transition: all 0.4s ease;
}

.hp-premium-stage:hover .hp-elegant-text {
    color: #f0f9ff;
    text-shadow: 0 0 20px rgba(0, 150, 214, 0.4);
    transition: all 0.4s ease;
}

.hp-premium-stage:hover .hp-chrome-reflection {
    height: 2px;
    box-shadow: 0 5px 25px rgba(0, 150, 214, 0.5);
    transition: all 0.4s ease;
}

/* =========================================
--- MICROSOFT SURFACE FLUENT ANIMATION ---
========================================= */
#comp_sh_surface section:first-of-type {
    background: radial-gradient(circle at top, #1a1a24 0%, #050505 100%) !important;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.surface-fluent-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    z-index: 10;
    width: 100%;
    height: 220px;
}

.surface-ambient-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 164, 239, 0.15) 0%, rgba(127, 186, 0, 0.1) 40%, transparent 70%);
    filter: blur(40px);
    animation: surfaceBreathe 5s infinite alternate ease-in-out;
    z-index: 1;
}

@keyframes surfaceBreathe {
    0% { transform: scale(0.8) translateY(20px); opacity: 0.5; }
    100% { transform: scale(1.1) translateY(-20px); opacity: 1; }
}

.surface-logo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 6px;
    width: 64px;
    height: 64px;
    margin-bottom: 25px;
    position: relative;
    z-index: 10;
    transform: rotateX(15deg) rotateY(-10deg);
    transform-style: preserve-3d;
}

.surface-pane {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    opacity: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3), inset 0 0 10px rgba(255,255,255,0.2);
}

.pane-red { background: #f25022; animation: paneFlyIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.1s; transform-origin: bottom right; }
.pane-green { background: #7fba00; animation: paneFlyIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.3s; transform-origin: bottom left; }
.pane-blue { background: #00a4ef; animation: paneFlyIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.5s; transform-origin: top right; }
.pane-yellow { background: #ffb900; animation: paneFlyIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.7s; transform-origin: top left; }

@keyframes paneFlyIn {
    0% { transform: translateZ(100px) scale(0.5); opacity: 0; }
    100% { transform: translateZ(0) scale(1); opacity: 1; }
}

.surface-elegant-text {
    font-family: 'Segoe UI', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 300; 
    color: #ffffff;
    letter-spacing: 2px;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: surfaceTextUp 1s ease forwards 1s;
    z-index: 10;
}

.surface-elegant-text strong {
    font-weight: 600;
}

@keyframes surfaceTextUp {
    to { opacity: 1; transform: translateY(0); }
}

.surface-glass-shelf {
    position: absolute;
    bottom: 10px;
    width: 250px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotateX(75deg);
    box-shadow: 0 -10px 20px rgba(0, 164, 239, 0.1);
    opacity: 0;
    animation: surfaceShelfFade 1.5s ease forwards 1.2s;
}

@keyframes surfaceShelfFade {
    to { opacity: 1; }
}

.surface-fluent-stage:hover .surface-logo-grid {
    transform: rotateX(0deg) rotateY(0deg) scale(1.1);
    gap: 12px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.surface-fluent-stage:hover .surface-pane {
    box-shadow: 0 10px 20px rgba(0,0,0,0.5), inset 0 0 15px rgba(255,255,255,0.4);
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.surface-fluent-stage:hover .pane-red { box-shadow: 0 0 20px rgba(242, 80, 34, 0.6); }
.surface-fluent-stage:hover .pane-green { box-shadow: 0 0 20px rgba(127, 186, 0, 0.6); }
.surface-fluent-stage:hover .pane-blue { box-shadow: 0 0 20px rgba(0, 164, 239, 0.6); }
.surface-fluent-stage:hover .pane-yellow { box-shadow: 0 0 20px rgba(255, 185, 0, 0.6); }

.surface-fluent-stage:hover .surface-elegant-text {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    transition: all 0.5s ease;
}

.surface-fluent-stage:not(:hover) .surface-logo-grid,
.surface-fluent-stage:not(:hover) .surface-pane,
.surface-fluent-stage:not(:hover) .surface-elegant-text {
    transition: all 0.5s ease; 
}

/* =========================================
--- APPLE ULTRA STAGE ---
========================================= */
.apple-ultra-stage {
    background: #000000;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
}

.apple-fluid-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, #1a1a1a 0%, #000000 100%);
    z-index: 1;
}

.apple-luxury-wrapper {
    position: relative;
    z-index: 10;
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.apple-pro-card {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    animation: appleFloat 5s ease-in-out infinite;
    overflow: hidden;
}

.card-shimmer-sweep {
    position: absolute;
    inset: -100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 45%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.05) 55%,
        transparent 100%
    );
    animation: shimmerSweep 8s infinite linear;
}

.apple-logo-svg {
    width: 80px;
    color: #ffffff;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
    z-index: 2;
}

.apple-branding {
    text-align: center;
    margin-top: 40px;
}

.apple-title-new {
    font-size: 3rem;
    font-weight: 200;
    color: #ffffff;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin: 0;
}

.apple-title-new span {
    font-weight: 700;
    background: linear-gradient(180deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.apple-glow-line {
    width: 60px;
    height: 2px;
    background: #ffffff;
    margin: 15px auto;
    box-shadow: 0 0 15px #fff;
    opacity: 0.5;
}

.apple-btn-premium {
    margin-top: 30px;
    padding: 12px 35px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 50px;
    color: #eee;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.apple-btn-premium:hover {
    background: #ffffff;
    color: #000;
    border-color: #ffffff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

@keyframes appleFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-20px) rotateX(5deg); }
}

@keyframes shimmerSweep {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(50%, 50%) rotate(0deg); }
}

@media (max-width: 768px) {
    .apple-title-new { font-size: 2rem; letter-spacing: 4px; }
    .apple-pro-card { width: 140px; height: 140px; }
}

/* =========================================
   KURUMSAL HOLOGRAPHIC TECH KULE - V3
   ========================================= */
.case-holo-stage {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
    margin: 0 auto;
}

.case-holo-tower {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: rotateX(55deg) rotateY(-25deg);
    animation: floatTowerV3 8s ease-in-out infinite alternate;
}

/* === ARKA PLAN IŞIĞI === */
.halo-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 400px; height: 400px;
    margin: -200px 0 0 -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    transform: rotateY(15deg) rotateX(-55deg);
    animation: haloPulseV3 5s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes haloPulseV3 {
    0% { opacity: 0.4; transform: rotateY(15deg) rotateX(-55deg) scale(0.8); }
    100% { opacity: 1; transform: rotateY(15deg) rotateX(-55deg) scale(1.3); }
}

/* === TARAMA DALGASI === */
.holo-scanner {
    position: absolute;
    top: 50%; left: 50%;
    width: 120px; height: 120px;
    margin: -60px 0 0 -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    transform: rotateY(15deg) rotateX(-55deg);
    animation: scannerWaveV3 4s ease-out infinite;
    z-index: 3;
}

@keyframes scannerWaveV3 {
    0% { transform: rotateY(15deg) rotateX(-55deg) scale(0.3); opacity: 0.8; }
    100% { transform: rotateY(15deg) rotateX(-55deg) scale(3.5); opacity: 0; }
}

/* === MERKEZ LOGO === */
.holo-core-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 140px;
    height: 140px;
    margin: -70px 0 0 -70px;
    background: radial-gradient(circle at 40% 30%, #0f1a2e, #050a15);
    border: 2px solid rgba(37, 99, 235, 0.5);
    border-radius: 24px;
    box-shadow: 
        0 0 50px rgba(37, 99, 235, 0.2),
        inset 0 0 60px rgba(37, 99, 235, 0.08),
        0 0 100px rgba(37, 99, 235, 0.1);
    transform: rotateY(15deg) rotateX(-55deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
}

.holo-core-glow::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), transparent 50%, rgba(37, 99, 235, 0.06));
    pointer-events: none;
}

/* Logo Yazıları */
.holo-core-glow .core-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: 4px;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(37, 99, 235, 0.6), 0 0 60px rgba(37, 99, 235, 0.3);
    z-index: 1;
    line-height: 1;
}

.holo-core-glow .core-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 6px;
    color: #60a5fa;
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
    z-index: 1;
    margin-top: -2px;
}

.holo-core-glow .core-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    margin: 6px 0;
    z-index: 1;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.holo-core-glow .core-tag {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.5rem;
    letter-spacing: 4px;
    color: #94a3b8;
    background: rgba(37, 99, 235, 0.1);
    padding: 3px 14px;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    z-index: 1;
}

/* === YÖRÜNGE HALKALARI === */
.holo-face {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    transform-style: preserve-3d;
    box-sizing: border-box;
}

/* Halka 1 - Ana Mavi */
.face-ring-1 {
    width: 180px; height: 180px; margin: -90px 0 0 -90px;
    border: 2px solid transparent;
    border-top: 3px solid #3b82f6;
    border-bottom: 3px solid #3b82f6;
    animation: spinOrbitV3 5s linear infinite;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

/* Halka 2 - Mor (Ters Dönen) */
.face-ring-2 {
    width: 220px; height: 220px; margin: -110px 0 0 -110px;
    border: 2px dashed rgba(139, 92, 246, 0.4);
    animation: spinReverseV3 7s linear infinite;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.2));
}

/* Halka 3 - Altın (İnce) */
.face-ring-3 {
    width: 260px; height: 260px; margin: -130px 0 0 -130px;
    border: 1.5px solid transparent;
    border-left: 2px solid rgba(251, 191, 36, 0.4);
    border-right: 2px solid rgba(251, 191, 36, 0.4);
    animation: spinOrbitV3 9s linear infinite;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.15));
}

/* Halka 4 - Cyan (Noktalı) */
.face-ring-4 {
    width: 300px; height: 300px; margin: -150px 0 0 -150px;
    border: 1px dotted rgba(34, 211, 238, 0.25);
    animation: spinReverseV3 12s linear infinite;
}

@keyframes spinOrbitV3 { 100% { transform: rotateZ(360deg); } }
@keyframes spinReverseV3 { 100% { transform: rotateZ(-360deg); } }

/* === VERİ AKIŞI PARÇACIKLARI === */
.data-particles {
    position: absolute;
    top: 50%; left: 50%;
    width: 1px; height: 1px;
    transform: rotateY(15deg) rotateX(-55deg);
    z-index: 4;
}

.particle {
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
    animation: particleFlowV3 3s linear infinite;
}

.p1 { top: -60px; left: -60px; animation-delay: 0s; }
.p2 { top: -80px; left: 20px; animation-delay: 0.5s; background: #8b5cf6; }
.p3 { top: -40px; left: 80px; animation-delay: 1s; background: #fbbf24; }
.p4 { top: 30px; left: 90px; animation-delay: 1.5s; }
.p5 { top: 80px; left: 50px; animation-delay: 2s; background: #8b5cf6; }
.p6 { top: 70px; left: -50px; animation-delay: 2.5s; background: #fbbf24; }
.p7 { top: 20px; left: -80px; animation-delay: 0.3s; }
.p8 { top: -20px; left: -90px; animation-delay: 0.8s; background: #8b5cf6; }

@keyframes particleFlowV3 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(20px, -30px) scale(1.5); opacity: 1; }
    100% { transform: translate(-10px, -60px) scale(0.5); opacity: 0; }
}

/* === HOVER EFEKTİ === */
.case-holo-tower:hover .holo-core-glow {
    box-shadow: 
        0 0 80px rgba(37, 99, 235, 0.4),
        inset 0 0 80px rgba(37, 99, 235, 0.15),
        0 0 150px rgba(37, 99, 235, 0.2);
    transform: rotateY(15deg) rotateX(-55deg) scale(1.05);
    border-color: #60a5fa;
}

.case-holo-tower:hover .holo-core-glow .core-logo {
    color: #ffffff;
    text-shadow: 0 0 50px rgba(37, 99, 235, 0.8), 0 0 100px rgba(37, 99, 235, 0.4);
}

.case-holo-tower:hover .face-ring-1 {
    border-top-color: #60a5fa;
    border-bottom-color: #60a5fa;
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.5));
}

.case-holo-tower:hover .face-ring-2 {
    border-color: rgba(139, 92, 246, 0.7);
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.3));
}

/* === ANİMASYONLAR === */
@keyframes floatTowerV3 {
    0% { transform: rotateX(55deg) rotateY(-25deg) translateZ(5px) translateY(0); }
    100% { transform: rotateX(55deg) rotateY(-25deg) translateZ(-5px) translateY(-12px); }
}

/* === MOBİL === */
@media (max-width: 768px) {
    .case-holo-stage { transform: scale(0.5); margin-top: -20px; }
}

/* SCROLL REVEAL EFEKTİ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* =========================================
--- TYPEWRITER (DAKTİLO) İMLEÇ EFEKTİ ---
========================================= */
.typewriter-cursor {
    display: inline-block;
    width: 3px; 
    height: 1.2em;
    background-color: #3b82f6; 
    margin-left: 6px;
    vertical-align: text-bottom;
    border-radius: 4px; 
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.8), 0 0 15px rgba(59, 130, 246, 0.4);
    animation: smoothBlink 1.2s ease-in-out infinite;
}

@keyframes smoothBlink {
    0%, 100% { 
        opacity: 1; 
        transform: scaleY(1); 
        filter: brightness(1.2); 
    }
    50% { 
        opacity: 0.4; 
        transform: scaleY(0.9); 
        filter: brightness(0.8); 
    }
}

/* =========================================
--- MOBİL UYUMLULUK VE APP HİSSİYATI ---
========================================= */
html, body {
    overflow-x: hidden !important; 
    width: 100%;
    max-width: 100vw;
    -webkit-overflow-scrolling: touch; 
    -webkit-text-size-adjust: 100%; 
}

a, button, div[onclick], .team-card, .sub-product-card {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    touch-action: manipulation; 
}

#typewriter-text {
    word-break: break-word; 
}

/* =========================================
--- PREMIUM & GERÇEKÇİ DARK MODE STİLLERİ ---
========================================= */
body.dark-theme {
    background: radial-gradient(circle at 50% 0%, #111827 0%, #030712 100%) !important;
    color: #f8fafc !important;
}

body.dark-theme header, 
body.dark-theme #mobile-menu,
body.dark-theme .dropdown-menu {
    background-color: rgba(3, 7, 18, 0.65) !important;
    backdrop-filter: blur(24px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8) !important;
}

body.dark-theme .bg-white,
body.dark-theme .bg-gray-50,
body.dark-theme .bg-\[\#f8f9fc\],
body.dark-theme .sub-product-card-front,
body.dark-theme .feature-card-pro {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

body.dark-theme .text-slate-800,
body.dark-theme .text-gray-800,
body.dark-theme .text-slate-900,
body.dark-theme .team-card-title,
body.dark-theme .sub-product-card-title {
    color: #f1f5f9 !important;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.05); 
}

body.dark-theme .text-gray-500,
body.dark-theme .text-gray-400 {
    color: #94a3b8 !important;
}

body.dark-theme .team-card:hover,
body.dark-theme .sub-product-card-front:hover,
body.dark-theme .feature-card-pro:hover {
    border-color: rgba(59, 130, 246, 0.3) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(37, 99, 235, 0.15) !important;
    transform: translateY(-6px);
}

body.dark-theme button svg {
    color: #cbd5e1 !important;
}

/* =========================================
   TÜM KARTLARDA ARKA YÜZ İÇİN DİKEY KAYDIRMA
   ========================================= */
.sub-product-card-back ul {
    max-height: 140px;
    overflow-y: auto;
    padding-right: 8px;
    margin-bottom: 12px;
}

/* Scrollbar stilleri - Webkit tarayıcılar (Chrome, Edge, Safari) */
.sub-product-card-back ul::-webkit-scrollbar {
    width: 5px;
}

.sub-product-card-back ul::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.sub-product-card-back ul::-webkit-scrollbar-thumb {
    background: #60a5fa;
    border-radius: 10px;
}

.sub-product-card-back ul::-webkit-scrollbar-thumb:hover {
    background: #3b82f6;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .sub-product-card-back ul {
        max-height: 120px;
    }
}

/* Dark mode uyumu */
body.dark-theme .sub-product-card-back ul::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

body.dark-theme .sub-product-card-back ul::-webkit-scrollbar-thumb {
    background: #3b82f6;
}

/* Firefox için */
.sub-product-card-back ul {
    scrollbar-width: thin;
    scrollbar-color: #60a5fa rgba(255, 255, 255, 0.1);
}

body.dark-theme .sub-product-card-back ul {
    scrollbar-color: #3b82f6 rgba(0, 0, 0, 0.3);
}   

/* PC'de kartları eski boyutuna döndür */
@media (min-width: 768px) {
    .sub-product-card {
        max-width: 250px;
    }
}

