/* Genel Ayarlar */
html {
    overflow-y: scroll;
    /* İçerik kısa olsa bile kaydırma çubuğunu her zaman göster */
    height: 100%;
    scrollbar-gutter: stable;
}

/* ==========================================
   PAGE TRANSITION - Etkileyici Sayfa Geçişi
   ========================================== */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    pointer-events: none;
    perspective: 1000px;
}

/* Çapraz Dilimler */
.transition-slice {
    position: absolute;
    width: 25%;
    height: 100%;
    background: linear-gradient(135deg, #ed1c24 0%, #ff4757 50%, #c0392b 100%);
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}

.transition-slice:nth-child(1) {
    left: 0%;
    transition-delay: 0s;
}

.transition-slice:nth-child(2) {
    left: 25%;
    transition-delay: 0.08s;
}

.transition-slice:nth-child(3) {
    left: 50%;
    transition-delay: 0.16s;
}

.transition-slice:nth-child(4) {
    left: 75%;
    transition-delay: 0.24s;
}

.page-transition-overlay.active .transition-slice {
    transform: translateY(0);
}

.page-transition-overlay.exit .transition-slice {
    transform: translateY(100%);
    transition-delay: 0s;
}

.page-transition-overlay.exit .transition-slice:nth-child(1) {
    transition-delay: 0.24s;
}

.page-transition-overlay.exit .transition-slice:nth-child(2) {
    transition-delay: 0.16s;
}

.page-transition-overlay.exit .transition-slice:nth-child(3) {
    transition-delay: 0.08s;
}

.page-transition-overlay.exit .transition-slice:nth-child(4) {
    transition-delay: 0s;
}

/* Merkez Logo */
.transition-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(-180deg);
    z-index: 100000;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.3s;
}

.page-transition-overlay.active .transition-logo {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
}

.page-transition-overlay.exit .transition-logo {
    transform: translate(-50%, -50%) scale(0) rotate(180deg);
    opacity: 0;
    transition-delay: 0s;
}

.transition-logo img {
    width: 180px;
    filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
    animation: logoBreath 1s ease-in-out infinite;
}

@keyframes logoBreath {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    }

    50% {
        transform: scale(1.1);
        filter: brightness(0) invert(1) drop-shadow(0 0 40px rgba(255, 255, 255, 0.8));
    }
}

/* Parçacık Efekti */
.transition-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99998;
    pointer-events: none;
    overflow: hidden;
}

.transition-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
}

.page-transition-overlay.active~.transition-particles .transition-particle {
    animation: particleFly 1s ease-out forwards;
}

.transition-particle:nth-child(1) {
    left: 10%;
    top: 50%;
    animation-delay: 0.2s;
}

.transition-particle:nth-child(2) {
    left: 30%;
    top: 30%;
    animation-delay: 0.3s;
}

.transition-particle:nth-child(3) {
    left: 50%;
    top: 70%;
    animation-delay: 0.25s;
}

.transition-particle:nth-child(4) {
    left: 70%;
    top: 40%;
    animation-delay: 0.35s;
}

.transition-particle:nth-child(5) {
    left: 90%;
    top: 60%;
    animation-delay: 0.28s;
}

.transition-particle:nth-child(6) {
    left: 20%;
    top: 80%;
    animation-delay: 0.32s;
}

.transition-particle:nth-child(7) {
    left: 80%;
    top: 20%;
    animation-delay: 0.22s;
}

.transition-particle:nth-child(8) {
    left: 40%;
    top: 90%;
    animation-delay: 0.38s;
}

@keyframes particleFly {
    0% {
        opacity: 0;
        transform: scale(0) translateY(0);
    }

    30% {
        opacity: 1;
        transform: scale(1.5) translateY(-20px);
    }

    100% {
        opacity: 0;
        transform: scale(0) translateY(-100px);
    }
}

/* Loading Text */
.transition-text {
    position: fixed;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100000;
    color: white;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0.5s;
}

.page-transition-overlay.active .transition-text {
    opacity: 1;
}

.transition-text span {
    display: inline-block;
    animation: textWave 1.5s ease-in-out infinite;
}

.transition-text span:nth-child(1) {
    animation-delay: 0s;
}

.transition-text span:nth-child(2) {
    animation-delay: 0.1s;
}

.transition-text span:nth-child(3) {
    animation-delay: 0.2s;
}

.transition-text span:nth-child(4) {
    animation-delay: 0.3s;
}

.transition-text span:nth-child(5) {
    animation-delay: 0.4s;
}

.transition-text span:nth-child(6) {
    animation-delay: 0.5s;
}

.transition-text span:nth-child(7) {
    animation-delay: 0.6s;
}

@keyframes textWave {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Oyun Talep Banner */
.game-request-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1000;
}

.game-request-banner .banner-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.game-request-banner .banner-link {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    color: inherit;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-request-banner .banner-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.game-request-banner .banner-close {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.game-request-banner .banner-close:hover {
    opacity: 1;
}

.banner-info {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.banner-success {
    background: linear-gradient(135deg, #27ae60, #219a52);
    color: white;
}

.banner-warning {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.banner-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Oswald', sans-serif;
}

body {
    background-color: #fff;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Ana içerik alanı footer'ı aşağı iter */
main,
.service-container,
.archive-page {
    flex: 1;
}

/* Hero slider flexbox'tan çıkar - sabit yükseklik kullanır */
.hero-slider-container {
    flex: none !important;
}

.container {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
}

/* Link Düzenlemeleri */
a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
header {
    background: #fff;
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1003;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Kırmızı Çizgi - Modern Animasyon */
header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            #ed1c24 0%,
            #ff4757 25%,
            #ed1c24 50%,
            #ff4757 75%,
            #ed1c24 100%);
    background-size: 200% 100%;
    animation: redLineFlow 3s ease-in-out infinite;
}

/* Parlayan ışık efekti */
header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.6) 50%,
            transparent 100%);
    animation: shineMove 3s ease-in-out infinite;
    z-index: 1004;
}

@keyframes redLineFlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes shineMove {
    0% {
        left: -50%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
}

nav ul {
    display: flex;
    gap: 12px;
}

nav ul li a {
    color: #333;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

nav ul li a:hover::before {
    left: 100%;
}

nav ul li a:hover {
    color: #fff;
    background: linear-gradient(135deg, #ed1c24 0%, #c41919 100%);
    border-color: #ed1c24;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(237, 28, 36, 0.3);
}

nav ul li a.active {
    color: #fff;
    background: linear-gradient(135deg, #ed1c24 0%, #c41919 100%);
    border-color: #ed1c24;
    box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
}

.search-icon {
    font-size: 18px;
    cursor: pointer;
}

/* Hero Section (Banner) */
.hero {
    width: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Hizmetler Bölümü */
.services {
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
}

.services-grid {
    display: grid;
    /* Fixed 200px cells, wrap as needed and center */
    grid-template-columns: repeat(auto-fit, 200px);
    gap: 20px;
    justify-content: center;
}

.service-item img {
    width: 100%;
    border-radius: 15px;
    /* Köşeleri yuvarlatma */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.service-item img:hover {
    transform: translateY(-5px);
    /* Üzerine gelince hafif yukarı kalkar */
}

/* Hamburger Menü */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1005;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ed1c24;
    margin: 3px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive (Mobil Uyumluluk) */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .header-container {
        flex-wrap: wrap;
        position: relative;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }

    nav ul li {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        padding: 12px 20px;
        text-align: center;
        border-radius: 12px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    nav ul li a:hover,
    nav ul li a.active {
        background: linear-gradient(135deg, #ed1c24 0%, #c41919 100%);
        color: #fff;
        transform: none;
        box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        pointer-events: none;
    }

    .mobile-overlay.active {
        display: block;
        pointer-events: auto;
    }

    /* Menü açıkken nav'ın z-index'i overlay'dan yüksek olmalı */
    nav.active {
        z-index: 1001;
    }

    .search-wrapper {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        flex-direction: column;
        text-align: left;
        gap: 30px;
        align-items: stretch;
    }

    .footer-left,
    .footer-right {
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
    }

    .footer-right {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .logo-img {
        height: 36px;
    }
}

/* ==========================================
   ANİMASYONLAR
   ========================================== */

/* Scroll Reveal Animasyonu */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation (Sıralı Belirme) */
.reveal-stagger {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.active {
    opacity: 1;
    transform: translateY(0);
}

/* 3D Tilt Hover Efekti */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) scale(1.02);
}

/* Glow Efekti */
.glow-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.glow-btn:hover::before {
    left: 100%;
}

.glow-btn:hover {
    box-shadow: 0 0 20px rgba(237, 28, 36, 0.5), 0 0 40px rgba(237, 28, 36, 0.3);
}

/* Ripple Efekti */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
}

.ripple:active::after {
    transform: scale(0);
    opacity: 1;
    transition: 0s;
}

/* Pulse Animasyonu */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(237, 28, 36, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(237, 28, 36, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Float Animasyonu */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Shimmer Loading Efekti */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scale In */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    animation: scaleIn 0.4s ease forwards;
}

/* Oyun Kartı Özel Hover */
.game-card-animated {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.game-card-animated:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.game-card-animated:hover img {
    transform: scale(1.1);
}

.game-card-animated img {
    transition: transform 0.4s ease;
}

/* Logo Parıltı Efekti */
.logo-shine {
    position: relative;
    overflow: hidden;
}

.logo-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    transform: rotate(30deg);
    animation: logoShine 3s ease-in-out infinite;
}

@keyframes logoShine {
    0% {
        left: -200%;
    }

    50%,
    100% {
        left: 200%;
    }
}

/* Arama Alanı Tasarımı */
.search-container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

#serviceSearch {
    /* Başlangıçta gizli ama transition ile açılır */
    width: 0;
    padding: 8px 0;
    border: 2px solid #ed1c24;
    /* Kırmızı çerçeve */
    border-radius: 20px;
    outline: none;
    font-size: 14px;
    font-family: 'Oswald', sans-serif;
    /* Senin fontun */
    opacity: 0;
    visibility: hidden;
    transition: width 220ms ease, opacity 200ms ease, padding 200ms ease;
}

/* Kutu açıldığında uygulanacak sınıf */
#serviceSearch.aktif {
    width: 200px;
    padding: 8px 15px;
    opacity: 1;
    visibility: visible;
}

/* Takas Sayfası Özel Ayarları */
.takas-container {
    padding: 50px 0;
    /* Üstten ve alttan boşluk bırakır */
    min-height: 60vh;
    /* Sayfa içeriği az olsa bile footer yukarı kaçmasın */
}

.page-title {
    font-size: 36px;
    color: #ed1c24;
    /* Kırmızı başlık */
    margin-bottom: 10px;
}

/* Oyun Kapak Resimleri */
.image-container {
    width: 100%;
    height: 200px;
    /* Resim yüksekliği */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.game-cover {
    height: 100%;
    width: auto;
    object-fit: contain;
    /* Resmi kutuya sığdır */
    transition: 0.3s;
}

/* --- BANNER SLIDER TASARIMI --- */
.hero-slider-container {
    position: relative !important;
    width: 100% !important;
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
    overflow: hidden !important;
    background-color: #1a1a1a !important;
    /* Nötr koyu gri - tüm bannerlarla uyumlu */
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 4K Ekranlar için (2560px ve üzeri) */
@media (min-width: 2560px) {
    .hero-slider-container {
        height: 500px !important;
        min-height: 500px !important;
        max-height: 500px !important;
    }
}

/* 1440p Ekranlar için (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .hero-slider-container {
        height: 450px !important;
        min-height: 450px !important;
        max-height: 450px !important;
    }
}

.banner-wrapper,
.slider-wrapper,
#banner-wrapper {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    min-height: 100% !important;
    display: block !important;
}

/* Slayt Elemanları */
.slide-item {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
    display: block !important;
}

.slide-item.active {
    opacity: 1 !important;
    z-index: 1 !important;
}

.slide-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

/* Veri Yüklenirken Görünecek Yazı */
.loading-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    font-family: sans-serif;
    z-index: 5;
}

/* Navigasyon Okları */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: #ed1c24;
    border-color: #ed1c24;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 0 20px rgba(237, 28, 36, 0.5);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: 20px;
    animation: pulseLeft 2s ease-in-out infinite;
}

.next-btn {
    right: 20px;
    animation: pulseRight 2s ease-in-out infinite;
}

@keyframes pulseLeft {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(-5px);
    }
}

@keyframes pulseRight {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(5px);
    }
}

/* Alt Noktalar (Dots) */
.dots-wraper {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #ed1c24;
    /* Aktif nokta kırmızı olur */
}

/* --- MOBİL UYUMLULUK (Burası önemli) --- */
@media (max-width: 1440px) {
    .hero-slider-container {
        height: 350px !important;
        min-height: 350px !important;
        max-height: 350px !important;
    }
}

@media (max-width: 1024px) {
    .hero-slider-container {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
    }
}

@media screen and (max-width: 768px) {
    .hero-slider-container {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
        flex: none !important;
    }

    .slider-wrapper,
    #banner-wrapper,
    .banner-wrapper {
        height: 200px !important;
        max-height: 200px !important;
    }

    .slide-item {
        height: 200px !important;
        max-height: 200px !important;
    }

    .slide-item img {
        height: 200px !important;
        max-height: 200px !important;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

@media screen and (max-width: 480px) {
    .hero-slider-container {
        height: 160px !important;
        min-height: 160px !important;
        max-height: 160px !important;
    }

    .slider-wrapper,
    #banner-wrapper,
    .banner-wrapper {
        height: 160px !important;
        max-height: 160px !important;
    }

    .slide-item {
        height: 160px !important;
        max-height: 160px !important;
    }

    .slide-item img {
        height: 160px !important;
        max-height: 160px !important;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }
}

/* Çok küçük ekranlar (360px ve altı) */
@media screen and (max-width: 360px) {
    .hero-slider-container {
        height: 140px !important;
        min-height: 140px !important;
        max-height: 140px !important;
    }

    .slider-wrapper,
    #banner-wrapper,
    .banner-wrapper,
    .slide-item,
    .slide-item img {
        height: 140px !important;
        max-height: 140px !important;
    }

    .slider-btn {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }
}

/* --- HİZMETLERİ YAN YANA DİZEN KOD --- */

/* Hizmetlerin olduğu kutuyu 'Izgara' (Grid) yapısına çevirir */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    padding: 10px 0 30px 0;
    justify-items: center;
}

/* Her bir hizmet kutusunun görünümü */
.service-item {
    width: 200px;
    background: transparent;
    border: none;
    border-radius: 8px;
    overflow: visible;
    text-align: center;
    padding: 0;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

/* Hafif hover efekti: çok belirgin değil */
.service-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Resim ayarları (daha sade) */
.service-item .service-image {
    width: 100%;
    position: relative;
    height: 200px;
    /* fixed square */
    overflow: hidden;
    border-radius: 14px;
    background-color: #f6f6f6;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.service-item .service-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 220ms ease, transform 220ms ease;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.6) 100%);
}

.service-overlay .overlay-inner {
    padding: 12px 14px;
    text-align: center;
    pointer-events: none;
}

.service-item:hover .service-overlay,
.service-item:focus-within .service-overlay {
    opacity: 1;
    transform: translateY(0);
}

.service-content {
    display: block;
    padding-top: 8px;
    text-align: center;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.service-desc {
    font-size: 13px;
    margin: 6px 0 0 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile: smaller tiles */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, 140px);
        gap: 12px;
    }

    .service-item {
        width: 140px;
    }

    .service-item .service-image {
        height: 140px;
        border-radius: 10px;
    }

    .service-title {
        font-size: 14px;
    }
}

/* slide-item zaten üstte tanımlı, tekrar tanımlamaya gerek yok */

@media (max-width: 1024px) {

    /* Banner Hero Tasarımı */
    .banner-hero {
        position: relative;
        height: 500px;
        background: #000;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .banner-particles {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .particle {
        position: absolute;
        border-radius: 50%;
        opacity: 0.7;
        animation: float 20s infinite ease-in-out;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px) translateX(0px);
            opacity: 0.7;
        }

        50% {
            transform: translateY(-50px) translateX(30px);
            opacity: 0.4;
        }
    }

    .banner-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: white;
        margin-bottom: 40px;
    }

    .banner-content h1 {
        font-size: 56px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #ed1c24;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .banner-content p {
        font-size: 24px;
        color: #fff;
        letter-spacing: 1px;
    }

    .banner-icons {
        position: relative;
        z-index: 2;
        display: flex;
        gap: 40px;
        align-items: center;
        justify-content: center;
    }

    .banner-icon {
        width: 70px;
        height: 70px;
        background: rgba(237, 28, 36, 0.1);
        border: 2px solid #ed1c24;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ed1c24;
        font-size: 32px;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .banner-icon:hover {
        background: rgba(237, 28, 36, 0.2);
        transform: scale(1.1) rotateY(10deg);
        box-shadow: 0 0 20px rgba(237, 28, 36, 0.5);
    }

    @media (max-width: 768px) {
        .banner-hero {
            height: 400px;
        }

        .banner-content h1 {
            font-size: 36px;
        }

        .banner-content p {
            font-size: 18px;
        }

        .banner-icons {
            gap: 20px;
        }

        .banner-icon {
            width: 50px;
            height: 50px;
            font-size: 24px;
        }
    }
}

/* Banner Thumbnails */
.banner-thumbnails-container {
    background: #f5f5f5;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

.banner-thumbnails {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: auto;
    padding: 10px 0;
}

.banner-thumbnail {
    width: 150px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.banner-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.banner-thumbnail.active {
    border-color: #ed1c24;
    box-shadow: 0 0 15px rgba(237, 28, 36, 0.4);
}

.banner-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .banner-thumbnail {
        width: 100px;
        height: 60px;
    }

    .banner-thumbnails {
        justify-content: flex-start;
        padding: 10px;
    }

    .banner-thumbnails-container {
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .banner-thumbnail {
        width: 80px;
        height: 50px;
        border-width: 2px;
    }

    .banner-thumbnails-container {
        padding: 10px 0;
    }

    .banner-thumbnails {
        gap: 8px;
    }
}

/* ==========================================
   ANA SAYFA MODERN ANİMASYONLAR
   ========================================== */

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.welcome-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.welcome-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: -40px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title-animated {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.title-word {
    display: inline-block;
    animation: wordSlideIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    opacity: 0;
}

.title-word:nth-child(1) {
    animation-delay: 0.1s;
    color: #ed1c24;
}

.title-word:nth-child(2) {
    animation-delay: 0.3s;
    color: #000;
}

.title-word:nth-child(3) {
    animation-delay: 0.5s;
    color: #333;
}

@keyframes wordSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(-90deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* Features Grid - 3 Kartlık Modern Tasarım */
.features-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-card {
    background: white;
    padding: 35px 25px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    animation: cardFadeIn 0.8s ease-out forwards;
    opacity: 0;
    text-decoration: none;
    display: block;
    border: 2px solid transparent;
    width: 280px;
    flex-shrink: 0;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 28, 36, 0.08), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(237, 28, 36, 0.2);
    border-color: rgba(237, 28, 36, 0.3);
}

@keyframes cardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Feature Icon Wrapper */
.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ed1c24, #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(237, 28, 36, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-ring {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(237, 28, 36, 0.4);
}

/* Card Arrow */
.card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: rgba(237, 28, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ed1c24;
    font-size: 14px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.feature-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.feature-card h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 12px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #ed1c24;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Gaming Decoration Elements */
.gaming-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.gaming-decoration>div {
    position: absolute;
    font-size: 40px;
    color: rgba(237, 28, 36, 0.06);
    animation: floatDeco 20s ease-in-out infinite;
}

.deco-controller {
    top: 10%;
    left: 5%;
    font-size: 60px;
    animation-delay: 0s;
}

.deco-disc {
    top: 60%;
    right: 8%;
    font-size: 50px;
    animation-delay: 5s;
}

.deco-star {
    bottom: 15%;
    left: 15%;
    font-size: 35px;
    animation-delay: 10s;
}

@keyframes floatDeco {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }

    25% {
        transform: translateY(-30px) rotate(10deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    75% {
        transform: translateY(30px) rotate(-10deg);
    }
}

/* Floating Particles */
.particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particles-background .particle {
    position: absolute;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.1), rgba(237, 28, 36, 0.05));
    border-radius: 50%;
}

.particles-background .particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation: particleFloat1 20s infinite ease-in-out;
}

.particles-background .particle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 80%;
    animation: particleFloat2 15s infinite ease-in-out;
}

.particles-background .particle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 50%;
    animation: particleFloat3 25s infinite ease-in-out;
}

.particles-background .particle:nth-child(4) {
    width: 50px;
    height: 50px;
    top: 80%;
    left: 20%;
    animation: particleFloat4 18s infinite ease-in-out;
}

.particles-background .particle:nth-child(5) {
    width: 70px;
    height: 70px;
    top: 20%;
    left: 70%;
    animation: particleFloat5 22s infinite ease-in-out;
}

@keyframes particleFloat1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }

    50% {
        transform: translate(0, 100px) rotate(180deg);
    }

    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
}

@keyframes particleFloat2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-60px, 40px) rotate(120deg);
    }

    66% {
        transform: translate(30px, -50px) rotate(240deg);
    }
}

@keyframes particleFloat3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-80px, -80px) scale(1.2);
    }
}

@keyframes particleFloat4 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(70px, -70px) rotate(180deg);
    }
}

@keyframes particleFloat5 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-40px, 60px);
    }

    50% {
        transform: translate(-80px, 0);
    }

    75% {
        transform: translate(-40px, -60px);
    }
}

/* ==========================================
   FOOTER BRAND - Modern GAMEBOX Yazısı
   ========================================== */

.footer-brand {
    text-align: center;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.brand-text {
    font-size: clamp(60px, 15vw, 200px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glow efekti */
.brand-text::before {
    content: 'GAMEBOX';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ed1c24, #ff4757);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    filter: blur(30px);
    transition: opacity 0.5s ease;
}

.brand-text:hover::before {
    opacity: 0.5;
}

.brand-text:hover {
    background: linear-gradient(180deg,
            #fff 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(237, 28, 36, 0.3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: 0px;
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    padding: 20px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .brand-text {
        font-size: clamp(40px, 12vw, 80px);
        letter-spacing: -1px;
    }

    .footer-brand {
        padding: 40px 0 20px;
    }
}

/* ==========================================
   ESKİ FOOTER STİLLERİ (Tüm sayfalar için)
   ========================================== */

/* Footer (Alt Kısım) */
footer {
    background: linear-gradient(-45deg, #ed1c24, #ff4757, #c0392b, #e74c3c, #ed1c24);
    background-size: 400% 400%;
    animation: footerGradient 15s ease infinite;
    color: white;
    padding: 50px 0 20px;
    margin-top: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

@keyframes footerGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Footer Decorative Elements - Gaming Temalı */
.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Neon Grid Efekti */
.footer-decoration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50px);
    }
}

/* Parlayan Yıldızlar */
.decoration-circle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #ed1c24;
    animation: starTwinkle 3s ease-in-out infinite;
}

.decoration-circle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.decoration-circle:nth-child(2) {
    top: 60%;
    left: 25%;
    animation-delay: 1s;
    width: 3px;
    height: 3px;
}

.decoration-circle:nth-child(3) {
    top: 30%;
    left: 80%;
    animation-delay: 2s;
    width: 5px;
    height: 5px;
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Parlayan Yıldızlar Efekti */
footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 200px 60px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 250px 20px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 300px 70px, rgba(255, 255, 255, 0.7), transparent);
    background-repeat: repeat;
    background-size: 350px 100px;
    animation: sparkle 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

/* Footer Wave SVG - Alt Dalga */
.footer-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 40px;
    animation: waveMove 12s linear infinite reverse;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    fill: rgba(255, 255, 255, 0.15);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    min-width: 250px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 22px;
    min-width: 30px;
    animation: iconBounce 2s ease-in-out infinite;
}

.contact-item:nth-child(1) i {
    animation-delay: 0s;
}

.contact-item:nth-child(2) i {
    animation-delay: 0.3s;
}

.contact-item:nth-child(3) i {
    animation-delay: 0.6s;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.phones {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-item a,
.footer-right p {
    transition: all 0.3s ease;
    position: relative;
}

.contact-item a {
    color: white;
    text-decoration: none;
    display: inline-block;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.5));
    transition: width 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.contact-item a:hover::after {
    width: 100%;
}

.contact-item a:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    transform: scale(1.02);
}

.footer-right {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 350px;
    text-align: left;
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-right:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-right i {
    font-size: 28px;
    margin-top: 2px;
    min-width: 35px;
    animation: locationPulse 2s ease-in-out infinite;
}

@keyframes locationPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.footer-right p {
    font-size: 14px;
    line-height: 1.8;
}

/* Mobile Footer Fixes */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: left;
        gap: 30px;
        align-items: stretch;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        max-width: 100%;
        align-items: flex-start;
    }

    .footer-right {
        text-align: left;
    }

    .contact-item {
        justify-content: flex-start;
    }

    .decoration-circle {
        display: none;
    }

    .welcome-section {
        padding: 50px 15px;
    }

    .section-title-animated {
        font-size: 28px;
        gap: 8px;
        margin-bottom: 40px;
    }

    .welcome-subtitle {
        font-size: 14px;
        margin-top: -25px;
        margin-bottom: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px 20px 30px;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 13px;
    }

    .card-arrow {
        width: 30px;
        height: 30px;
        bottom: 15px;
        right: 15px;
    }

    .slider-btn {
        padding: 10px;
        font-size: 18px;
    }

    .gaming-decoration {
        display: none;
    }

    .logo-img {
        height: 36px;
    }
}

@media (max-width: 480px) {
    .section-title-animated {
        font-size: 24px;
        flex-direction: column;
        gap: 5px;
    }

    .feature-card {
        padding: 20px 15px 25px;
    }
}