body {
    margin: 0;
    padding: 0;
    background: url('GAMING2.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    position: relative;
    width: 100%;
}

.header .logo {
    font-size: 3rem;
    margin-top: 20px;
}

.slick-carousel {
    width: 35%; /* Maintain original width */
    margin: 0 auto;
    border: 2px solid;
    border-image: linear-gradient(
        90deg,
        red,
        orange,
        yellow,
        green,
        cyan,
        blue,
        violet,
        red
    ) 1;
    border-radius: 5px;
    position: relative;
}

.video-slide {
    padding: 2px;
    border: 2px solid transparent;
    position: relative;
}

.video-slide video {
    width: 100%; /* Ensure video fits within the carousel */
    height: auto;
    border-radius: 5px;
}

.arrow {
    cursor: pointer;
    width: 150px; /* Maintain large arrow size */
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.arrow.left {
    left: 0;
}

.arrow.right {
    right: 0;
}

.arrow img {
    width: 100%;
    height: auto;
}

.play-pause-btn {
    position: absolute;
    bottom: 20px; /* Adjusted for better placement */
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 15px; /* Larger button size */
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    z-index: 10;
}

.play-pause-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.content {
    font-size: 1rem; /* Increase text size */
    margin-top: 10px;
    z-index: 5;
}

.content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.content p {
    font-size: 1.1rem;
}

.bottom-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.card img {
    width: 60px;
    height: auto;
    border-radius: 5px;
}

/* Button Style with Rainbow Border and Background */
.cta-button {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 50px;
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    background: linear-gradient(
        90deg, 
        #E81416, 
        #ffa500, 
        #faeb36, 
        #79c314, 
        #487de7, 
        #4b369d, 
        #70369d, 
        #E81416
    );
    border: 2px solid transparent;
    border-image: linear-gradient(
        90deg, 
        #ff0000,  
        #ffa500,  
        #ffff00,  
        #00ff00,  
        #00ffff,  
        #0000ff,  
        #ff00ff,  
        #ff0000   
    );
    border-image-slice: 1;
    cursor: pointer;
    text-align: center;
    line-height: 46px;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
    font-weight: bold;
}

.cta-button:hover {
    color: #fff;
}

/* Styles for Bottom Carousel */
.bottom-carousel {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
}

.bottom-carousel .logo-slide {
    width: 80px; /* Regular width */
    padding: 5px;
    transition: transform 0.3s ease; /* Smooth transition */
}

.bottom-carousel .slick-slide {
    padding: 0 5px;
}

.bottom-carousel .slick-current .logo-slide {
    transform: scale(1.2); /* Enlarge the current slide */
}

.bottom-carousel img {
    width: 100%;
    height: auto;
    border: 2px solid #fff;
    border-radius: 5px;
}

/* Under Construction Overlay */
.under-construction {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.92);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    text-align: center;
}

.under-construction-content {
    max-width: 500px;
    padding: 20px;
    background-color: #222;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.under-construction-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.under-construction-content p {
    font-size: 1rem;
}

/* Default style for all logos: no border */
.bottom-carousel img {
    width: 100%;
    height: auto;
    border: none; /* Remove border by default */
    border-radius: 5px;
}

/* Only apply the border to the active slide */
.bottom-carousel .slick-current .active-logo {
    border: 2px solid #fff; /* Or any color you prefer for the active border */
    border-radius: 5px;
}

