.game-carousel-section {
	width: 100%;
    height: 100vh;
    padding: 40px 0;
	background: #000;
    background-size: cover;
    background-position: center;
    transition: background-image 0.6s ease-in-out;
    padding: 80px 0;
    position: relative;
	overflow: hidden;
}

.game-carousel-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
	opacity: 0.3;           
    transition: all 0.3s ease;
}

.swiper-slide-active {
    opacity: 1;      
	cursor: pointer;	
    z-index: 10;
	filter: brightness(1.15) drop-shadow(0 0 25px rgba(30, 144, 255, 0.4));
    box-shadow: 
        0 0 40px rgba(0, 191, 255, 0.35),      
        0 0 80px rgba(30, 144, 255, 0.25), 
        inset 0 0 25px rgba(0, 191, 255, 0.1);
    transition: all 0.45s ease-in-out;
	border: 2px solid #127dae;
}

.img-fluid {
    width: 100%;
    height: 600px;
	object-fit: cover;
}

.izone-card-body {
	position: absolute;
    padding: 20px;
    color: aliceblue;
}

.card-title {
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.game-icon {
    width: 120px;       
    height: 120px;
    object-fit: contain;
    display: block;
    margin: 35px auto 0 auto; 
	margin-top: 100px;
	filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

.game-search-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-search-input {
    width: 40%;
    padding: 10px 15px;
    border-radius: 30px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.game-search-input::placeholder {
    color: rgba(255,255,255,0.6);
}
.game-search-input:focus {
    background: rgba(255,255,255,0.25);
    width: 50%;
}

.search-results-container .card {
    transition: transform 0.3s ease;
}
.search-results-container .card:hover {
    transform: scale(1.05);
	box-shadow: 
        0 0 40px rgba(0, 191, 255, 0.35),      
        0 0 80px rgba(30, 144, 255, 0.25), 
        inset 0 0 25px rgba(0, 191, 255, 0.1);
    border-color: rgba(0,255,255,0.6);
    filter: brightness(1.2);
}

.launch-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.launch-overlay.active {
    opacity: 1;
    transform: scale(1.1);
}

.launch-icon-wrap {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.launch-icon {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    z-index: 2;
	filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

.launch-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 5px solid rgba(200, 200, 200, 0.01);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spinGlow 1.2s linear infinite;
    filter: drop-shadow(0 0 20px #00ffff);
    z-index: 1;
}

@keyframes spinGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.game-number-label {
  position: absolute;
  bottom: 12px;
  right: 18px;
  color: #00ffff;
  font-weight: 700;
  font-size: 18px;
  padding: 3px 10px;
  border-radius: 8px;
  text-shadow: 0 0 6px rgba(0,255,255,0.6);
  backdrop-filter: blur(3px);
  pointer-events: none;
  z-index: 10;
  transition: all 0.3s ease;
}

.swiper-slide-active .game-number-label {
  transform: scale(1.2);
}


