/* Main Banner Container with SVG Inside */
.main-banner-container {
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 0 40px;
    min-height: 480px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.main-banner-container .hero-wrapper {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    height: 480px;
    width: 100%;
}

/* Banner SVG Container - ALT KISIM - SABİT KALACAK */
.banner-svg-container {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    justify-content: center;
    z-index: 20;
}

/* SVG Overlay Container - Banner İçinde - SABİT KALACAK */
.svg-overlay-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 25;
}

/* SVG Item - Banner İçinde - SABİT KALACAK */
.svg-item {
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: transparent;
    border: none;
    padding: 4px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.svg-item:hover {
    transform: translateY(-2px) scale(1.05);
    z-index: 5;
}

.svg-image {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

/* TÜM SVG'LER BEYAZ RENK - SADECE BEYAZ */
.svg-image {
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* Renkli PNG (CS2) — beyaz siluet filtresi uygulanmaz */
img.svg-image[src*="counter-strike-21.png"] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35)) !important;
}

.svg-item:hover img.svg-image[src*="counter-strike-21.png"] {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.45)) !important;
}

.svg-item.svg-active img.svg-image[src*="counter-strike-21.png"] {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5)) !important;
}

/* Hover efekti - BEYAZ */
.svg-item:hover .svg-image {
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
    transform: scale(1.08);
}

/* ACTIVE SVG - DAHA KÜÇÜK VE TEMİZ */
.svg-item.svg-active {
    transform: translateY(-3px) scale(1.1) !important;
    z-index: 20 !important;
    position: relative;
}

.svg-item.svg-active .svg-image {
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.7)) !important;
    transform: scale(1.1);
    width: 38px !important;
    height: 38px !important;
}


/* Banner Styles */
.hero-wrapper {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    height: 480px;
    background-color: #1b263b;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    display: flex;
    align-items: flex-start;
    padding-top: 30px;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    z-index: 1;
    border-radius: 14px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(90deg, 
        #1b263b 30%, 
        rgba(27, 38, 59, 0.95) 45%, 
        rgba(27, 38, 59, 0.4) 70%, 
        rgba(27, 38, 59, 0) 100%);
    border-radius: 14px;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 550px;
    padding-left: 60px;
    color: #fff;
}

.badge {
    display: inline-block;
    border: 1px solid #ff4747;
    color: #ff4747;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(255, 71, 71, 0.1);
}

.hero-content h2 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #e5e7eb;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.5;
    max-width: 85%;
}

/* Tıklanabilir banner için */
.clickable-banner {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.clickable-banner:hover {
    transform: scale(1.01);
}

/* Tablet ve dar masaüstü: biraz alçalt, sol metin + karakter hissi korunur */
@media (max-width: 1024px) {
    .main-banner-container {
        padding: 0 16px;
        min-height: 380px;
        margin: 20px auto;
    }

    .main-banner-container .hero-wrapper,
    .hero-wrapper {
        height: 380px;
        padding-top: 22px;
        border-radius: 12px;
    }

    .banner-svg-container {
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 24px);
        max-width: 520px;
    }

    .svg-overlay-container {
        gap: 16px;
        padding: 10px 14px;
        width: 100%;
        flex-wrap: nowrap;
        justify-content: center;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .svg-overlay-container::-webkit-scrollbar {
        display: none;
    }

    .svg-item {
        flex: 0 0 auto;
    }

    .svg-image {
        width: 28px;
        height: 28px;
    }

    .svg-item.svg-active .svg-image {
        width: 32px !important;
        height: 32px !important;
    }

    .hero-content {
        padding-left: 28px;
        padding-right: 12px;
        max-width: min(520px, 58vw);
        text-align: left;
    }

    .hero-content h1 {
        font-size: clamp(1.35rem, 3.2vw, 1.85rem);
    }

    .hero-content h2 {
        font-size: 0.95rem;
    }

    .hero-content p {
        font-size: 0.82rem;
        max-width: 100%;
    }

    .badge {
        font-size: 0.68rem;
        padding: 5px 12px;
        margin-bottom: 10px;
    }

    .hero-bg {
        width: 100%;
        background-position: 85% center;
    }

    .hero-overlay {
        background: linear-gradient(
            100deg,
            #1b263b 0%,
            rgba(27, 38, 59, 0.92) 38%,
            rgba(27, 38, 59, 0.35) 72%,
            rgba(27, 38, 59, 0.08) 100%
        );
    }

    .svg-item.svg-active {
        transform: translateY(-2px) scale(1.08) !important;
    }
}

/* Küçük tablet */
@media (max-width: 768px) {
    .main-banner-container {
        min-height: 300px;
        margin: 16px auto;
        padding: 0 12px;
    }

    .main-banner-container .hero-wrapper,
    .hero-wrapper {
        height: 300px;
        padding-top: 16px;
    }

    .hero-content {
        padding-left: 18px;
        max-width: min(100%, 280px);
    }

    .hero-content h1 {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .hero-content h2 {
        font-size: 0.82rem;
        margin-bottom: 4px;
    }

    .hero-content p {
        font-size: 0.72rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .badge {
        font-size: 0.6rem;
        padding: 4px 10px;
        margin-bottom: 8px;
    }

    .banner-svg-container {
        bottom: 10px;
        width: calc(100% - 16px);
        max-width: none;
    }

    .svg-overlay-container {
        gap: 12px;
        padding: 8px 12px;
        border-radius: 8px;
    }

    .hero-bg {
        background-position: 78% 20%;
    }

    .hero-overlay {
        background: linear-gradient(
            105deg,
            #1b263b 0%,
            rgba(27, 38, 59, 0.94) 42%,
            rgba(27, 38, 59, 0.45) 68%,
            rgba(27, 38, 59, 0.12) 100%
        );
    }
}

/* Telefon: kompakt ama düzen aynı (sol metin, altta oyun şeridi) */
@media (max-width: 480px) {
    .main-banner-container {
        padding: 0 10px;
        min-height: 248px;
        margin: 12px auto;
    }

    .main-banner-container .hero-wrapper,
    .hero-wrapper {
        height: 248px;
        padding-top: 12px;
        border-radius: 10px;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
    }

    .banner-svg-container {
        bottom: 8px;
        width: calc(100% - 12px);
    }

    .svg-overlay-container {
        gap: 10px;
        padding: 6px 10px;
        border-radius: 8px;
    }

    .svg-image {
        width: 22px;
        height: 22px;
    }

    .svg-item.svg-active .svg-image {
        width: 26px !important;
        height: 26px !important;
    }

    .hero-content {
        padding-left: 14px;
        padding-right: 8px;
        max-width: 56%;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 1.05rem;
        line-height: 1.15;
        margin-bottom: 6px;
    }

    .hero-content h2 {
        font-size: 0.68rem;
        letter-spacing: 0.2px;
    }

    .hero-content p {
        font-size: 0.65rem;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .badge {
        font-size: 0.55rem;
        padding: 3px 8px;
        margin-bottom: 6px;
        letter-spacing: 0.4px;
    }

    .hero-bg {
        background-position: 88% 15%;
        background-size: cover;
    }

    .hero-overlay {
        background: linear-gradient(
            110deg,
            #1b263b 0%,
            rgba(27, 38, 59, 0.97) 48%,
            rgba(27, 38, 59, 0.4) 78%,
            rgba(27, 38, 59, 0.05) 100%
        );
    }

    .svg-item.svg-active {
        transform: translateY(-2px) scale(1.05) !important;
    }

    .svg-item::after {
        width: 5px;
        height: 5px;
        bottom: -4px;
    }

    .svg-item.svg-active::after {
        bottom: -8px;
    }
}
/* --- SVG İKON VE NOKTA AYARLARI --- */

/* 1. İkonun temel ayarı */
.svg-item {
    position: relative; /* Noktayı buna göre hizalamak şart */
    /* Diğer ayarların aynen kalsın */
}

/* 2. NOKTANIN TASARIMI (Başlangıçta Gizli) */
.svg-item::after {
    content: '';
    position: absolute;
    bottom: -5px; /* İkonun tam altında başlasın */
    left: 50%;
    /* Ortala ve Boyutunu 0 yap (Gizle) */
    transform: translateX(-50%) scale(0); 
    
    /* NOKTA RENGİ VE ŞEKLİ */
    width: 6px;  
    height: 6px;
    background-color: #009dabaf; /* Kırmızı İç Renk */
    border: 1px solid #ffffff; /* Beyaz Çerçeve (İsteğin üzerine) */
    border-radius: 50%; /* Tam yuvarlak */
    box-shadow: 0 2px 5px rgba(255, 71, 71, 0.4); /* Hafif kırmızı gölge */
    
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Yaylanarak gelme efekti */
}

/* 3. AKTİF OLUNCA NOKTA GÖRÜNSÜN */
.svg-item.svg-active::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* Geniş ekran: daha büyük sıçrama + nokta konumu */
@media (min-width: 1025px) {
    .svg-item.svg-active::after {
        bottom: -10px;
    }

    .svg-item.svg-active {
        transform: translateY(-5px) scale(1.15) !important;
        z-index: 20 !important;
    }

    .svg-item.svg-active .svg-image {
        filter: brightness(0) invert(1) drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5)) !important;
    }
}

@media (max-width: 1024px) {
    .svg-item.svg-active::after {
        bottom: -8px;
    }
}
/* Tıklanabilir Wrapper Stili */
.hero-wrapper.clickable-banner-wrapper {
    cursor: pointer;
}

/* Ama SVG'lerin olduğu yer default cursor kalsın ki karışmasın */
.banner-svg-container {
    cursor: default;
}
.svg-item {
    cursor: pointer; /* İkonlar yine tıklanabilir görünsün */
}