body {
    background-color: #0f0f0f;
    margin: 0;
    padding-top: 8rem; /* Increased space for the fixed navbar */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    overflow-x: hidden;
}

.dropdown {
    display: none;
}

/*-------------------------------------------NAVBAR STYLE-----------------------------------------------------------------------*/
.navbar {
    background-color: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 6rem;
    width: 100vw; /* Ensure the navbar spans the full width */
    position: fixed;
    top: 0;
    left: 0; /* Align to the left edge of the viewport */
    padding: 0 2rem; /* Increased padding for more space on the sides */
    box-sizing: border-box;
    z-index: 1000;
}

.navbar-logo {
    height: 6rem;
    width: 6rem;
    margin-right: 2rem; /* Space between logo and menu items */
    cursor: pointer; /* Show pointer cursor on hover */
}

.navbar ul {
    list-style-type: none;
    display: flex;
    justify-content: center; /* Center the ul elements */
    margin: 0 auto; /* Center the ul container */
    padding: 0;
    flex: 1; /* Allow the ul to take up available space */
    gap: 1.5rem; /* Increased gap between navbar items */
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px;
    font-size: 1.5rem;
    font-family: Helvetica;
    font-weight: bold;
    text-align: center;
    position: relative;
    overflow: hidden; /* Ensures the underline effect is contained */
}

.navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 4px;
    width: 0%;
    background-color: blue;
    border-radius: 6px;
    transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

.ContactButton {
    margin-left: auto; /* Pushes the button to the right edge */
    padding-left: 2rem; /* Padding for space on the left */
}

.ContactButton button {
    font-size: 1.2rem;
    padding: 15px 25px; /* Add padding for button appearance */
    background-color: rgb(0, 47, 255);
    color: white;
    font-family: Helvetica;
    font-weight: bold;
    border: none;
    border-radius: 2rem;
    cursor: pointer; /* Show pointer cursor on hover */
    transition: transform 0.3s ease; /* Smooth scaling effect */
}

.ContactButton button:hover {
    transform: scale(1.05); /* Slightly enlarge the button on hover */
}
/*-------------------------------------------NAVBAR STYLE END-----------------------------------------------------------------------*/


.Container {
    background-color: transparent; /* Transparent background */
    padding: 10px; /* Increased padding for the container */
    margin-top: 2rem; /* Add margin to separate the container from the navbar */
    opacity: 0;
    transform: translateX(-200px); /* Start off-screen to the left */
    animation: slideIn 1s ease forwards; /* Slide in effect */
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0); /* End position on-screen */
    }
}

.ShopNow p {
    margin: 0;
    font-size: 2rem;
    color: #ffffff;
    font-weight: bold;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.btn {
    background-color: #0ea554; /* Darker, more muted green on hover */
    border: none;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1rem;
    cursor: pointer;
    border-radius: 2rem; /* Consistent rounded corners */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions for color, shadow, and transform */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for a 3D effect */
}

.btn:hover {
    background-color: #118547; /* Darker, more muted green on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}

.ShopNow {
    max-width: 80vw; /* Set a maximum width for better layout control */
    margin: 0 auto; /* Center the content horizontally */
    background-color: transparent;
}

.navbar-logo2{
    display: none;
}

/* Hamburger Menu Button */
.dropdown-button {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 1rem;
    position: fixed;
}

/* Hamburger Icon */
.dropdown-button .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Active State for Hamburger Icon */
.dropdown-button.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.dropdown-button.active .bar:nth-child(2) {
    opacity: 0;
}

.dropdown-button.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Dropdown Menu */
.dropdown {
    display: none;
    position: fixed;
    top: 0;
    left: -300px; /* Initially hidden off the screen */
    width: 250px; /* Set a width less than 100% */
    height: 100vh;
    background-color: #1a1a1a; /* Dark gray background */
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.7); /* Stronger shadow */
    z-index: 999;
    transition: left 0.4s ease; /* Slide-in transition */
    padding-top: 6rem; /* Space for fixed navbar */
    box-sizing: border-box;
    color: white;
}

.dropdown.show {
    display: block;
    left: 0; /* Slide in to position */
}

.dropdown ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
}

.dropdown ul li {
    margin: 1rem 0;
}

.dropdown ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    display: block;
    padding: 1rem;
    border-bottom: 1px solid #333; /* Subtle border */
    transition: background-color 0.3s ease, padding-left 0.3s ease;
}

.dropdown ul li a:hover {
    background-color: #333; /* Darker on hover */
    padding-left: 1.5rem; /* Indent on hover */
}

/*------------------------------------------------------------BOTTOM NAVBAR-------------------------------------------------------------------------*/

/* Bottom Navbar Styles */
.bottom-navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    color: white;
    padding: 1rem 20px;
    position: relative;
}

.social-media {
    text-align: center;
    margin-bottom: 20px;
}

.social-media h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 15px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.instagram {
    background: url('InstaLogo.png') no-repeat center center;
    background-size: contain;
}

.youtube {
    background: url('YTLogos.png') no-repeat center center;
    background-size: contain;
}

.facebook {
    background: url('FBLogo.jpg') no-repeat center center;
    background-size: contain;
    border-radius: 8px;
}

.discord {
    background: url('DiscordLogo.png') no-repeat center center;
    background-size: contain;
    border-radius: 8px;
}

.footer-info {
    text-align: center;
}

.footer-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-info ul li {
    display: inline;
}

.footer-info ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.footer-info ul li a:hover {
    background-color: #303030;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.bottom-navbar p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
}

/*------------------------------------------------------------BOTTOM NAVBAR END-------------------------------------------------------------------------*/

/* Define the fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); /* Slight upward motion */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Reset to original position */
    }
}

/* Hide elements initially */
.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 0.8s ease-out;
}

/* Apply the fade-in animation when the element is visible */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.8s ease-out forwards;
}

/* Apply the fade-in animation to video-showcase */
.video-showcase {
    text-align: center;
    margin-top: 5rem;
    background-color: transparent;
    max-width: 100vw;
    padding: 2rem;
    opacity: 0; /* Start as invisible */
    animation: fadeIn 1.5s ease-out forwards; /* Apply animation */
}

.showcase-wrapper {
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.left-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.right-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-item img {
    max-width: 100%;
    transition: transform 1.5s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.video-showcase h1 {
    font-size: 2.5rem;
    font-weight: bolder;
    transition: transform 1.5s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.video-showcase p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: bold;
    color: rgb(177, 177, 177);
    transition: transform 1.5s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.image-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: transform 1.5s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.Spotify{
    display: flex;
    align-items: center;
    justify-content: space-evenly; /* Space between text/socials and the waving image */
    flex-direction: column;
    padding: 2rem;
    margin-top: 5rem; /* Reduce the margin above the heading */
    background-color: transparent;
}

/*----------------------------------------------------------Community Start---------------------------------------------------------*/
.JoinCommunity {
    display: flex;
    align-items: center;
    justify-content: space-evenly; /* Space between text/socials and the waving image */
    padding: 2rem;
    margin-top: 5rem; /* Reduce the margin above the heading */
    background-color: transparent;
}

.TextAndSocials {
    display: flex;
    flex-direction: column;
}

.Socials {
    display: flex;
    animation: fadeIn 1.5s ease-out forwards; /* Apply animation */
    gap: 1rem;
}

.Socials a {
    display: inline-block;
    animation: fadeIn 1.5s ease-out forwards; /* Apply animation */
}

.Socials img {
    transition: transform 0.3s ease; /* Ensure smooth transition on hover */
    animation: fadeIn 1.5s ease-out forwards; /* Apply animation */
    border-radius: 10%;
}

.Socials a:hover img {
    transform: scale(1.03); /* Slightly enlarge the icon on hover */
}

.JoinCommunity p {
    font-size: 1.5rem;
    animation: fadeIn 1.5s ease-out forwards; /* Apply animation */
    margin-bottom: 3px; /* Reduce the margin below the paragraph */
    color: #aaaaaa;
}

.JoinCommunity h1 {
    font-size: 3rem;
    animation: fadeIn 1.5s ease-out forwards; /* Apply animation */
}

.MDSWaving {
    animation: fadeIn 1.5s ease-out forwards; /* Apply animation */
    flex-shrink: 1; /* Prevent the waving image from shrinking */
}

.YTLogo {
    transition: transform 1.5s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.DisLogo {
    transition: transform 1.5s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.IGLogo {
    transition: transform 1.5s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}
/*----------------------------------------------------------Community END---------------------------------------------------------*/

.games {
    text-align: center;
    width: 100%;
    margin-top: 15rem;
}

.game-container {
    display: flex;
    justify-content: center;
    gap: 3rem; /* Space between games */
}

.game {
    max-width: 45%; /* Each game takes up less than half the width */
    position: relative;
}

.games h1{
    font-size: 2.5rem;
}

.game img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: relative;
    margin-top: 1rem; /* Space between image and button */
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.play-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px);
}


/*----------------------------------------------------------DEV BLOGS---------------------------------------------------------*/
#websites-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.websites-container {
    display: flex;
    justify-content: center;
    gap: 3rem; /* Space between games */
}

.websites {
    max-width: 100%; /* Each game takes up less than half the width */
    position: relative;
}

.websites h1{
    font-size: 2.5rem;
}

.websites-container img {
    width: 100%;
    height: auto;
    display: block;
}

.devblogs {
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    background-color: transparent;
    border-radius: 8px;
    margin-top: 5rem;
    animation: fadeIn 1.5s ease-out forwards; /* Apply animation */
    flex-direction: column;
}

.devblogs h2 {
    text-align: center;
    color: white;
    margin-bottom: 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 2.5rem;
    animation: fadeIn 1.5s ease-out forwards; /* Apply animation */
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeIn 1.5s ease-out forwards; /* Apply animation */
}

.blog-post {
    background-color: transparent;
    padding: 1rem;
    border-radius: 8px;
    animation: fadeIn 1.5s ease-out forwards; /* Apply animation */
}

.blog-post h3 {
    margin: 0;
    color: #007bff;
    font-size: 1.5rem;
    animation: fadeIn 1.5s ease-out forwards; /* Apply animation */
}

.blog-summary {
    margin: 0.5rem 0;
    color: white;
    animation: fadeIn 1.5s ease-out forwards; /* Apply animation */
}

.read-more-btn {
    display: flex;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    color: #000000;
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    animation: fadeIn 1.5s ease-out forwards; /* Apply animation */
}

.read-more-btn:hover {
    background-color: #a3a3a3;
}
/*----------------------------------------------------------DEV BLOGS END---------------------------------------------------------*/

/*---------------------------------------------------------COOKIES----------------------------------------------------------------*/
/* Cookie consent styles */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffffff;
    color: #333333;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    border-radius: 10px;
    max-width: 420px;
    width: 90%;
    transition: opacity 0.5s ease-in-out;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cookie-consent.fade-in {
    opacity: 1;
}

.cookie-consent.fade-out {
    opacity: 0;
}

/* Rest of your CSS */
.cookie-content {
    max-width: 70%;
}

.cookie-message {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.cookie-info {
    font-size: 14px;
    color: #666666;
}

.learn-more {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.learn-more:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    font-weight: bold;
}

.primary-btn {
    background-color: #007bff;
    color: #ffffff;
}

.primary-btn:hover {
    background-color: #0056b3;
}

.secondary-btn {
    background-color: #adadad;
    color: #333333;
    border: 1px solid #ced4da;
}

.secondary-btn:hover {
    background-color: #a1a1a1;
    color: #000000;
}

/* Cookie Consent Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dark background for contrast */
    color: #ffffff;
    padding: 20px 40px;
    text-align: center;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: none; /* Hidden by default */
    z-index: 9999;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4); /* Smooth shadow */
    border-top: 4px solid #004c97; /* Professional blue accent */
    border-radius: 10px 10px 0 0; /* Rounded corners for a modern look */
    animation: fadeIn 0.5s ease-in-out; /* Fade in effect */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cookie-popup-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.cookie-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #004c97; /* Blue color for the header */
    margin-bottom: 12px;
}

.cookie-body p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #f0f0f0;
    max-width: 800px;
}

.cookie-body .cookie-link {
    color: #0059ff; /* Matching blue color for the link */
    text-decoration: underline;
}

.cookie-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cookie-footer button {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.accept-btn {
    background-color: #28a745; /* Green for Accept */
    color: white;
}

.accept-btn:hover {
    background-color: #218838; /* Darker green on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

.decline-btn {
    background-color: #dc3545; /* Red for Decline */
    color: white;
}

.decline-btn:hover {
    background-color: #c82333; /* Darker red on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

/* Show cookie popup when visible */
.cookie-popup.show {
    display: block;
}

.blender-showcase {
    text-align: center;
    padding: 40px 20px;
    background-color: transparent; /* Light background for contrast */
}

.blender-carousel {
    position: relative;
    max-width: 800px; /* Compact width */
    margin: 0 auto;
}

.blender-image-container {
    width: 100%;
    max-height: 400px; /* Maximum height for square/rectangular images */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff; /* White background for padding */
}

.blender-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures full image is visible */
    display: none;
    cursor: pointer; /* Indicates image is clickable */
    transition: opacity 0.3s ease-in-out;
}

.blender-image.active {
    display: block;
    opacity: 1;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 18px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
}

.left-arrow {
    left: -35px;
}

.right-arrow {
    right: -35px;
}

/* Modal Styles */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-modal.show {
    opacity: 1;
    visibility: visible;
}

.full-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain; /* Ensures full image is visible */
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ccc;
}
/*---------------------------------------------------------COOKIES END----------------------------------------------------------------*/

/*----------------------------------------------------------FIT ON SMALL SCREENS---------------------------------------------------------*/
@media (max-width: 1024px) {
    .navbar {
        height: 4rem;
    }

    .navbar a {
        font-size: 1rem;
    }

    .navbar-logo {
        height: 4rem;
        width: 4rem;
    }

    .ContactButton button {
        font-size: 1rem;
        padding: 12px 20px; /* Add padding for button appearance */
        border-radius: 2rem;
    }

    .Socials {
        gap: 1rem;
    }

    .TextAndSocials {
        gap: 5px; /* Reduced gap between the heading and the socials */
    }

    .JoinCommunity p {
        font-size: 1rem;
        animation: fadeIn 1.5s ease-out forwards; /* Apply animation */
        margin-bottom: 5px; /* Reduce the margin below the paragraph */
        color: #aaaaaa;
    }

    .JoinCommunity h1 {
        font-size: 2rem;
        animation: fadeIn 1.5s ease-out forwards; /* Apply animation */
    }

    .MDSWaving {
        animation: fadeIn 1.5s ease-out forwards; /* Apply animation */
        flex-shrink: 1; /* Prevent the waving image from shrinking */
    }

    .YTLogo, .DisLogo, .IGLogo {
        transition: transform 1.5s ease, box-shadow 0.3s ease;
        width: 90px;
        height: 51px;
    }

    .YTLogo {
        background: url("YoutubeLogoRected.png"); /* Replace with your new image path */
        background-size: contain; /* Ensure the image fits within the element */
        background-repeat: no-repeat; /* Prevent the background from repeating */
    }

    .DisLogo {
        background: url("DiscordLogoReced.png"); /* Replace with your new image path */
        background-size: contain; /* Ensure the image fits within the element */
        background-repeat: no-repeat; /* Prevent the background from repeating */
    }

    .IGLogo {
        background: url("InstagramLogoReced.png"); /* Replace with your new image path */
        background-size: contain; /* Ensure the image fits within the element */
        background-repeat: no-repeat; /* Prevent the background from repeating */
    }

    .Container{
        max-width: 100vw;
    }

    .Container p{
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-weight: bold;
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    .Container{
        background-color: transparent;
        max-width: 100vw;
    }

    .ShopNow{
        scale: 0.8;
        background-color: transparent;
        max-width: 100vw; /* Set a maximum width for better layout control */
        margin: 0 auto; /* Center the content horizontally */
    }
}

@media (max-width: 768px){
    .blender-carousel {
        max-width: 100%; /* Smaller width for mobile */
    }
    .blender-image-container {
        max-height: 250px; /* Smaller height for mobile */
    }
    .left-arrow {
        left: 5px; /* Closer to image on smaller screens */
    }
    .right-arrow {
        right: 5px;
    }

    .MDSWaving{
        display: none;
    }

    .JoinCommunity, .Socials{
        justify-content: center;
        text-align: center;
    }

    .ShopNow {
        max-width: 100vw; /* Set a maximum width for better layout control */
        margin: 0 auto; /* Center the content horizontally */
        background-color: transparent;
    }

    .ShopNow img{
        width: 350px;
        height: 350px;
    }

    .play-button{
        font-size: 0.8rem;
    }

    .websites h1, .game h1{
        font-size: 1.2rem;
    }

    .games {
        text-align: center;
        width: 100%;
        margin-top: 5rem;
    }
    
    .Container {
        margin-top: 1rem; /* Add margin to separate the container from the navbar */
    }
}

/* Media query for screens 650px or narrower */
@media (max-width: 650px) {
    .navbar-logo2{
        display: block;
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .navbar ul, .ContactButton, .navbar-logo{
        display: none;
    }

    .navbar{
        height: auto;
    }

    .footer-info  a {
        color: white;
        text-decoration: none;
        font-size: 0rem;
    }

    .dropdown-button {
        display: block; /* Show dropdown button */
    }

    .dropdown {
        display: block;
    }

    /* When the dropdown is active */
    .dropdown.active {
        left: 0; /* Slide in from the left */
    }

    .SpotifyFrame{
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 550px){
    .ShopNow{
        flex-direction: column;
        text-align: center;
    }

    .play-button {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        background-color: #007bff;
        border-radius: 0.3rem;
        font-weight: bold;
    }
}

@media (max-width: 440px){
    .Socials{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
    }
}