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

html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    /* Safari için beyaz background sorununu önle */
    background: linear-gradient(135deg, #331617 0%, #0a1929 50%, #1e3c72 100%);
}

body {
    font-family: 'Barlow', sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #331617 0%, #0a1929 50%, #1e3c72 100%);
    position: fixed;
    top: 0;
    left: 0;
    /* Safari için beyaz background sorununu önle */
    -webkit-background-size: cover;
    background-size: cover;
}

/* Logo Animation - Daha Profesyonel */
.logo-container {
    position: fixed;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    opacity: 0;
    animation: logoFadeIn 1.2s ease-out 0.3s forwards;
}

.logo {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: logoRing 1.5s ease-out 0.3s forwards;
}

.logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: logoRing 1.8s ease-out 0.5s forwards;
}

.logo-image {
    max-width: 15vw;
    width: auto;
    height: auto;
    max-height: 150px;
    position: relative;
    z-index: 1;
    animation: logoScaleGlow 1s ease-out 0.5s backwards;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5))
            drop-shadow(0 5px 20px rgba(0, 0, 0, 0.5))
            drop-shadow(0 0 60px rgba(255, 255, 255, 0.3));
}

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

@keyframes logoRing {
    from {
        transform: translateX(-50%) scale(0.5);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes logoScaleGlow {
    from {
        transform: scale(0.3);
        opacity: 0;
        filter: blur(10px);
    }
    50% {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

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

/* Main Content - Direkt Açılış */
.main-content {
    display: flex;
    height: 100vh;
    opacity: 0;
    transform: scale(0.95);
}

.sector {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Akü Container (Yazıların Üstünde, Büyütülmüş - Arka Planda) */
.battery-container {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 420px;
    z-index: 1;
    opacity: 0;
    animation: batteryFadeIn 1s ease-out 2s forwards;
}

.battery-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6))
            drop-shadow(0 0 60px rgba(255, 0, 0, 0.4));
    animation: batteryPulse 2s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes batteryFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Canvas için Endüstriyel Enerji Akışı - Kırmızı Alanın Arka Planına Yayılmış */
.energy-flow-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    /* mix-blend-mode kaldırıldı - simgeler daha görünür olacak */
}

@keyframes batteryPulse {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6))
                drop-shadow(0 0 60px rgba(255, 0, 0, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.8))
                drop-shadow(0 0 80px rgba(255, 0, 0, 0.6));
    }
}

/* Flash Efekti - Akü İçinde */
.lightning-flash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 220px;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0);
    pointer-events: none;
    z-index: 4;
    transition: background 0.1s ease-out;
    border-radius: 5px;
    clip-path: polygon(10% 0%, 90% 0%, 95% 100%, 5% 100%);
}

.lightning-flash.flash {
    background: rgba(255, 255, 255, 0.4);
}

/* Canvas için Yıldırım Efekti - Akü İçinde */
.lightning-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 220px;
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: screen;
    /* Akü içine sığdır */
    margin-top: 10px;
    clip-path: polygon(10% 0%, 90% 0%, 95% 100%, 5% 100%);
}

/* 3D Depo Container - Akü ile Aynı Boyutta (Yazıların Üstünde - Arka Planda) */
.tank-container {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 420px;
    z-index: 1;
    opacity: 0;
    animation: tankFadeIn 1s ease-out 2s forwards;
    perspective: 1000px;
}

.tank-3d {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: tankRotate 20s linear infinite;
    animation-delay: 3s;
}

.tank-icon {
    width: 100%;
    height: 100%;
    /* Gerçekçi 3D Modüler Su Deposu - Gölgeli, gerçekçi görünüm */
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.5))
            drop-shadow(0 0 80px rgba(79, 172, 254, 0.4))
            drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

@keyframes tankFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8) rotateY(-10deg);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotateY(0deg);
    }
}

@keyframes tankRotate {
    0%, 100% {
        transform: rotateY(0deg) rotateX(2deg);
    }
    50% {
        transform: rotateY(5deg) rotateX(-2deg);
    }
}

/* Canvas için Su Damlaları - Depo İçine (Akü ile Aynı Boyut - Arka Planda) */
.water-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 330px;
    /* Tank içine tam oturması için margin-top kaldırıldı - Canvas üstü tank üstüne denk geliyor */
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
    /* Depo içine sığdır */
    clip-path: polygon(5% 0%, 95% 0%, 98% 100%, 2% 100%);
}

/* Su Yüzeyi Canvas (Dalgalanma için - Akü ile Aynı Boyut - Arka Planda) */
.water-surface-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 330px;
    /* Tank içine tam oturması için margin-top kaldırıldı - Canvas üstü tank üstüne denk geliyor */
    pointer-events: none;
    z-index: 2;
    clip-path: polygon(5% 0%, 95% 0%, 98% 100%, 2% 100%);
}

/* Su Damlaları Efektleri - Ripple (Depo Altında) */
.water-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}


.ripple {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 0;
}

.ripple1 {
    width: 60px;
    height: 60px;
    left: calc(50% - 80px);
    top: calc(50% - 60px);
    transform: translate(-50%, -50%);
    animation: waterRipple 2s ease-out infinite;
    animation-delay: 0.5s;
}

.ripple2 {
    width: 70px;
    height: 70px;
    left: 50%;
    top: calc(50% - 60px);
    transform: translate(-50%, -50%);
    animation: waterRipple 2.2s ease-out infinite;
    animation-delay: 1.2s;
}

.ripple3 {
    width: 65px;
    height: 65px;
    left: calc(50% + 80px);
    top: calc(50% - 60px);
    transform: translate(-50%, -50%);
    animation: waterRipple 2.1s ease-out infinite;
    animation-delay: 1.8s;
}

@keyframes waterDrop {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(calc(100vh + 20px)) scale(1);
    }
}

@keyframes waterRipple {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.sector-left {
    background: linear-gradient(135deg, #331617 0%, #f00 100%);
    position: relative;
}

.sector-right {
    background: linear-gradient(135deg, #0a1929 0%, #1e3c72 30%, #2a5298 60%, #4facfe 100%);
    position: relative;
}

/* Fabrika Siluet Arka Plan */
.factory-silhouette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('IMG_2842.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.factory-silhouette-right {
    /* Sağ taraf - Yansıtılmış (mirror) görünüm */
    transform: scaleX(-1);
}

.sector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.4s ease;
}

.sector:hover {
    transform: scale(1.02);
    z-index: 10;
}

/* Touch devices için hover efektini kaldır */
@media (hover: none) {
    .sector:hover {
        transform: scale(1);
    }
    
    .sector:hover .sector-overlay {
        background: rgba(0, 0, 0, clamp(0.5, 0.6vw, 0.6));
    }
    
    .sector-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        transform: translateY(0) scale(1);
        box-shadow: none;
    }
}

/* Touch devices için hover efektini kaldır */
@media (hover: none) {
    .sector:hover {
        transform: scale(1);
    }
    
    .sector:hover .sector-overlay {
        background: rgba(0, 0, 0, clamp(0.5, 0.6vw, 0.6));
    }
    
    .sector-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        transform: translateY(0) scale(1);
        box-shadow: none;
    }
}

.sector-content {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: white;
    padding: 40px;
    max-width: 90%;
    width: auto;
    min-width: 0;
}

.sector-slogan {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    font-style: normal;
    margin-top: 10px;
    margin-bottom: 18px;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUpFade 0.8s ease-out 2.3s forwards;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
}

.sector-left .sector-slogan {
    color: rgba(255, 255, 255, 1);
}

.sector-right .sector-slogan {
    color: rgba(255, 255, 255, 1);
}

.sector-left .sector-slogan {
    animation-delay: 2.3s;
}

.sector-right .sector-slogan {
    animation-delay: 2.4s;
}

.sector-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUpFade 0.8s ease-out 2.2s forwards;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 1px;
    line-height: 1.3;
    text-transform: uppercase;
    white-space: nowrap;
}

.sector-left .sector-title {
    animation-delay: 2.2s;
}

.sector-right .sector-title {
    animation-delay: 2.3s;
}


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


/* Button */
.sector-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 15px 40px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUpFade 0.8s ease-out forwards;
}

.sector-left .sector-btn {
    animation-delay: 2.6s;
}

.sector-right .sector-btn {
    animation-delay: 2.7s;
}

.sector-btn:hover {
    background: white;
    color: #333;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sector-btn .arrow {
    transition: transform 0.3s ease;
}

.sector-btn:hover .arrow {
    transform: translateX(5px);
}

/* Copyright */
.copyright {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    z-index: 100;
    opacity: 0;
    animation: copyrightFadeIn 1s ease-out 3s forwards;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 1px;
}

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

/* Tablet (iPad) Dikey için Özel Düzenleme */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    /* Tablet Logo Boyutu - Daha Küçük */
    .logo-image {
        max-width: clamp(160px, 22vw, 200px);
        max-height: clamp(70px, 8vh, 90px);
    }
    
    .logo::before {
        width: clamp(130px, 20vw, 170px);
        height: clamp(130px, 20vw, 170px);
    }
    
    .logo::after {
        width: clamp(160px, 25vw, 200px);
        height: clamp(160px, 25vw, 200px);
    }
    
    /* Tablet Slogan Boyutu */
    .sector-slogan {
        font-size: clamp(1.4rem, 2.8vw, 1.8rem);
        margin-bottom: clamp(10px, 1.8vh, 16px);
        letter-spacing: clamp(0.5px, 0.15vw, 1px);
    }

    /* Tablet Başlık Boyutu - Daha Küçük */
    .sector-title {
        font-size: clamp(1.4rem, 2.8vw, 1.8rem);
        margin-bottom: clamp(12px, 2vh, 18px);
    }
    
    /* Tablet Buton Boyutu - Daha Küçük - Touch target minimum 44x44px */
    .sector-btn {
        padding: clamp(11px, 1.8vw, 13px) clamp(26px, 3.5vw, 30px);
        font-size: clamp(0.85rem, 1.4vw, 0.95rem);
        min-height: 44px;
        min-width: 120px;
    }
    
    /* Tablet İkon Boyutları - Daha Küçük */
    .battery-container,
    .tank-container {
        width: clamp(140px, 18vw, 170px);
        height: clamp(210px, 27vw, 255px);
        top: clamp(28%, 7vh, 33%);
    }
    
    .sector-content {
        top: clamp(58%, 11vh, 63%);
        padding: clamp(20px, 3vw, 28px);
    }
    
    /* Tablet Su Canvas Ayarları */
    .water-canvas,
    .water-surface-canvas {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: clamp(130px, 16vw, 160px);
        height: clamp(170px, 22vw, 210px);
        pointer-events: none;
        z-index: 2;
        clip-path: polygon(5% 0%, 95% 0%, 98% 100%, 2% 100%);
        border-radius: 38px;
    }
}

/* iPad Yatay (Landscape) için Özel Düzenleme */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
    /* iPad Yatay Logo Container - Açılırken ortada, sonra %25 yukarı */
    .logo-container {
        top: 50%; /* Açılırken ortada */
        animation: logoFadeInTablet 1.2s ease-out 0.3s forwards,
                   logoMoveUpTablet 1s ease-out 2s forwards;
    }
    
    /* iPad Yatay Logo Boyutu */
    .logo-image {
        max-width: clamp(200px, 18vw, 240px);
        max-height: clamp(90px, 8vh, 110px);
    }
    
    .logo::before {
        width: clamp(170px, 20vw, 200px);
        height: clamp(170px, 20vw, 200px);
    }
    
    .logo::after {
        width: clamp(200px, 25vw, 240px);
        height: clamp(200px, 25vw, 240px);
    }
    
    /* iPad Yatay Slogan Boyutu */
    .sector-slogan {
        font-size: clamp(1.6rem, 2.8vw, 2.2rem);
        margin-bottom: clamp(12px, 1.8vh, 16px);
        letter-spacing: clamp(0.5px, 0.1vw, 0.8px);
    }

    /* iPad Yatay Başlık Boyutu */
    .sector-title {
        font-size: clamp(1.6rem, 2.8vw, 2.2rem);
        margin-bottom: clamp(15px, 2.2vh, 20px);
    }
    
    /* iPad Yatay Buton Boyutu */
    .sector-btn {
        padding: clamp(11px, 1.5vw, 13px) clamp(28px, 3.5vw, 34px);
        font-size: clamp(0.9rem, 1.3vw, 1rem);
        min-height: 44px;
    }
    
    /* iPad Yatay İkon Boyutları */
    .battery-container,
    .tank-container {
        width: clamp(160px, 15vw, 190px);
        height: clamp(240px, 22.5vw, 285px);
        top: clamp(30%, 7vh, 35%);
    }
    
    /* iPad Yatay İçerik Konumu */
    .sector-content {
        top: clamp(60%, 11vh, 64%);
        padding: clamp(20px, 2.5vw, 32px);
    }
    
    /* iPad Yatay Su Canvas Ayarları */
    .water-canvas,
    .water-surface-canvas {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: clamp(140px, 13vw, 160px);
        height: clamp(180px, 19vw, 200px);
        pointer-events: none;
        z-index: 2;
        clip-path: polygon(5% 0%, 95% 0%, 98% 100%, 2% 100%);
        border-radius: 38px;
    }
}

/* iPad Yatay Logo Animasyonları */
@keyframes logoFadeInTablet {
    to {
        opacity: 1;
    }
}

@keyframes logoMoveUpTablet {
    from {
        top: 50%; /* Açılırken ortada */
        transform: translate(-50%, -50%);
    }
    to {
        top: 25%; /* Ortadan %25 yukarı (50% - 25% = 25%) */
        transform: translate(-50%, -50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    /* Mobilde Copyright'ı Gizle */
    .copyright {
        display: none;
    }
    
    .logo-text {
        font-size: 2.5rem;
        letter-spacing: 8px;
    }

    .logo-subtitle {
        font-size: 0.9rem;
    }

    html, body {
        height: 100%;
        width: 100%;
        overflow: hidden;
        position: fixed;
        margin: 0;
        padding: 0;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .main-content {
        flex-direction: column;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .sector {
        height: 50vh;
        height: 50dvh; /* Dynamic viewport height for mobile */
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .sector-slogan {
        font-size: clamp(1.2rem, 5vw, 2rem);
        margin-bottom: clamp(8px, 2vh, 12px);
        letter-spacing: 0.5px;
    }

    .sector-title {
        font-size: clamp(1.2rem, 5vw, 2rem);
        margin-bottom: clamp(20px, 4vh, 30px); /* Mobilde başlık ile buton arasına boşluk */
    }


    /* Mobilde İkonları Küçült - Üstte - Ekrana Göre Ölçeklendir - %15 daha küçük - %10 daha aşağı */
    .battery-container,
    .tank-container {
        width: clamp(72px, 26vw, 150px);
        height: auto;
        aspect-ratio: 2/3;
        top: clamp(25%, 7vh, 32%); /* 20% + 10% = 30% (içeriklerle uyumlu) */
    }

    .battery-icon,
    .tank-icon {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Mobilde Yazılar - Altta - Her İki Taraf İçin Aşağı */
    .sector-content {
        top: 67%; /* %10 daha aşağı (57% + 10% = 67%) */
        
        padding: clamp(15px, 4vw, 25px);
        max-width: 95%;
        width: auto;
    }
    
    /* Mobilde Buton Küçült - Touch target minimum 44x44px */
    .sector-btn {
        padding: clamp(12px, 3vw, 16px) clamp(28px, 7vw, 36px);
        font-size: clamp(0.85rem, 2.2vw, 1rem);
        margin-top: clamp(15px, 3vh, 25px); /* Mobilde başlık ile buton arasına ekstra boşluk */
        min-height: 44px;
        min-width: 140px;
    }

    .energy-flow-canvas {
        width: 100%;
        height: 100%;
    }
    
    /* Mobilde Su Canvas'larını Depo İçine Sığdır */
    .water-canvas,
    .water-surface-canvas {
        /* Mobilde tank-container boyutuna göre ayarla */
        width: clamp(60px, 24vw, 140px);
        height: clamp(90px, 36vw, 210px);
        /* Margin-top kaldırıldı - tank içine tam oturması için */
        /* Depo içine sığdır - mobil için daha dar clip-path */
        clip-path: polygon(8% 0%, 92% 0%, 96% 100%, 4% 100%);
    }

    /* Mobilde Logo Boyutu */
    .logo-image {
        max-width: clamp(150px, 40vw, 220px);
        max-height: clamp(60px, 10vh, 110px);
    }

    .logo::before {
        width: clamp(120px, 30vw, 160px);
        height: clamp(120px, 30vw, 160px);
    }

    .logo::after {
        width: clamp(150px, 38vw, 190px);
        height: clamp(150px, 38vw, 190px);
    }
}

/* Küçük Mobil Cihazlar için Daha Küçük İkonlar - %15 daha küçük */
@media (max-width: 480px) {
    .battery-container,
    .tank-container {
        width: clamp(58px, 22vw, 115px);
        top: clamp(25%, 8vh, 32%); /* İçeriklerle uyumlu - %10 daha aşağı */
    }

    .sector-slogan {
        font-size: clamp(1.1rem, 4.5vw, 1.6rem);
        margin-bottom: clamp(8px, 1.5vh, 12px);
        letter-spacing: 0.5px;
    }

    .sector-title {
        font-size: clamp(1.1rem, 4.5vw, 1.6rem);
        margin-bottom: clamp(18px, 3.5vh, 28px); /* Küçük ekranlarda başlık ile buton arasına boşluk */
    }

    .sector-btn {
        padding: clamp(11px, 2.5vw, 14px) clamp(26px, 6.5vw, 32px);
        font-size: clamp(0.8rem, 2vw, 0.9rem);
        margin-top: clamp(12px, 2.5vh, 18px); /* Küçük ekranlarda başlık ile buton arasına ekstra boşluk */
        min-height: 44px;
        min-width: 130px;
    }

    .sector-content {
        padding: clamp(12px, 3vw, 18px);
        top: 67%; /* Küçük ekranlarda da %10 daha aşağı */
    }
}

/* Çok Küçük Ekranlar - %15 daha küçük */
@media (max-width: 375px) {
    .battery-container,
    .tank-container {
        width: clamp(51px, 21vw, 100px);
        top: clamp(25%, 8vh, 32%); /* İçeriklerle uyumlu - %10 daha aşağı */
    }
    
    .sector-slogan {
        font-size: clamp(1rem, 4vw, 1.4rem);
        margin-bottom: clamp(6px, 1.2vh, 10px);
    }
    
    .sector-title {
        font-size: clamp(1rem, 4vw, 1.4rem);
        margin-bottom: clamp(15px, 3vh, 22px);
    }
    
    .sector-btn {
        padding: clamp(8px, 2vw, 11px) clamp(20px, 5vw, 26px);
        font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    }
    
    .sector-content {
        padding: clamp(10px, 2.5vw, 15px);
    }
}

/* 1920x919 Ekran Çözünürlüğü için Özel Düzenleme */
@media (min-width: 1920px) and (min-height: 900px) and (max-height: 950px) {
    .sector-content {
        top: 71%;
    }
}

/* Cache-busting timestamp: 2026-01-22 12:34:06 */
