:root {
    --dark: #0e1628;
    --accent: #38bdf8;
    --gold: #ac905a;
    --kale-red: #e55439;
    --bg-gradient: radial-gradient(circle, #ffffff 0%, #f0f2f5 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    color: var(--dark);
    overflow: hidden; /* Scroll engellenir, JS ile kontrol edilir */
}

#neuron-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    opacity: 0.4;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10%;
    visibility: hidden; /* Başlangıçta gizli */
    z-index: 1;
}

.slide.active { visibility: visible; }

.content {
    max-width: 900px;
    text-align: center;
    z-index: 2;
}

h1 { font-size: 4rem; margin-bottom: 20px; font-weight: 700; letter-spacing: -2px; }
h2 { font-size: 3rem; margin-bottom: 20px; }
p { font-size: 1.2rem; line-height: 1.6; color: #555; margin-bottom: 30px; }

/* Glow Efektleri */
.glow-text {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
}

.kale-red { color: var(--kale-red); }
.gold-text { color: var(--gold); }

/* Kartlar ve Kutular */
.grid-box { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.card {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-10px); border-color: var(--accent); }

.glow-box {
    background: var(--dark);
    color: white;
    padding: 20px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 0 20px rgba(14, 22, 40, 0.3);
}

/* Scroll İkonu */
.scroll-hint { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); opacity: 0.6; }
.mouse {
    width: 25px; height: 40px; border: 2px solid var(--dark);
    border-radius: 20px; margin: 10px auto; position: relative;
}
.mouse::before {
    content: ''; width: 4px; height: 8px; background: var(--kale-red);
    position: absolute; left: 50%; transform: translateX(-50%);
    top: 8px; border-radius: 2px; animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .grid-box { grid-template-columns: 1fr; }
}


/* Logo Alanı */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.brand-logo {
    height: 60px; /* Logonuza göre ayarlayabilirsiniz */
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.brand-logo:hover { filter: grayscale(0%); }

.logo-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

/* Başlık ve Subtitle */
.main-slogan {
    font-size: 4.5rem;
    background: linear-gradient(45deg, var(--dark), var(--kale-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.sub-title-vision {
    font-size: 1.5rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.highlight {
    color: var(--accent);
    font-weight: 700;
}

/* Konu Başlıkları (Tags) */
.topics-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.topic-tag {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(172, 144, 90, 0.2); /* Gold rengi hafif dokunuş */
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.topic-tag:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
}

/* Animasyon */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}


.topic-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px); /* Cam efekti */
    border: 1px solid rgba(14, 22, 40, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.topic-tag i {
    width: 18px;
    height: 18px;
    color: var(--accent); /* Datakale Mavisi */
    transition: transform 0.3s ease;
}

.topic-tag:hover {
    background: var(--dark);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4); /* Glow Efekti */
    border-color: var(--accent);
}

.topic-tag:hover i {
    color: #fff;
    transform: rotate(15deg);
}

/* Subtitle için Yeni Öneri */
.sub-title-vision {
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}


/* Slide 2 Grid Yapısı */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left !important;
}

.text-side h2 {
    font-size: 3rem;
    margin: 15px 0;
    color: var(--dark);
}

.feature-list {
    margin: 30px 0;
}

.f-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.f-item i {
    color: var(--kale-red);
}

.maliyet-badge {
    display: inline-block;
    padding: 12px 20px;
    background: rgba(172, 144, 90, 0.1);
    border-left: 4px solid var(--gold);
    font-weight: 600;
    color: var(--gold);
    font-size: 0.9rem;
}

/* Sağ Taraf: Kamera Vizörü */
.camera-mockup {
    position: relative;
    width: 100%;
    height: 350px;
    background: #ddd url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=1000&auto=format&fit=crop') center/cover;
    border-radius: 20px;
    border: 5px solid white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
    top: 0;
    animation: scanMove 4s linear infinite;
}

.detection-box {
    position: absolute;
    border: 2px solid;
    padding: 5px;
}

.detection-box.person {
    width: 100px; height: 200px;
    top: 20%; left: 30%;
    border-color: #4ade80;
    box-shadow: inset 0 0 10px rgba(74, 222, 128, 0.3);
}

.detection-box.helmet-missing {
    width: 60px; height: 60px;
    top: 25%; left: 34%;
    border-color: var(--kale-red);
    box-shadow: inset 0 0 10px rgba(229, 84, 57, 0.3);
    animation: pulseBorder 1s infinite alternate;
}

.label {
    position: absolute;
    top: -25px; left: -2px;
    background: inherit;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    font-weight: bold;
    background-color: inherit; /* Border rengini alır */
}

.person .label { background-color: #4ade80; }
.helmet-missing .label { background-color: var(--kale-red); }

.overlay-text {
    position: absolute;
    bottom: 10px; left: 15px;
    color: white;
    font-size: 0.8rem;
    font-family: monospace;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Animasyonlar */
@keyframes scanMove {
    0% { top: 0; }
    100% { top: 100%; }
}

@keyframes pulseBorder {
    from { opacity: 1; }
    to { opacity: 0.4; }
}

@media (max-width: 968px) {
    .grid-layout { grid-template-columns: 1fr; }
}



/* Liste Tasarımı */
.capability-list {
    list-style: none;
    margin: 30px 0;
}

.capability-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.capability-list i { color: var(--kale-red); width: 20px; }

/* Modern Buton */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(14, 22, 40, 0.2);
}

.btn-modern:hover {
    background: var(--kale-red);
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(229, 84, 57, 0.3);
}

/* Image Stack (3'lü Resim Yapısı) */
.visual-side {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-stack {
    position: relative;
    width: 80%;
    height: 300px;
}

.stack-card {
    position: absolute;
    width: 100%;
    height: 250px;
    border-radius: 15px;
    border: 4px solid white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-size: cover;
    background-position: center;
}

/* Örnek Arkaplan Resimleri (Kale Grubu ruhuna uygun) */
.card-1 { 
    background-image: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?q=80&w=1000'); 
    z-index: 3; transform: rotate(-5deg) translate(-20px, 0);
}
.card-2 { 
    background-image: url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?q=80&w=1000'); 
    z-index: 2; transform: rotate(2deg) translate(20px, 40px);
}
.card-3 { 
    background-image: url('https://images.unsplash.com/photo-1516934024742-b461fbc4760e?q=80&w=1000'); 
    z-index: 1; transform: rotate(8deg) translate(40px, 80px);
}

/* Hover'da Resimlerin Dağılması */
.image-stack:hover .card-1 { transform: rotate(0) translate(-60px, -60px); }
.image-stack:hover .card-2 { transform: rotate(0) translate(0, 0); z-index: 5; }
.image-stack:hover .card-3 { transform: rotate(0) translate(60px, 60px); }

/* Simülasyon Detayları */
.cam-label {
    position: absolute; top: 10px; left: 10px;
    background: rgba(0,0,0,0.6); color: #4ade80;
    padding: 3px 8px; border-radius: 4px; font-family: monospace; font-size: 0.7rem;
}

.detection {
    position: absolute; border: 2px solid; padding: 10px;
}

.person-ok { border-color: #4ade80; top: 20%; left: 30%; width: 80px; height: 120px; }
.object-error { border-color: var(--kale-red); top: 30%; left: 40%; width: 100px; height: 100px; animation: pulse 1s infinite; }
.hazard-detect { border-color: #facc15; top: 10%; right: 20%; width: 120px; height: 80px; }

.tag {
    position: absolute; top: -20px; left: -2px; background: inherit; color: white;
    font-size: 0.6rem; padding: 2px 5px; font-weight: bold; background-color: inherit;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}



/* Gold Renk ve Metin */
.gold-text {
    color: var(--gold) !important;
    text-shadow: 0 0 15px rgba(172, 144, 90, 0.3);
}

.gold-bg { background: var(--gold) !important; }
.white-icon { color: white !important; }

/* Workflow (Süreç) Listesi */
.workflow-steps {
    margin-top: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.step-item:hover {
    background: rgba(172, 144, 90, 0.05);
    transform: translateX(10px);
}

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: white;
    border: 1px solid rgba(172, 144, 90, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-text h5 { font-size: 1.2rem; margin-bottom: 5px; color: var(--dark); }
.step-text p { font-size: 0.9rem; margin: 0; }

.highlighted-step {
    border: 1px solid var(--gold);
    background: rgba(172, 144, 90, 0.05);
}

/* NFT Kart Tasarımı */
.nft-card-container {
    perspective: 1000px;
    position: relative;
}

.nft-card {
    width: 320px;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    border: 1px solid rgba(172, 144, 90, 0.4);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 30px 60px rgba(172, 144, 90, 0.2);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.nft-card:hover {
    transform: rotateY(0) rotateX(0) scale(1.05);
    box-shadow: 0 40px 80px rgba(172, 144, 90, 0.3);
}

.nft-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.nft-logo { height: 20px; filter: grayscale(1); }
.nft-id { font-family: monospace; font-size: 0.7rem; color: #999; }

.nft-visual {
    height: 180px;
    background: var(--dark);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.nft-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(from 0deg, transparent, var(--gold), transparent);
    animation: rotateGlow 4s linear infinite;
    opacity: 0.3;
}

.gold-medal {
    width: 80px;
    height: 80px;
    color: var(--gold);
    z-index: 2;
    filter: drop-shadow(0 0 10px var(--gold));
}

.nft-footer { text-align: center; }
.nft-owner { font-weight: 700; font-size: 1rem; margin-bottom: 5px; }
.nft-status { font-size: 0.8rem; color: #4ade80; font-weight: bold; margin-bottom: 15px; }

.nft-badge {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Arka Plan Dekoru */
.decor-circle {
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(172, 144, 90, 0.1) 0%, transparent 70%);
    z-index: -1;
}

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


.flex-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px; /* Kart ile buton arasındaki boşluk */
}

.nft-action-area {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.gold-border {
    background: transparent !important;
    border: 2px solid var(--gold) !important;
    color: var(--gold) !important;
    box-shadow: 0 5px 15px rgba(172, 144, 90, 0.1) !important;
}

.gold-border:hover {
    background: var(--gold) !important;
    color: white !important;
    box-shadow: 0 10px 25px rgba(172, 144, 90, 0.3) !important;
    transform: translateY(-5px) !important;
}

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



/* Ana Yatay Konteynır */
.full-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr; /* Genişlikleri sabitledik */
    gap: 40px;
    align-items: center;
    width: 95vw;
    max-width: 1400px;
    text-align: left !important;
}

.h-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 1. Blok: Intro */
.intro-block h2 { font-size: 3rem; line-height: 1.1; margin: 20px 0; }
.maliyet-label {
    background: rgba(172, 144, 90, 0.1);
    color: var(--gold);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.85rem;
    border-left: 4px solid var(--gold);
}

/* 2. Blok: Özellikler */
.f-item-modern {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.f-item-modern i { color: var(--accent); width: 28px; flex-shrink: 0; }
.f-item-modern strong { font-size: 1.1rem; color: var(--dark); display: block; margin-bottom: 4px; }
.f-item-modern p { font-size: 0.9rem; margin: 0; line-height: 1.4; }

.special-feat {
    background: rgba(229, 84, 57, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px dashed var(--kale-red);
}

.btn-modern-sm {
    text-decoration: none;
    background: var(--dark);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.btn-modern-sm:hover { background: var(--kale-red); transform: translateX(5px); }

/* 3. Blok: Görsel (Geri Gelen Muhteşem Kısım) */
.model-viewer-fixed {
    position: relative;
    height: 400px;
    background: #0e1628;
    border-radius: 25px;
    border: 6px solid white;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.omni-status-tag {
    position: absolute;
    top: 20px; left: 20px;
    background: rgba(0,0,0,0.7);
    color: #4ade80;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: bold;
    display: flex; align-items: center; gap: 8px;
}

.status-pulse {
    width: 8px; height: 8px; background: #4ade80; border-radius: 50%;
    animation: pulseGlow 1.5s infinite;
}

.hero-box-icon {
    width: 140px !important;
    height: 140px !important;
    color: var(--accent);
    filter: drop-shadow(0 0 20px var(--accent));
    animation: rotateBox 10s infinite linear;
}

.horizontal-scan-beam {
    position: absolute;
    width: 100%; height: 2px;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
    animation: scanUpDown 3s infinite ease-in-out;
}

.live-data-stream {
    position: absolute;
    bottom: 20px; right: 20px;
    color: var(--accent);
    font-family: monospace;
    font-size: 0.7rem;
    text-align: right;
    display: flex; flex-direction: column; gap: 4px;
}

/* Animasyonlar */
@keyframes rotateBox {
    from { transform: rotateY(0deg) rotateX(0deg); }
    to { transform: rotateY(360deg) rotateX(360deg); }
}

@keyframes scanUpDown {
    0%, 100% { top: 10%; opacity: 0; }
    50% { top: 90%; opacity: 1; }
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Mobil için Alt Alta Dizilme */
@media (max-width: 1100px) {
    .full-horizontal {
        grid-template-columns: 1fr;
        padding-top: 100px;
    }
    .model-viewer-fixed { height: 250px; }
}


/* Ses Sayfası Özel Renkler */
.blue-glow { color: #38bdf8; text-shadow: 0 0 15px rgba(56, 189, 248, 0.4); }
.accent-text { color: var(--accent); }
.special-feat-blue {
    background: rgba(56, 189, 248, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px dashed #38bdf8;
}

/* Audio Analyzer Kutusu */
.audio-analyzer-box {
    position: relative;
    height: 400px;
    background: #0e1628;
    border-radius: 25px;
    border: 6px solid white;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.analyzer-header {
    display: flex;
    justify-content: space-between;
    color: #4ade80;
    font-family: monospace;
    font-size: 0.75rem;
}

.rec-dot {
    width: 10px; height: 10px; background: red; border-radius: 50%;
    animation: pulseGlow 1s infinite;
}

/* Hareketli Ses Barları */
.visualizer-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    height: 150px;
}

.bar {
    width: 12px;
    background: var(--accent);
    border-radius: 10px;
    animation: soundWave 0.8s infinite ease-in-out alternate;
}

.alert-bar {
    background: var(--kale-red);
    animation-duration: 0.4s; /* Arıza bölgesinde daha hızlı hareket */
}

/* Her barın farklı sürede hareket etmesi için */
.bar:nth-child(1) { animation-delay: 0.1s; height: 40%; }
.bar:nth-child(2) { animation-delay: 0.3s; height: 70%; }
.bar:nth-child(3) { animation-delay: 0.2s; height: 50%; }
.bar:nth-child(4) { animation-delay: 0.5s; height: 90%; }
.bar:nth-child(9), .bar:nth-child(10) { height: 100%; box-shadow: 0 0 15px var(--kale-red); }

@keyframes soundWave {
    from { height: 20%; }
    to { height: 100%; }
}

/* Arıza Uyarısı */
.spectrogram-overlay {
    position: relative;
    text-align: center;
}

.error-ping {
    background: var(--kale-red);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    animation: blinker 0.5s step-start infinite;
}

@keyframes blinker {
    50% { opacity: 0; }
}

.audio-metrics {
    display: flex;
    justify-content: space-between;
    color: rgba(56, 189, 248, 0.6);
    font-family: monospace;
    font-size: 0.7rem;
}

.blue-btn { background: #38bdf8 !important; }
.blue-btn:hover { background: #0ea5e9 !important; }

.status-badge {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    border-left: 4px solid #4ade80;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 20px;
}



/* NVIDIA Özel Renkler */
.nv-green { color: #76b900; }
.green-glow { color: #76b900; text-shadow: 0 0 15px rgba(118, 185, 0, 0.4); }
.nv-btn { background: #76b900 !important; }
.nv-btn:hover { background: #5d9200 !important; }

.special-feat-nv {
    background: rgba(118, 185, 0, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px dashed #76b900;
}

.nv-badge {
    display: inline-block;
    padding: 8px 15px;
    background: #000;
    color: #76b900;
    border: 1px solid #76b900;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.75rem;
    margin-top: 20px;
}

/* Omniverse Connector Visual */
.omni-connector-box {
    position: relative;
    height: 400px;
    background: radial-gradient(circle, #1a1a1a 0%, #000000 100%);
    border-radius: 25px;
    border: 6px solid white;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-core {
    width: 80px; height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 5;
    box-shadow: 0 0 30px rgba(118, 185, 0, 0.6);
}

.nv-logo-inner { width: 50px; }

/* Yörünge Hareketleri */
.orbit {
    position: absolute;
    border: 1px solid rgba(118, 185, 0, 0.2);
    border-radius: 50%;
}

.ring-1 { width: 180px; height: 180px; animation: rotateCW 15s linear infinite; }
.ring-2 { width: 280px; height: 280px; animation: rotateCCW 20s linear infinite; }

.node {
    position: absolute;
    background: #76b900;
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: bold;
    box-shadow: 0 0 10px #76b900;
}

/* Node Konumları */
.n1 { top: 0; left: 50%; transform: translateX(-50%); }
.n2 { bottom: 0; left: 50%; transform: translateX(-50%); }
.n3 { left: 0; top: 50%; transform: translateY(-50%); }
.n4 { right: 0; top: 50%; transform: translateY(-50%); }

.live-sync-text {
    position: absolute;
    bottom: 20px;
    font-family: monospace;
    color: #76b900;
    font-size: 0.7rem;
    display: flex; align-items: center; gap: 8px;
}

.pulse-green {
    width: 8px; height: 8px; background: #76b900; border-radius: 50%;
    animation: pulseGlow 1s infinite;
}

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



/* Kurumsal Hafıza Özel Renkler */
.purple-glow { color: #a855f7; text-shadow: 0 0 15px rgba(168, 85, 247, 0.4); }
.special-feat-purple {
    background: rgba(168, 85, 247, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px dashed #a855f7;
}

.purple-btn { background: #a855f7 !important; }
.purple-btn:hover { background: #9333ea !important; }

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #0e1628;
    color: #a855f7;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    margin-top: 20px;
}

/* Chat Arayüz Tasarımı */
.ai-chat-box {
    position: relative;
    height: 400px;
    background: #ffffff;
    border-radius: 25px;
    border: 6px solid white;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: #0e1628;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.online-tag { color: #4ade80; display: flex; align-items: center; gap: 5px; }

.chat-messages {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #f8fafc;
    overflow-y: auto;
}

.msg {
    max-width: 85%;
    padding: 12px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.user-msg {
    align-self: flex-end;
    background: #e2e8f0;
    color: var(--dark);
    border-bottom-right-radius: 2px;
}

.bot-msg {
    align-self: flex-start;
    background: #0e1628;
    color: #fff;
    border-bottom-left-radius: 2px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.typing-effect {
    border-right: 2px solid #a855f7;
    animation: blinkCursor 0.8s infinite;
}

.ref-link {
    display: block;
    margin-top: 8px;
    font-size: 0.7rem;
    color: #a855f7;
    font-style: italic;
}

.chat-input-area {
    padding: 15px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 0.8rem;
}

@keyframes blinkCursor {
    50% { border-color: transparent; }
}

@media (max-width: 1100px) {
    .ai-chat-box { height: 300px; }
}


/* --- Final Slide Özel CSS --- */

#final-slide .signature-line {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* İletişim Kartı Tasarımı */
.final-contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(172, 144, 90, 0.2);
}

.final-c-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: center;
}

.final-c-item:last-child { margin-bottom: 0; }

.final-c-item i {
    width: 45px; height: 45px;
    background: var(--dark);
    color: white;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
}

.final-c-item strong { display: block; font-size: 0.75rem; color: #888; text-transform: uppercase; }
.final-c-item p { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin: 0; }

/* Link Listesi Tasarımı */
.web-platform-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.final-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.final-link:hover {
    background: var(--kale-red);
    color: white;
    transform: translateX(10px);
    border-color: var(--kale-red);
}

.contact-highlight {
    border: 2px solid var(--accent);
    background: rgba(56, 189, 248, 0.05);
}

.thanks-text {
    margin-top: 30px;
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    opacity: 0.08;
    text-align: right;
    letter-spacing: -2px;
}

/* Yatay hizalamanın bozulmaması için garanti */
#final-slide .full-horizontal {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1.2fr !important;
    gap: 40px;
    width: 100%;
}


/* Karbon Ayak İzi Sayfası Özel Stilleri */
#carbon-slide .earth-blue { color: #0ea5e9; }
#carbon-slide .green-glow { color: #22c55e; text-shadow: 0 0 15px rgba(34, 197, 94, 0.4); }

.special-feat-green {
    background: rgba(34, 197, 94, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px dashed #22c55e;
}

.eu-badge {
    display: inline-block;
    padding: 8px 15px;
    background: #0e1628;
    color: #ffd700; /* AB Yıldız Rengi */
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.75rem;
    margin-top: 20px;
}

.earth-btn { background: #22c55e !important; }
.earth-btn:hover { background: #16a34a !important; }

/* Dashboard Görseli */
.earth-dashboard-box {
    position: relative;
    height: 420px;
    background: #ffffff;
    border-radius: 25px;
    border: 6px solid white;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 0.7rem;
    font-weight: bold;
    color: #64748b;
}

.status-tag { color: #22c55e; }

.earth-visual-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.rotating-earth {
    position: relative;
    width: 120px; height: 120px;
}

.globe-icon {
    width: 120px !important; height: 120px !important;
    color: #0ea5e9;
    animation: rotateGlobe 20s linear infinite;
}

.data-ring {
    position: absolute;
    top: -10px; left: -10px;
    width: 140px; height: 140px;
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    border-top-color: #22c55e;
    animation: spin 3s linear infinite;
}

.emission-alert {
    position: absolute;
    right: 10px; top: 20px;
    background: #22c55e;
    color: white;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.emission-alert .val { display: block; font-size: 1.2rem; font-weight: 800; }
.emission-alert .lbl { font-size: 0.6rem; font-weight: bold; }

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.m-box {
    background: #f8fafc;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.m-box span { display: block; font-size: 0.6rem; color: #64748b; margin-bottom: 3px; }
.m-box strong { font-size: 0.8rem; color: var(--dark); }

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

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


/* Modal Overlay (Arka Plan Karartma ve Blur) */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(14, 22, 40, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

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

/* Modal Penceresi */
.modal-container {
    width: 85%;
    max-width: 1100px;
    height: 80vh;
    background: #ffffff;
    border-radius: 30px;
    position: relative;
    overflow-y: auto;
    padding: 50px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

/* Kapat Butonu */
.modal-close-btn {
    position: absolute;
    top: 25px; right: 25px;
    background: var(--dark);
    color: white;
    border: none;
    width: 45px; height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
    z-index: 10;
}

.modal-close-btn:hover { background: var(--kale-red); transform: rotate(90deg); }

/* Pop-up İçindeki Gizli Veri Yapısı (Slaytlarda kullanılacak) */
.hidden-popup-content { display: none; }


.modal-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; }
.tech-specs-table { margin-top: 20px; background: #f8fafc; border-radius: 15px; padding: 20px; }
.spec-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #e2e8f0; }
.spec-row span { color: #64748b; font-weight: 500; }
.steps-list { margin-left: 20px; margin-top: 15px; }
.steps-list li { margin-bottom: 10px; color: #475569; }
.info-box-gold { margin-top: 20px; padding: 15px; background: var(--gold); color: white; border-radius: 12px; font-weight: bold; text-align: center; }

.info-box-nv {
    margin-top: 20px;
    padding: 15px;
    background: #76b900;
    color: white;
    border-radius: 12px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 10px 20px rgba(118, 185, 0, 0.2);
}

