*{
    margin:0px;
    padding: 0px;
    transition: all 0.5s ease-in-out;
}
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    padding-top: 70px;
}

.image-anime {
    position: relative;
    overflow: hidden;
  }
  .image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
  }
  
  .image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
  }

.bg-grey{
    /* border: 2px solid black; */
    background-color: #F3F3F3;
}
#ourTitle{
    font-size: 28px;
    font-weight: 600;
    color: white;
    cursor: pointer;
}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px; /* Adjust logo size as needed */
    margin-right: 10px;
    margin-left: 10px;
}
/* Navbar styles */
.navbar {
    position: fixed; /* Changed from sticky to fixed */
    top: 0;
    left: 0;
    right: 0; /* Ensures navbar spans full width */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000000;
    padding: 10px 20px;
    height: 50px !important;
    width: 100%; /* Full viewport width */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logoimgs {
    width: 40px;
    height: auto;
}

#ourTitle {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

/* Navigation links */
.nav-links {
    margin-left: 200px !important;
    list-style: none;
    display: flex;
    gap: 80px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 550;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #FF6200;
}

/* Active Link Styling */
.nav-links li.active > a {
    color: #FF6200 !important;
}

/* Dropdown styles */
.nav-links li {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    padding: 10px 0;
    min-width: 180px;
    z-index: 1000;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
}

.dropdown li {
    padding: 8px 15px;
    list-style: none;
}

.dropdown li a {
    white-space: nowrap;
}

.dropdown li.active a {
    color: #FF6200 !important;
}

.nav-links li:hover .dropdown {
    display: block;
}

.dropdown-icon {
    transition: transform 0.3s;
}

.nav-links li:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* User profile section */
.user-profile {
    display: flex;
    align-items: center;
    position: relative;
    right: 10px;
    margin-right: 40px;
}

.user-profile:hover{
    cursor: pointer;
}

.user-img {
    width: 24px !important;
    border-radius: 50%;
}

.username {
    margin-left: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.notification {
    width: 5px;
    height: 12px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 3px 6px;
    position: absolute;
    top: -6%;
    right: 62px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profileimgs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
}

.wrap-margin {
    margin: 0px 100px;
}




/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links,
    .user-profile {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        position: absolute;
        right: 70px;
        top: 25px;
    }

    .hamburger-menu .bar {
        height: 3px;
        width: 100%;
        background-color: white;
        transition: all 0.3s ease;
    }

    /* Mobile Menu Styles */
    .navbar.active .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #000;
        padding: 20px;
        gap: 20px;
        z-index: 1000;
    }

    .navbar.active .nav-links li {
        padding: 10px 0;
    }

    .navbar.active .user-profile {
        display: flex;
        position: fixed;
        top: 15px;
        right: 60px;
    }

    .navbar.active .dropdown {
        position: static;
        display: none;
        background-color: #333;
        margin-top: 10px;
    }

    .navbar.active .dropdown-parent:hover .dropdown {
        display: none;
    }

    .navbar.active .dropdown-parent.active .dropdown {
        display: block;
    }

    /* Rotate hamburger when active */
    .navbar.active .hamburger-menu .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar.active .hamburger-menu .bar:nth-child(2) {
        opacity: 0;
    }

    .navbar.active .hamburger-menu .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}






/* Scroll */
.games-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.games-scroll {
    display: flex;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding-bottom: 1rem;
    scrollbar-width: none; /* Firefox */
    /* border: 2px solid; */
}

.games-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.games-header{
    text-align: left;
}

/* Modified Arrow Styles */
.scroll-arrow {
    width: 100%;
    margin-top: 2%;
    font-size: 24px;
    color: black;
    /* border: 1px solid black; */
    display: flex;
    justify-content: end;
    gap: 30px;
}

.scroll-arrow button{
    font-size: 30px;
    border: none;
    background: none;
    cursor: pointer;
}


/* Filter slide bars */

.price-range-container {
    width: 200px;
  }
  
  .range-values {
    text-align: center;
    margin-top: -20px;
    font-size: 18px;
    font-weight: 600;
    padding-top: 15px;
  }
  
  .slider {
    position: relative;
    height: 40px;
  }
  
  input[type="range"] {
    position: absolute;
    width: 100%;
    height: 8px;
    pointer-events: none;
    -webkit-appearance: none;
    background: none;
    margin: 0;
    top: 14px;
    z-index: 2;
  }
  
  input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    background: #FF3F6C;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    margin-top: -6px;
    position: relative;
    z-index: 3;
  }
  
  input[type="range"]::-webkit-slider-runnable-track {
    height: 8px;
    background: transparent;
  }
  
  .slider-track {
    position: absolute;
    height: 8px;
    background: #ddd;
    top: 14px;
    left: 0;
    right: 0;
    z-index: 1;
    border-radius: 4px;
  }
  
  .slider::before {
    content: '';
    position: absolute;
    height: 8px;
    background: #FF3F6C;
    top: 14px;
    border-radius: 4px;
    z-index: 2;
  }



/* Support */
.support-conatiner{
    /* border: 2px solid; */
    height: 150px;
    background-color: #0004FF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 200px;
}
.support-conatiner .support-content{
    color: white;
    font-size: 28px;
    font-weight: 600;
    line-height: 160px;
}
.support-conatiner .support-button button{
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 3px;
}

.support-conatiner .support-button button:hover{
    color: white;
    background-color: #000000;
    scale: 1.1;
}

/* Footer */
.prime-play-footer {
    background-color: rgba(0, 0, 0, 0.864);
    padding: 100px 5% 50px 5%;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-section h4 {
    color: rgba(255, 255, 255, 0.811);
    font-size: 16px;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.811);
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li:hover {
    color: #6dc2ff81;
}

.social-media {
    border-top: 1px solid rgba(255, 255, 255, 0.811);
    padding: 1rem 0;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-media a {
    color: rgba(255, 255, 255, 0.811);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #717070d5;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.811);
    padding-top: 1rem;
    font-size: 0.9rem;
}
