/* banner.css - Hareketli Banner Stilleri - GÜNCELLENMİŞ */
/* TÜM KODLAR AYNEN KORUNDU, SADECE YÖRÜNGE YILDIZLARI SİMGELERE ÇEVRİLDİ */

.banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 80px 20px 40px;
}

/* Animasyonlu arkaplan deseni */
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(255, 215, 0, 0.08) 0%, transparent 40%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

.banner-container {
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    z-index: 10;
}

/* Banner İçerik Grid */
.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

/* Sol Taraf - Metin İçeriği */
.banner-text {
    color: #FFFFFF;
    padding-right: 1rem;
}

.banner-subtitle {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #FFD700;
    animation: fadeIn 1s ease-out;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.banner-title .static-text {
    color: #FFFFFF;
    display: block;
    font-size: 2.5rem;
}

.banner-title .dynamic-wrapper {
    display: block;
    min-height: 4rem;
    position: relative;
    perspective: 1000px;
}

.banner-title .dynamic-text {
    color: #FFD700;
    display: inline-block;
    font-size: 3rem;
    position: relative;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
}

/* Yazı Değişim Efektleri */
.banner-title .dynamic-text.changing {
    animation: flip3D 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes flip3D {
    0% {
        opacity: 1;
        transform: rotateX(0deg) scale(1);
    }
    40% {
        opacity: 0.5;
        transform: rotateX(90deg) scale(0.8);
    }
    60% {
        opacity: 0.5;
        transform: rotateX(90deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: rotateX(0deg) scale(1);
    }
}

/* Alternatif efektler - istediğinizi kullanabilirsiniz */
@keyframes slideSwap {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    45% {
        opacity: 0;
        transform: translateX(-100%);
    }
    55% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomRotate {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    40% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    60% {
        opacity: 0;
        transform: scale(0) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes glitchEffect {
    0% {
        opacity: 1;
        transform: skew(0deg);
        text-shadow: none;
    }
    20% {
        opacity: 0.8;
        transform: skew(10deg);
        text-shadow: -3px 0 #FFD700, 3px 0 #FFFFFF;
    }
    40% {
        opacity: 0.6;
        transform: skew(-10deg);
        text-shadow: 3px 0 #FFD700, -3px 0 #FFFFFF;
    }
    60% {
        opacity: 0.8;
        transform: skew(5deg);
        text-shadow: -2px 0 #FFD700, 2px 0 #FFFFFF;
    }
    80% {
        opacity: 0.9;
        transform: skew(-5deg);
        text-shadow: 2px 0 #FFD700, -2px 0 #FFFFFF;
    }
    100% {
        opacity: 1;
        transform: skew(0deg);
        text-shadow: none;
    }
}

.banner-description {
    font-size: 1.1rem;
    color: #CCCCCC;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.8;
    animation: fadeIn 1s ease-out 0.3s both;
}

/* Hizmet Etiketleri */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.4s both;
}

.service-tag {
    padding: 0.5rem 1.2rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    color: #FFFFFF;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    transform: translateY(-2px);
}

.service-tag i {
    color: #FFD700;
    margin-right: 5px;
    font-size: 0.8rem;
}

/* Butonlar */
.banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.5s both;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #FFD700;
    color: #000000;
    border: 2px solid #FFD700;
}

.btn-primary:hover {
    background: transparent;
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFD700;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* ===== BÜYÜK YILDIZ ===== */
.banner-visual {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-container {
    position: relative;
    width: 500px;
    height: 500px;
    animation: float 6s ease-in-out infinite;
}

/* Büyük Merkez Yıldız */
.giant-star {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, #FFD700, #ffaa00, #ff8800);
    border-radius: 50%;
    box-shadow: 
        0 0 150px rgba(255, 215, 0, 0.8),
        0 0 300px rgba(255, 215, 0, 0.4),
        inset -30px -30px 80px rgba(0,0,0,0.3),
        inset 30px 30px 80px rgba(255,255,255,0.5);
    z-index: 5;
    animation: starPulse 4s ease-in-out infinite;
}

/* Yıldızın parlak çekirdeği */
.star-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #FFFFFF 0%, #FFD700 70%);
    border-radius: 50%;
    box-shadow: 0 0 100px #FFFFFF;
    z-index: 6;
    animation: corePulse 2s ease-in-out infinite;
}

/* Yıldız ışınları */
.star-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: conic-gradient(from 0deg, 
        transparent 0deg, 
        rgba(255, 215, 0, 0.1) 30deg, 
        transparent 60deg,
        rgba(255, 215, 0, 0.1) 90deg,
        transparent 120deg,
        rgba(255, 215, 0, 0.1) 150deg,
        transparent 180deg,
        rgba(255, 215, 0, 0.1) 210deg,
        transparent 240deg,
        rgba(255, 215, 0, 0.1) 270deg,
        transparent 300deg,
        rgba(255, 215, 0, 0.1) 330deg,
        transparent 360deg
    );
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    z-index: 4;
}

/* Yıldız ışınları - dış halka */
.star-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.4) 0%, rgba(255,215,0,0.2) 30%, transparent 70%);
    filter: blur(20px);
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 3;
}

/* ===== YÖRÜNGEDEKİ SİMGELER (TELEFON, BİLGİSAYAR, INSTAGRAM, KOD) ===== */
.orbit-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10;
    transition: all 0.3s ease;
}

.orbit-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.orbit-icon i {
    font-size: 2rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

/* İç yörünge - 250px */
.orbit-icon-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(0deg) translateZ(220px);
    animation: orbitY 12s linear infinite;
}

.orbit-icon-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(90deg) translateZ(220px);
    animation: orbitY 12s linear infinite;
}

.orbit-icon-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(180deg) translateZ(220px);
    animation: orbitY 12s linear infinite reverse;
}

.orbit-icon-4 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(270deg) translateZ(220px);
    animation: orbitY 12s linear infinite reverse;
}

/* Orta yörünge - 280px */
.orbit-icon-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(45deg) rotateY(45deg) translateZ(260px);
    animation: orbitDiagonal 15s linear infinite;
}

.orbit-icon-6 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(-45deg) rotateY(45deg) translateZ(260px);
    animation: orbitDiagonal 15s linear infinite reverse;
}

/* Dış yörünge - 300px */
.orbit-icon-7 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(90deg) translateZ(280px);
    animation: orbitX 18s linear infinite;
}

.orbit-icon-8 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(-90deg) translateZ(280px);
    animation: orbitX 18s linear infinite reverse;
}

/* Yörünge yolları */
.orbit-path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 440px;
    height: 440px;
    border: 1px dashed rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.orbit-path-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    border: 1px dashed rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    animation: rotate 40s linear infinite reverse;
}

.orbit-path-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 560px;
    height: 560px;
    border: 1px dashed rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: rotate 50s linear infinite;
}

/* Uçan Elementler */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
}

.float-item {
    position: absolute;
    color: #FFD700;
    font-size: 1.2rem;
    opacity: 0.4;
    animation: floatRandom 15s linear infinite;
}

.float-item:nth-child(1) { top: 10%; left: 10%; animation-duration: 12s; }
.float-item:nth-child(2) { top: 20%; right: 15%; animation-duration: 15s; }
.float-item:nth-child(3) { bottom: 20%; left: 15%; animation-duration: 10s; }
.float-item:nth-child(4) { bottom: 30%; right: 10%; animation-duration: 18s; }
.float-item:nth-child(5) { top: 40%; left: 20%; animation-duration: 14s; }
.float-item:nth-child(6) { top: 60%; right: 20%; animation-duration: 16s; }

/* ===== SCROLL İNDİKATÖRÜ ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-size: 0.9rem;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-out 1.5s both;
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator span {
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    font-size: 0.85rem;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: #FFD700;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    animation: scrollMove 2s ease-in-out infinite;
    border-radius: 2px;
}

/* Mobil Scroll İndikatörü */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator span {
        padding: 4px 12px;
        font-size: 0.8rem;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .scroll-line {
        height: 40px;
        width: 2px;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-indicator span {
        padding: 3px 10px;
        font-size: 0.75rem;
    }
    
    .scroll-line {
        height: 30px;
    }
}

/* Landscape modda scroll indikatörü gizle */
@media (max-height: 500px) and (orientation: landscape) {
    .scroll-indicator {
        display: none;
    }
}

/* Yıldız Animasyonları */
@keyframes starPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 150px rgba(255, 215, 0, 0.8), 0 0 300px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 200px rgba(255, 215, 0, 1), 0 0 400px rgba(255, 215, 0, 0.6);
    }
}

@keyframes corePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.9;
    }
}

/* Ana Animasyonlar */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes orbitY {
    0% {
        transform: translate(-50%, -50%) rotateY(0deg) translateZ(220px) rotateY(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateY(360deg) translateZ(220px) rotateY(-360deg);
    }
}

@keyframes orbitX {
    0% {
        transform: translate(-50%, -50%) rotateX(0deg) translateZ(280px) rotateX(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateX(360deg) translateZ(280px) rotateX(-360deg);
    }
}

@keyframes orbitDiagonal {
    0% {
        transform: translate(-50%, -50%) rotateX(45deg) rotateY(45deg) translateZ(260px) rotateX(-45deg) rotateY(-45deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateX(45deg) rotateY(405deg) translateZ(260px) rotateX(-45deg) rotateY(-405deg);
    }
}

@keyframes floatRandom {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(100px, -100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes scrollMove {
    0% {
        top: -100%;
    }
    100% {
        top: 100%;
    }
}

/* ========== RESPONSIVE TASARIM ========== */

/* Büyük Tablet (1024px ve altı) */
@media (max-width: 1024px) {
    .banner-content {
        gap: 1rem;
    }
    
    .banner-title {
        font-size: 3rem;
    }
    
    .banner-title .static-text {
        font-size: 2.2rem;
    }
    
    .banner-title .dynamic-text {
        font-size: 2.5rem;
    }
    
    .star-container {
        width: 450px;
        height: 450px;
    }
    
    .giant-star {
        width: 250px;
        height: 250px;
    }
    
    .star-core {
        width: 120px;
        height: 120px;
    }
    
    .star-rays {
        width: 380px;
        height: 380px;
    }
    
    .orbit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    .banner {
        padding: 100px 20px 60px;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .banner-text {
        padding-right: 0;
        order: 2;
    }
    
    .banner-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .banner-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-tags {
        justify-content: center;
    }
    
    .banner-buttons {
        justify-content: center;
    }
    
    .banner-visual {
        order: 1;
        height: 400px;
    }
    
    .star-container {
        width: 350px;
        height: 350px;
    }
    
    .giant-star {
        width: 200px;
        height: 200px;
    }
    
    .star-core {
        width: 100px;
        height: 100px;
    }
    
    .star-rays {
        width: 300px;
        height: 300px;
    }
    
    .orbit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Büyük Telefon (480px ve altı) */
@media (max-width: 480px) {
    .banner {
        padding: 90px 15px 50px;
    }
    
    .banner-title {
        font-size: 2.2rem;
    }
    
    .banner-title .static-text {
        font-size: 1.6rem;
    }
    
    .banner-title .dynamic-text {
        font-size: 2rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    .service-tag {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .banner-visual {
        height: 300px;
    }
    
    .star-container {
        width: 280px;
        height: 280px;
    }
    
    .giant-star {
        width: 150px;
        height: 150px;
    }
    
    .star-core {
        width: 70px;
        height: 70px;
    }
    
    .star-rays {
        width: 220px;
        height: 220px;
    }
    
    .orbit-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}


/* ========== RESPONSIVE TASARIM - YILDIZ BOYUTLARI KÜÇÜLTÜLDÜ ========== */

/* Büyük Tablet (1024px ve altı) */
@media (max-width: 1024px) {
    .banner-content {
        gap: 1rem;
    }
    
    .banner-title {
        font-size: 3rem;
    }
    
    .banner-title .static-text {
        font-size: 2.2rem;
    }
    
    .banner-title .dynamic-text {
        font-size: 2.5rem;
    }
    
    .star-container {
        width: 400px;
        height: 400px;
    }
    
    .giant-star {
        width: 220px;
        height: 220px;
    }
    
    .star-core {
        width: 100px;
        height: 100px;
    }
    
    .star-rays {
        width: 320px;
        height: 320px;
    }
    
    .orbit-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    .banner {
        padding: 100px 20px 60px;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .banner-text {
        padding-right: 0;
        order: 2;
    }
    
    .banner-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-title .static-text {
        font-size: 1.8rem;
    }
    
    .banner-title .dynamic-wrapper {
        min-height: 3rem;
    }
    
    .banner-title .dynamic-text {
        font-size: 2.2rem;
    }
    
    .banner-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
        max-width: 400px;
    }
    
    .service-tags {
        justify-content: center;
        gap: 0.6rem;
    }
    
    .service-tag {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .banner-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .banner-visual {
        order: 1;
        height: 350px;
    }
    
    .star-container {
        width: 300px;
        height: 300px;
    }
    
    .giant-star {
        width: 160px;
        height: 160px;
    }
    
    .star-core {
        width: 70px;
        height: 70px;
    }
    
    .star-rays {
        width: 240px;
        height: 240px;
    }
    
    .star-glow {
        width: 200px;
        height: 200px;
    }
    
    .orbit-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        border-width: 1.5px;
    }
    
    .orbit-icon i {
        font-size: 1.3rem;
    }
    
    .orbit-path {
        width: 340px;
        height: 340px;
    }
    
    .orbit-path-2 {
        width: 380px;
        height: 380px;
    }
    
    .orbit-path-3 {
        width: 420px;
        height: 420px;
    }
    
    .float-item {
        font-size: 1rem;
    }
}

/* Büyük Telefon (480px ve altı) */
@media (max-width: 480px) {
    .banner {
        padding: 90px 15px 50px;
    }
    
    .banner-subtitle {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-title .static-text {
        font-size: 1.5rem;
    }
    
    .banner-title .dynamic-text {
        font-size: 1.8rem;
    }
    
    .banner-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .service-tag {
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .service-tag i {
        font-size: 0.7rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .banner-visual {
        height: 280px;
    }
    
    .star-container {
        width: 240px;
        height: 240px;
    }
    
    .giant-star {
        width: 120px;
        height: 120px;
        box-shadow: 0 0 80px rgba(255, 215, 0, 0.6), 0 0 150px rgba(255, 215, 0, 0.3);
    }
    
    .star-core {
        width: 55px;
        height: 55px;
        box-shadow: 0 0 50px #FFFFFF;
    }
    
    .star-rays {
        width: 180px;
        height: 180px;
    }
    
    .star-glow {
        width: 150px;
        height: 150px;
        filter: blur(10px);
    }
    
    .orbit-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        border-width: 1.5px;
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    }
    
    .orbit-icon i {
        font-size: 1rem;
    }
    
    .orbit-path {
        width: 260px;
        height: 260px;
        border-width: 1px;
    }
    
    .orbit-path-2 {
        width: 290px;
        height: 290px;
    }
    
    .orbit-path-3 {
        width: 320px;
        height: 320px;
    }
    
    .float-item {
        font-size: 0.9rem;
    }
}

/* Küçük Telefon (360px ve altı) */
@media (max-width: 360px) {
    .banner {
        padding: 80px 12px 40px;
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-title .static-text {
        font-size: 1.3rem;
    }
    
    .banner-title .dynamic-text {
        font-size: 1.6rem;
    }
    
    .banner-description {
        font-size: 0.85rem;
    }
    
    .service-tag {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .banner-buttons {
        gap: 0.5rem;
    }
    
    .banner-visual {
        height: 220px;
    }
    
    .star-container {
        width: 200px;
        height: 200px;
    }
    
    .giant-star {
        width: 90px;
        height: 90px;
    }
    
    .star-core {
        width: 40px;
        height: 40px;
    }
    
    .star-rays {
        width: 140px;
        height: 140px;
    }
    
    .star-glow {
        width: 120px;
        height: 120px;
    }
    
    .orbit-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .orbit-icon i {
        font-size: 0.8rem;
    }
    
    .orbit-path {
        width: 210px;
        height: 210px;
    }
    
    .orbit-path-2 {
        width: 235px;
        height: 235px;
    }
    
    .orbit-path-3 {
        width: 260px;
        height: 260px;
    }
}

/* Landscape modu (yatay telefon) */
@media (max-height: 500px) and (orientation: landscape) {
    .banner {
        min-height: auto;
        padding: 80px 20px 40px;
    }
    
    .banner-content {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .banner-visual {
        height: 250px;
    }
    
    .star-container {
        width: 220px;
        height: 220px;
    }
    
    .giant-star {
        width: 100px;
        height: 100px;
    }
    
    .star-core {
        width: 45px;
        height: 45px;
    }
    
    .orbit-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-title .static-text {
        font-size: 1.4rem;
    }
    
    .banner-title .dynamic-text {
        font-size: 1.6rem;
    }
    
    .scroll-indicator {
        display: none;
    }
}