/* =========================================
   CUBENEST EFSANE TEMA - HAKKIMIZDA
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@600;700;800;900&display=swap');

:root {
    --primary: #ff2a2a;
    --primary-hover: #ff4d4d;
    --primary-glow: rgba(255, 42, 42, 0.4);
    --bg-dark: #030303;
    --bg-card: rgba(15, 15, 15, 0.6);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --border-color: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(255, 42, 42, 0.5);
    --cn-primary: #ff2a2a;
    --cn-bg: #030303;
    --cn-glass: rgba(255, 255, 255, 0.03);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden; /* Sağa sola kaymayı kesin olarak engeller */
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    position: relative;
}

::selection {
    background-color: var(--primary);
    color: white;
}

/* --- KUSURSUZ ARKA PLAN KATMANLARI --- */
.bg-grid {
    position: fixed;
    top: -50vh; left: -50vw;
    width: 200vw; height: 200vh;
    background-image: 
        linear-gradient(rgba(255, 42, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 42, 42, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(1000px) rotateX(60deg) translateY(0);
    animation: gridMove 15s linear infinite;
    z-index: -3;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: perspective(1000px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(1000px) rotateX(60deg) translateY(50px); }
}

.vignette {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 85%);
    z-index: -2;
    pointer-events: none;
}

.background-cubes {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.cube {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 42, 42, 0.05), transparent);
    border: 1px solid rgba(255, 42, 42, 0.2);
    box-shadow: 0 0 20px rgba(255, 42, 42, 0.05);
    border-radius: 8px;
    backdrop-filter: blur(3px);
    animation: floatUp 25s infinite linear;
}

.cube:nth-child(1) { width: 80px; height: 80px; left: 10%; bottom: -100px; animation-duration: 20s; }
.cube:nth-child(2) { width: 40px; height: 40px; left: 30%; bottom: -100px; animation-duration: 15s; animation-delay: 2s; }
.cube:nth-child(3) { width: 100px; height: 100px; left: 75%; bottom: -100px; animation-duration: 25s; animation-delay: 1s; }
.cube:nth-child(4) { width: 60px; height: 60px; left: 85%; bottom: -100px; animation-duration: 18s; animation-delay: 5s; }
.cube:nth-child(5) { width: 50px; height: 50px; left: 50%; bottom: -100px; animation-duration: 22s; animation-delay: 8s; }

@keyframes floatUp {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-120vh) rotate(360deg); opacity: 0; }
}

/* =========================================
   HEADER TASARIMI
========================================= */
.cn-header {
    position: fixed; top: 0; left: 0; width: 100%; height: 90px;
    background: rgba(3, 3, 3, 0.7); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); z-index: 1000;
}

.cn-header-container {
    max-width: 1400px; margin: 0 auto; height: 100%;
    display: flex; justify-content: space-between; align-items: center; padding: 0 40px;
}

.cn-nav { display: flex; gap: 35px; flex: 1; }
.cn-nav-left { justify-content: flex-end; padding-right: 50px; }
.cn-nav-right { justify-content: flex-start; padding-left: 50px; }

.cn-nav-item {
    position: relative; color: #a1a1aa; text-decoration: none;
    font-weight: 600; font-size: 0.95rem; transition: 0.3s;
    display: flex; align-items: center;
}

.cn-cube-indicator {
    width: 8px; height: 8px; background: var(--cn-primary);
    margin-right: 10px; display: inline-block;
    transform: rotate(45deg); opacity: 0; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 10px var(--cn-primary);
}

.cn-nav-item:hover, .cn-nav-item.active { color: #fff; }
.cn-nav-item:hover .cn-cube-indicator, 
.cn-nav-item.active .cn-cube-indicator { 
    opacity: 1; transform: rotate(225deg); 
}

.cn-logo-wrapper { perspective: 1000px; z-index: 1001; }
.cn-main-logo { display: flex; align-items: center; gap: 15px; text-decoration: none; }

.logo-cube {
    width: 24px; height: 24px; position: relative; transform-style: preserve-3d;
    animation: rotateCube 8s infinite linear;
}

.face {
    position: absolute; width: 24px; height: 24px;
    background: rgba(255, 42, 42, 0.1); border: 1.5px solid var(--cn-primary);
}

.front  { transform: translateZ(12px); }
.back   { transform: rotateY(180deg) translateZ(12px); }
.right  { transform: rotateY(90deg) translateZ(12px); }
.left   { transform: rotateY(-90deg) translateZ(12px); }
.top    { transform: rotateX(90deg) translateZ(12px); }
.bottom { transform: rotateX(-90deg) translateZ(12px); }

@keyframes rotateCube {
    from { transform: rotateX(0) rotateY(0); }
    to { transform: rotateX(360deg) rotateY(360deg); }
}

.brand-text { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.6rem; color: #fff; text-transform: uppercase; }
.brand-text span { color: var(--cn-primary); }

/* =========================================
   YENİ HAKKIMIZDA BÖLÜMLERİ (MODÜLER)
========================================= */

/* --- HERO BANNER (YENİ GRADIENT) --- */
.hero-mini {
    position: relative; width: 100%; min-height: 80vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 120px 20px 60px;
    background: linear-gradient(to bottom, rgba(3,3,3,0.3) 0%, var(--bg-dark) 100%), url('../images/banner.jpg');
    background-size: cover; background-position: center; background-attachment: fixed;
}
.hero-content { animation: fadeInDown 1s ease forwards; width: 100%; max-width: 800px; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }

.hero-mini h1 {
    font-family: 'Montserrat', sans-serif; font-size: 5rem; font-weight: 900;
    margin-bottom: 20px; text-transform: uppercase; letter-spacing: -2px;
    word-wrap: break-word; text-shadow: 0 10px 40px rgba(0,0,0,0.8);
}
.hero-biz {
    background: linear-gradient(180deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-kimiz {
    background: linear-gradient(180deg, #ff4d4d 0%, #990000 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    position: relative; display: inline-block;
}
.hero-kimiz::after {
    content: "KİMİZ?"; position: absolute; left: 0; top: 0;
    color: var(--primary); filter: blur(25px); z-index: -1; opacity: 0.6;
}
.hero-desc {
    font-size: 1.25rem; width: 100%; max-width: 700px; margin: 0 auto;
    background: rgba(10, 10, 10, 0.6); padding: 20px 40px; 
    border-radius: 50px; backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    background: linear-gradient(90deg, #e0e0e0 0%, #a1a1aa 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.6;
}
.scroll-indicator { position: absolute; bottom: 40px; color: var(--primary); font-size: 24px; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-15px); } 60% { transform: translateY(-7px); } }

/* --- ORTAK BAŞLIK --- */
.section-header { text-align: center; margin-bottom: 70px; position: relative; z-index: 5;}
.section-header h2 { font-family: 'Montserrat', sans-serif; font-size: 3rem; margin-bottom: 15px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.section-header h2 span { color: var(--primary); }
.section-header p { color: var(--text-muted); font-size: 1.1rem; padding: 0 15px; }

/* --- CUBENEST HİKAYESİ (YENİ TIMELINE) --- */
.story-section { padding: 80px 5%; position: relative; z-index: 2; width: 100%; box-sizing: border-box;}
.story-timeline-container { max-width: 900px; margin: 0 auto; position: relative; padding: 20px 0; }
.timeline-line {
    position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    transform: translateX(-50%); opacity: 0.5;
}
.timeline-card {
    display: flex; justify-content: flex-end; padding-right: 50%; position: relative; margin-bottom: 50px; width: 100%; box-sizing: border-box;
}
.timeline-card.right-card { justify-content: flex-start; padding-right: 0; padding-left: 50%; }
.timeline-dot {
    position: absolute; left: 50%; top: 30px; transform: translate(-50%, -50%);
    width: 16px; height: 16px; border-radius: 50%; background: var(--bg-dark);
    border: 3px solid var(--primary); box-shadow: 0 0 15px var(--primary); z-index: 2;
    transition: 0.4s ease;
}
.timeline-content {
    width: 85%; background: var(--bg-card); border: 1px solid var(--border-color);
    padding: 30px; border-radius: 20px; backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4); transition: transform 0.4s ease, border-color 0.4s ease;
    position: relative;
}
.timeline-card.right-card .timeline-content { margin-left: auto; }
.timeline-card:hover .timeline-content { transform: translateY(-5px); border-color: rgba(255, 42, 42, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
.timeline-card:hover .timeline-dot { transform: translate(-50%, -50%) scale(1.3); background: var(--primary); }
.timeline-year { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.primary-text { color: var(--primary); }
.timeline-content p { color: #dcdcdc; line-height: 1.7; font-size: 0.95rem; }

/* --- NEDEN BİZ? (YENİ MODERN KARTLAR) --- */
.features-section { padding: 80px 5%; position: relative; z-index: 2; width: 100%; box-sizing: border-box; }
.modern-features-grid {
    max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 30px;
}
.modern-feature-card {
    background: linear-gradient(160deg, rgba(20,20,20,0.8) 0%, rgba(5,5,5,0.9) 100%);
    padding: 40px 30px; border-radius: 24px; border: 1px solid var(--border-color);
    width: calc(33.333% - 20px); min-width: 300px; text-align: center;
    position: relative; overflow: hidden; transition: all 0.4s ease; backdrop-filter: blur(10px);
}
.modern-feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top, rgba(255,42,42,0.1), transparent 70%);
    opacity: 0; transition: 0.4s; pointer-events: none;
}
.modern-feature-card:hover { transform: translateY(-10px); border-color: rgba(255, 42, 42, 0.3); }
.modern-feature-card:hover::before { opacity: 1; }
.mf-icon {
    width: 60px; height: 60px; margin: 0 auto 20px; background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #fff;
    transition: all 0.4s ease;
}
.modern-feature-card:hover .mf-icon {
    background: var(--primary); color: #fff; border-color: var(--primary);
    box-shadow: 0 10px 25px var(--primary-glow); transform: scale(1.1) rotate(5deg);
}
.modern-feature-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; margin-bottom: 12px; color: #fff; }
.modern-feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* --- PREMIUM ARAÇLAR BÖLÜMÜ (YENİ) --- */
.tools-section { padding: 80px 5%; position: relative; z-index: 2; width: 100%; box-sizing: border-box;}
.tool-link-wrapper { text-decoration: none; color: inherit; display: block; outline: none; }
.premium-tools-grid { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 35px; }

.pt-card {
    background: linear-gradient(145deg, rgba(15,15,15,0.7), rgba(5,5,5,0.9));
    border: 1px solid rgba(255,255,255,0.05); border-radius: 24px; padding: 45px 30px;
    width: 350px; position: relative; text-align: center; transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px); overflow: hidden;
}
/* Etiket Sistemi */
.pt-badge {
    position: absolute; top: 20px; right: 20px; font-size: 0.75rem; font-weight: 700;
    padding: 6px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; z-index: 3;
}
.badge-beta { background: rgba(245, 158, 11, 0.1); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.3); }
.badge-yeni { background: rgba(16, 185, 129, 0.1); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.3); box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);}
.badge-dev { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; border: 1px solid rgba(139, 92, 246, 0.3); }
.badge-secret { background: rgba(255, 42, 42, 0.1); color: var(--primary); border: 1px solid rgba(255, 42, 42, 0.3); }

.pt-icon-wrapper {
    width: 80px; height: 80px; margin: 0 auto 25px; border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
    border: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2; transition: all 0.4s ease;
}
.pt-icon { font-size: 32px; color: #fff; transition: 0.4s; }
.pt-title { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 15px; position: relative; z-index: 2;}
.pt-desc { font-size: 0.95rem; color: #a1a1aa; line-height: 1.6; position: relative; z-index: 2;}

/* Hover & Glow Efektleri */
.pt-card::before {
    content: ""; position: absolute; inset: 0; border-radius: 24px;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 42, 42, 0.06), transparent 40%);
    opacity: 0; transition: opacity 0.5s; z-index: 1; pointer-events: none;
}
.pt-card:hover { transform: translateY(-12px); border-color: rgba(255,255,255,0.15); box-shadow: 0 20px 40px rgba(0,0,0,0.8); }
.pt-card:hover::before { opacity: 1; }
.pt-card:hover .pt-icon-wrapper { background: var(--primary); border-color: var(--primary); box-shadow: 0 10px 30px var(--primary-glow); transform: scale(1.1); }

/* Vurgulanan Kart (Yeni Çıkanlar İçin) */
.highlight-card { border-color: rgba(16, 185, 129, 0.3); }
.highlight-card:hover .pt-icon-wrapper { background: #10b981; border-color: #10b981; box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4); }

/* Geliştirme Kartları */
.dev-card { border-style: dashed; }
.secret-card { filter: grayscale(0.8); opacity: 0.8; }
.secret-card:hover { filter: grayscale(0); opacity: 1; }

/* İpucu (Tooltip) */
.info-tooltip { position: relative; cursor: pointer; color: var(--primary); font-size: 24px; display: inline-flex; align-items: center; margin-left: 10px;}
.tooltip-text {
    visibility: hidden; width: 280px; max-width: 80vw; background: rgba(10, 10, 10, 0.95);
    color: #e0e0e0; text-align: center; border-radius: 12px; padding: 15px;
    position: absolute; z-index: 100; bottom: 140%; left: 50%; transform: translateX(-50%) translateY(10px);
    opacity: 0; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 14px; font-family: 'Inter', sans-serif; font-weight: 500;
    border: 1px solid var(--border-hover); box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    backdrop-filter: blur(10px); letter-spacing: normal; word-wrap: break-word;
}
.tooltip-text::after { content: ""; position: absolute; top: 100%; left: 50%; margin-left: -8px; border-width: 8px; border-style: solid; border-color: rgba(10,10,10,0.95) transparent transparent transparent; }
.info-tooltip:hover .tooltip-text { visibility: visible; opacity: 1; transform: translateX(-50%) translateY(0); }

/* --- RESPONSIVE AYARLARI --- */
@media (max-width: 992px) {
    .timeline-line { left: 30px; transform: none; }
    .timeline-card, .timeline-card.right-card { justify-content: flex-start; padding: 0 0 0 60px; width: 100%; }
    .timeline-dot { left: 30px; }
    .timeline-content { width: 100%; }
    .modern-feature-card { width: calc(50% - 15px); }
}
@media (max-width: 768px) {
    .hero-mini { padding-top: 130px; min-height: 60vh; }
    .hero-mini h1 { font-size: 3rem; }
    .hero-desc { font-size: 1rem; padding: 15px 20px; }
    .section-header h2 { font-size: 2rem; }
    .modern-feature-card { width: 100%; }
    .pt-card { width: 100%; max-width: 400px; }
}
@media (max-width: 480px) {
    .hero-mini h1 { font-size: 2.2rem; }
    .timeline-line { left: 20px; }
    .timeline-dot { left: 20px; }
    .timeline-card, .timeline-card.right-card { padding-left: 50px; }
}
/* =========================================
   FOOTER TASARIMI
========================================= */
.cn-footer { background: #050505; border-top: 1px solid rgba(255, 255, 255, 0.03); padding-top: 80px; z-index: 5; position: relative; }

.footer-top-cta { max-width: 1200px; margin: -140px auto 60px; padding: 0 20px; }
.cta-card {
    background: linear-gradient(135deg, rgba(255, 42, 42, 0.1) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid rgba(255, 42, 42, 0.2); backdrop-filter: blur(20px);
    border-radius: 24px; padding: 40px; display: flex; justify-content: space-between; align-items: center;
}
.cta-text h3 { font-size: 1.8rem; color: #fff; margin-bottom: 8px; }
.cta-text p { color: #a1a1aa; }
.cta-button {
    background: var(--cn-primary); color: #fff; text-decoration: none; padding: 15px 35px;
    border-radius: 12px; font-weight: 700; transition: 0.3s; box-shadow: 0 10px 20px rgba(255, 42, 42, 0.2);
}
.cta-button:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(255, 42, 42, 0.4); }

.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; padding: 0 20px 60px; }
.footer-brand-info p { color: #71717a; margin-top: 15px; max-width: 300px; }
.footer-group h4 { color: #fff; margin-bottom: 25px; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-group ul { list-style: none; padding: 0; }
.footer-group li { margin-bottom: 12px; }
.footer-group a { color: #71717a; text-decoration: none; transition: 0.3s; }
.footer-group ul li a::before { content: '›'; color: var(--cn-primary); font-size: 1.2rem; margin-right: 8px; opacity: 0; transform: translateX(-10px); transition: all 0.3s ease; }
.footer-group ul li a:hover {color:#a41010; padding-left: 5px; transform: translateX(5px); }
.footer-group ul li a:hover::before { opacity: 1; transform: translateX(0); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 30px 20px; }
.bottom-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; color: #52525b; font-size: 0.9rem; }
.system-status { display: flex; align-items: center; gap: 10px; color: #10b981; font-weight: 700; }
.status-pulse { width: 8px; height: 8px; background: #10b981; border-radius: 50%; animation: statusPulse 2s infinite; }
/* =========================================
   RESPONSIVE & MOBİL HAMBURGER MENÜ
========================================= */

.cn-hamburger { background: none; border: none; cursor: pointer; display: none; padding: 10px; z-index: 1002; }
.hb-box { width: 30px; height: 24px; position: relative; }
.hb-inner, .hb-inner::before, .hb-inner::after { width: 30px; height: 2px; background: #fff; position: absolute; transition: 0.3s; }
.hb-inner { top: 50%; transform: translateY(-50%); }
.hb-inner::before { content: ""; top: -8px; }
.hb-inner::after { content: ""; top: 8px; }

.cn-hamburger.is-active .hb-inner { background: transparent; }
.cn-hamburger.is-active .hb-inner::before { transform: rotate(45deg); top: 0; }
.cn-hamburger.is-active .hb-inner::after { transform: rotate(-45deg); top: 0; }

.cn-mobile-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(3, 3, 3, 0.98); 
    backdrop-filter: blur(15px); z-index: 999;
    display: flex; align-items: center; justify-content: center;
    transform: translateX(100%); transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.cn-mobile-overlay.is-open { transform: translateX(0); }

.overlay-content { width: 100%; padding-top: 60px; } /* Header alanından kaçınmak için */
.mobile-nav-list { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.mobile-nav-list a {
    color: #fff; font-size: 1.8rem; font-weight: 800; text-decoration: none;
    text-transform: uppercase; transition: 0.3s;
}
.mobile-nav-list a:hover { color: var(--cn-primary); }
.m-divider { width: 40px; height: 2px; background: rgba(255, 255, 255, 0.1); margin: 10px 0; }
.m-special { color: var(--cn-primary) !important; }

/* 992px altı (Tabletler) */
@media (max-width: 992px) {
    .cn-nav, .cn-nav-right { display: none; }
    .cn-hamburger { display: block; }
    .cn-header-container { justify-content: space-between; }
    /* Tabletlerde hala ortalı durabilir, alan var */
    .cn-logo-wrapper { position: absolute; left: 50%; transform: translateX(-50%); }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-brand-info p { margin: 15px auto; }
}

/* 768px altı (Mobil Cihazlar - Logoyu sola yasladık, üst üste binmeyi çözdük) */
@media (max-width: 768px) {
    .cn-logo-wrapper { position: static; transform: none; } /* Sorunu çözen temel kod */
    .hero-title { font-size: 3rem; }
    .hero-section { margin-bottom: 40px; }
    .beta-info-box { padding: 20px; }
    .action-buttons { flex-direction: column; width: 100%; }
    .btn { justify-content: center; width: 100%; }
    .discord-section { padding: 0 15px; }
    .cta-card { flex-direction: column; text-align: center; gap: 20px; }
    .section-header { flex-direction: column; gap: 15px; text-align: center; }
}

@media (max-width: 480px) {
    .cn-header-container { padding: 0 20px; }
    .brand-text { font-size: 1.3rem; }
    .hero-title { font-size: 2.2rem; }
    .status-badge { font-size: 0.75rem; padding: 6px 15px; }
    .beta-info-box p { font-size: 0.95rem; }
    .bottom-container { flex-direction: column; gap: 15px; }
}
/* --- MOBİL UYUM (RESPONSIVE) --- */
/* Tablet ve Küçük Laptoplar */
@media (max-width: 992px) {
    .hero-mini h1 { font-size: 3.5rem; }
    .section-header h2 { font-size: 2.2rem; }
    .story-text-box { padding: 40px; } 
}

/* Telefonlar (Genel) */
@media (max-width: 768px) {
    /* Banner (Hero) Kısmı */
    .hero-mini { padding-top: 130px; min-height: 60vh; }
    .hero-mini h1 { font-size: 2.5rem; letter-spacing: -1px; }
    .hero-mini p { font-size: 0.95rem; padding: 15px 20px; border-radius: 25px; }
    
    /* Hikayemiz Kısmı */
    .story-section { padding: 60px 5%; }
    .story-text-box { padding: 30px 20px; } 
    .aciklama-bir, .aciklama-iki { font-size: 1rem; }
    
    /* Neden Biz Kartları */
    .features-grid { grid-template-columns: 1fr; gap: 30px; } 
    .premium-card { padding: 30px 20px; }
    
    /* Araçlar (Epic Cards) */
    .tools-grid { flex-direction: column; align-items: center; }
    .epic-tool-card { width: 100%; max-width: 100%; padding: 30px 20px; } /* Mobilde tam genişlik kullanması için max-width artırıldı */
    
    /* Başlıklar ve İpucu (Tooltip) */
    .section-header h2 { font-size: 1.8rem; }
    .tooltip-text {
        width: 220px; 
        bottom: 130%;
    }
}

/* Çok Küçük Ekranlı Telefonlar (iPhone SE vb.) */
@media (max-width: 480px) {
    .hero-mini h1 { font-size: 2.2rem; }
    header { padding: 0 15px; }
    .brand-text { font-size: 1.3rem; }
    .story-text-box { padding: 25px 15px; }
    .section-header h2 { font-size: 1.5rem; }
    .premium-card h3 { font-size: 1.4rem; }
}
