/* Basic Reset */
body, html {
    margin: 0;
    padding: 0;
    touch-action: manipulation;
    -ms-touch-action: manipulation;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Raleway', sans-serif;
    height: 100%; /* Full viewport height */
    width: 100%;
    background: #09090e;
    display: block;
    flex-direction: column; /* Stack elements vertically */
}

.blurred {
    filter: blur(5px);
    pointer-events: none; /* Prevent interactions with blurred content */
}

/* Prevent Text Selection */
* {
    user-select: none; /* Prevent text selection */
    -webkit-user-select: none; /* For older versions of Safari */
    -moz-user-select: none; /* For older versions of Firefox */
    -ms-user-select: none; /* For older versions of IE/Edge */
}

:root {
    --theme-first-color: #ff69b4;  /* Pink color for the thumb (scrollbar handle) */
    --theme-second-color: #D60052; /* Darker pink for the thumb color */
    --bg-dark-gray: rgba(0, 0, 0, 0);  /* Transparent background for the scrollbar track */
    --bg-tertiary: rgba(0, 0, 0, 0);  /* Transparent background for the track */
  }
  
  /* Global scrollbar styling */
  * {
    scrollbar-width: thin; /* Set scrollbar width to 'thin' */
    scrollbar-color: var(--theme-second-color) var(--bg-dark-gray); /* Thumb and track colors */
  }
  
  /* For WebKit-based browsers (e.g., Chrome, Safari, Edge) */
  *::-webkit-scrollbar {
    width: 14px; /* Set width of the scrollbar */
  }
  
  /* Styling for the track of the scrollbar */
  *::-webkit-scrollbar-track {
    background: var(--bg-tertiary); /* Transparent background for the scrollbar track */
  }
  
  /* Styling for the thumb (the draggable part) of the scrollbar */
  *::-webkit-scrollbar-thumb {
    background-color: var(--theme-first-color); /* Pink color for the scrollbar thumb */
    border: 3px solid var(--bg-dark-gray); /* Transparent border for the thumb */
  }


/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

/* Gate Styles */
.gate {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%; /* Each gate takes half of the screen */
    border-radius: 5px; /* Slight rounded corners for a modern, sleek look */
    transition: transform 1.5s ease-out; /* Smooth transition */
}

/* Left Gate with solid gradient */
.left {
    left: 0;
    background: linear-gradient(135deg, rgb(12, 10, 19), rgb(12, 10, 19)); /* Fully opaque */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.6); /* Shadow on the right */
}

/* Right Gate with solid gradient */
.right {
    right: 0;
    background: linear-gradient(-135deg, rgb(12, 10, 19), rgb(12, 10, 19)); /* Fully opaque */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.6); /* Shadow on the left */
}



.gate.opened {
    transform: translateX(-100%);
}

.right.opened {
    transform: translateX(100%);
}

/* Gate Images */
.gate-image {
    position: relative;
    bottom: 0;
    top: 3%;
    width: 50%;  /* Adjust size of the images */
}

.left-image {
    left: 61%; /* Position image off-screen initially */
}

.right-image {
    right: 61%; /* Position image off-screen initially */
}

/* Main Content Styles */
.main-content {
    display: block;
    flex: 1;
    margin-left: 250px;
}

@media (max-width: 740px) {
    /* Remove any margin/padding causing overflow */
    .main-content {
        width: 100% !important; /* Ensure content takes full width */
        margin-top: 23px !important;
    }

}
/* Header Container (holds the logo and hamburger together) */
.header-container {
    display: flex;
    justify-content: center; /* Center the items horizontally */
    align-items: center; /* Vertically align both items */
    width: 100%; /* Full width container */
    position: relative; /* Necessary for positioning hamburger menu */
    z-index: 1001; /* Ensure it's above the side menu */
    transition: transform 0.3s ease-in-out; /* Smooth transition for the sliding effect */
}

/* Top Menu Styling (Greyish) */
.top-menu {
    display: flex;
    justify-content: space-between; /* Space between logo, buttons, and hamburger */
    align-items: center; /* Vertically center the items */
    width: 100%; /* Full width container */
    height: 40px;
    background: radial-gradient(circle, #0e0e15d8 0%, #0e0e15d8 80%);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid #353535;
    padding: 10px 20px; /* Padding for top menu */
    position: fixed; /* Fix it at the top */
    top: 0; /* At the top of the screen */
    z-index: 1001; /* Ensure it's above the side menu */
    transition: transform 0.3s ease-in-out; /* Smooth transition for the sliding effect */
}

.bottom-bar {
    display: none;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center; /* Vertically center the logo */
    justify-content: center; /* Horizontally center the logo */
}

/* Logo Styling */
.logo {
    width: 100%; /* Set the width of the logo */
    height: auto; /* Keeps the aspect ratio intact */
    max-width: 185px; /* Ensures it doesn't overflow */
    margin-left: 45px !important;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Navigation Buttons (Left Side) */
.nav-buttons-left {
    display: flex;
    gap: 12px; /* Space between buttons */
    left: 0;
    margin-left: -700px;
    align-items: left; /* Vertically center the buttons */
    justify-content: flex-start; /* Align buttons to the left */
}

.nav-button-left {
    background-color: transparent; /* Transparent background */
    color: white; /* White text */
    font-weight: 500;
    margin-right: 10px;
    padding: 25px 15px 15px; /* Adjust padding-bottom to move the border down */
    border: none;
    border-bottom: 4px solid rgb(213, 8, 100); /* Bottom border with the desired color */
    border-radius: 6%;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    
    display: flex;
    align-items: center;
    gap: 6px; /* Adjust gap as needed */
}


.nav-button-left:hover {
    border-bottom: 4px solid #ff4083; /* Bottom border with the desired color */
}

.nav-button-left:hover i {
    color: #ff4083 !important;
}


/* Ensure the dropdown wrapper is correctly positioned */
.dropdown-wrapper {
    position: relative;
    display: inline-block;
}

/* Dropdown Menu Styling */
.dropdown {
    display: none;
    position: absolute;
    top: 100%; /* Places it directly below the Networks button */
    left: 0;
    background-color: #090f17;
    gap: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    min-width: 150px;
}

/* Dropdown Buttons */
.dropdown button {
    display: flex; /* Makes the button a flex container */
    align-items: center; /* Aligns icon and text in the same line */
    justify-content: flex-start; /* Aligns text consistently */
    width: 100%;
    gap: 10px; /* Space between icon and text */
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(35px) !important; /* Applies blur effect */
    background: rgba(0, 0, 0, 0.4); /* Slight dark tint for contrast */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ec226c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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


/* Hover Effect */
.dropdown button:hover {
    background-color: #40444b;
}

/* Hover Effect */
.dropdown button:hover i {
    color: #d10057 !important;
}


/* Telegram and Discord Colors */
#telegramBtn {
    color: #ffffff;
}

#discordBtn {
    color: #ffffff;
}


/* Navigation Buttons Styling */
.nav-buttons {
    display: flex;
    gap: 15px; /* Space between the buttons */
}

.nav-button {
    position: relative; /* For positioning the shine effect */
    background-color: rgb(233, 27, 89); /* Transparent background */
    color: rgb(255, 255, 255); /* White text */
    border: 1px solid #000000; /* White border */
    font-weight: 500;
    margin-right: 15px;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s, border-color 0.3s;
    overflow: hidden; /* To clip the shine effect within the button */
}

/* Shine Effect */
.nav-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Start outside the button */
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-30deg); /* Angle of the shine */
    animation: shine 1s linear infinite; /* Animation runs once and then restarts */
}

/* Shine Animation Keyframes */
@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%; /* Move across the button from left to right */
    }
}



/* Hamburger Menu */
.hamburger-menu {
    position: fixed; /* Use fixed positioning instead of sticky */
    top: 5%; /* Vertically center it */
    left: 17.5px; /* Keep it on the left side */
    transform: translateY(-45%); /* Center vertically */
    cursor: pointer;
    font-size: 25px;
    z-index: 1001;
    margin-bottom: 125px;

    /* Fallback for browsers that do not support background-clip */
    background: linear-gradient(135deg, #ffffff, #ffffff); /* Purple to Pink gradient */
    -webkit-background-clip: text;  /* Clips the background to text (WebKit browsers) */
    background-clip: text; /* For other modern browsers */
    color: transparent;  /* Makes text itself transparent to show the gradient */
    min-width: 40px; /* Minimum size to prevent clipping */
}


/* Side Menu (Collapsed State) */
.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    margin-top: 60px;
    width: 85px; /* Collapsed width */
    height: 100%;
    background-color: #08080d;
    border-right: 1px solid #353535;
    border-top: 1px solid #353535;
    padding-top: 70px;
    padding: -25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    
    /* Transition: Slower for smoother effect */
    transition: width 0.3s ease-in-out, transform 0.2s ease-in-out;
    transform-origin: left;
}

/* Side Menu Separator */
.menu-separator {
    display: flex;
    justify-content: center; /* Align at the center */
    align-items: center; /* Center align the line vertically */
    margin-top: 50px;
    margin-bottom: -5px !important;
    border: none;
    border-top: 1px solid #353535; /* Light gray line */
    width: 100%; /* Ensure the separator spans the full width */
}

/* Wrapper for Social Media and Privacy Links */
.footer-links-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align at the bottom */
    align-items: center;
    gap: 20px; /* Space between sections */
    position: absolute; /* Position relative to the parent container */
    bottom: 0; /* Stick to the bottom */
    width: 100%; /* Match side menu width */
    padding-bottom: 10px; /* Adjust spacing from the bottom */
    min-height: 100px; /* Ensure there's enough space for the footer */
}

/* Social Media Links - Pushed to Bottom */
.social-media-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align items at the top */
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    flex-grow: 1; /* Allow the content to grow and push social links down */
    margin-bottom: 0px; /* Optional: Adjust spacing from the bottom */
}

/* Social Link Styling */
.social-link {
    display: flex;
    flex-direction: row; /* Icon and text side-by-side */
    align-items: center; /* Center icon and text vertically */
    justify-content: left; /* Center content within the button */
    background: #181818;
    border: 2px solid #282727;
    border-radius: 10px;
    width: 175px; /* Set uniform width */
    height: 35px; /* Set uniform height */
    padding: 1.5px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease; /* Smooth transitions */
    gap: 2px; /* Space between icon and text */
}
/* Container for Side Privacy Buttons */
.side-privacy-links {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b3b3b3; /* Light gray text color */
    margin-top: 5px; /* Adjust margin if needed */
    position: relative; /* Ensure container is not clipped */
    z-index: 10; /* Ensure it stays above other elements */
    height: auto; /* Ensure container adjusts height */
    flex-grow: 1; /* Allow the content to grow and push social links down */
    padding-bottom: 140px; /* Ensure space at the bottom */
}

/* Button Styling */
.side-privacy {
    background: none; /* Remove default background */
    border: none; /* Remove border */
    color: #ffffff; /* Button text color */
    cursor: pointer; /* Pointer cursor */
    font-size: 0.45em; /* Adjust font size as needed */
    font-weight: bold; /* Make text bold */
    padding: 5px 15px; /* Adjust padding to fit text */
    text-decoration: none; /* Remove underline */
    line-height: 1; /* Keep consistent line height */
    width: 100%; /* Ensure full width of container */
    display: flex; /* Flex container for alignment */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    transition: color 0.3s ease; /* Smooth color change on hover */
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden; /* Hide overflow if text is too long */
    text-overflow: ellipsis; /* Add ellipsis for overflowed text */
}
/* Position the text */
.social-media-links .menu-text {
    font-size: 12px;
    display: inline-block;
    color: #d0c3c3;
    font-weight: 500;
    margin: 0; /* No extra margin */
    padding-left: 0; /* No additional left padding */
    position: relative;
    left: 5px; /* Adjust this based on your icon width */
    top: 10; /* Align text at the top */
    white-space: nowrap; /* Prevent text from wrapping */
}

/* Reset icon margins */
.social-media-links i {
    font-size: 15px;
    margin-left: 10px;
    padding: 0;
}

.side-privacy:hover {
    color: #f70656; /* Change color on hover */
}

/* Dot Icon Styling */
.side-privacy-links i {
    font-size: 0.4em; /* Set specific size for the dot */
    color: inherit; /* Match button text color */
    align-self: center; /* Ensure proper alignment */
}


.side-menu.collapsed .side-privacy-links {
    display: none;
}

/* Social Media Links - Collapsed */
.side-menu.collapsed .social-media-links {
    display: flex;
    flex-direction: column; /* Stack icons vertically */
    align-items: center; /* Center icons horizontally */
    justify-content: flex-end; /* Push icons to the bottom */
    gap: 10px; /* Space between icons */
    flex-grow: 1; /* Ensure this section grows to push content down */
    padding-bottom: 150px; /* Optional: Add padding for spacing from the bottom */
    overflow: hidden; /* Prevent overflow issues */
}



/* Social Media Links - Collapsed */
/* Icons Only in Collapsed View */
.side-menu.collapsed .social-link {
    justify-content: center;
    width: 40px;
    height: 40px;
}

/* Hide Text in Collapsed View */
.side-menu.collapsed .menu-text {
    display: none;
}

/* Icons in Collapsed View */
.side-menu.collapsed .social-media-links i {
    font-size: 20px; /* Icon size */
    display: flex; /* Ensure icons are treated as flex items */
    justify-content: center; /* Center content within the icon container */
    align-items: center; /* Vertically center icons */
    width: 40px; /* Set a uniform width for each icon */
    height: 40px; /* Set a uniform height for each icon */
    margin-left: 0px;
    background: #181818; /* Optional: Add background for better alignment visibility */
    border-radius: 50%; /* Make the icon area circular */
    color: #ffffff; /* Icon color */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effects */
}

/* Social Media Icon Styles */
.social-link {
    font-size: 20px;
    color: #ffffff; /* Default icon color */
    transition: color 0.3s ease; /* Smooth color transition */
}

.social-link:hover {
    color: #fe1a6a; /* Change color on hover */
}


/* Expanded Sidebar */
.side-menu.expanded {
    width: 215px;
    transform: scaleX(1.02); /* Reduced stretch effect */
}

.menu-item {
    color: rgb(255, 255, 255);
    background: rgb(24, 24, 24);
    border: 1px solid #282727;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    top: 10%;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    padding: 12px;
    font-size: 22px;
    transition: background-color 0.3s, padding 0.3s;
    gap: 10px;
    width: 80%; /* Ensure button is responsive */
    max-width: 300px; /* Restrict width for consistency */
    transform: translateY(-30px);
    position: static; /* Removes `top` and ensures predictable layout */
    margin: 10px auto; /* Centers the menu item */
    margin-bottom: 1.5px;
    box-sizing: border-box;
    height: 40px;
    z-index: 10; /* Fix stacking issues */
    transform: translateY(-40px); /* Moves it up more */
}

/* Icon Styling */
.menu-item i, .menu-item .premium {
    font-size: 15px; /* Match size for all icons */
    margin: 0; /* Reset margins for consistency */
    padding: 0; /* Reset padding for consistency */
    color: #ffffff; /* Default icon color */
}

/* Adjusted Premium-Specific Gap */
.menu-item .premium {
    font-size: 15px; /* Ensure consistent icon size */
    color: rgb(250, 11, 119); /* Premium icon color */
}

/* Text Styling */
.menu-item .menu-text,
.menu-item .menu-text-premium {
    font-size: 12px; /* Adjusted for readability */
    color: #d0c3c3; /* Default text color */
    font-weight: 500;
    margin: 0; /* Reset margins */
    padding-top: 2px;
    white-space: nowrap; /* Prevent text wrapping */
}

/* Premium Text-Specific Adjustments */
.menu-item .menu-text-premium {
    color: rgb(255, 12, 133); /* Unique color for premium text */
    font-weight: 600; /* Slightly bolder for emphasis */
}

/* Wrapper for button and particles */
.premium-container {
    position: relative;
    display: inline-block; /* Make sure it wraps around the button */
}

/* The button itself */
.premium-menu-item {
    position: relative;
    background-color: #141414 !important;
    border: 2px solid rgb(255, 12, 133); /* Unique color for premium text */
    padding: 20px 10px;
    margin-top: 15px;
    z-index: 2; /* Ensure button is above particles */
    box-shadow: 0 0 10px #E91B59; /* Glow effect around button */
}

/* Adjust alignment when collapsed */
.side-menu.collapsed .premium-menu-item {
    justify-content: center; /* Center icons when collapsed */
    padding: 16px 0; /* Ensure consistent padding */
    width: 45px;
    height: 45px;
}

/* Tight particle glow effect */
#premium-particles {
    position: absolute;
    width: 80%; /* Slightly larger than the button */
    height: 80%;
    top: -50%;
    left: 10%;
    z-index: 1; 
    pointer-events: none; 
    transition: width 0.001s ease, left 0.001s ease; /* Smooth animation */
}

.side-menu.collapsed #premium-particles { 
    width: 55%; /* Slightly larger than the button */
    left: 22%;
}


/* Glow effect for particles */
canvas {
    filter: drop-shadow(0px 0px 6px #E91B59); /* Adds a soft neon glow */
}


/* Hide text when collapsed */
.side-menu.collapsed .menu-text {
    display: none;
}

/* Adjust alignment when collapsed */
.side-menu.collapsed .menu-item {
    justify-content: center; /* Center icons when collapsed */
    padding: 16px 0; /* Ensure consistent padding */
    width: 45px;
    height: 45px;
}

/* Icon Styling for Collapsed State */
.side-menu.collapsed .menu-item i {
    font-size: 20px; /* Icon size */
    text-align: center;
}

/* Adjust alignment when collapsed */
.side-menu.collapsed .menu-text-premium {
    display: none;
}

/* Icon Styling for Collapsed State */
.side-menu.collapsed .menu-text-premium i {
    font-size: 20px; /* Icon size */
    text-align: center;
}

.menu-item:hover {
    background-color: #585457;
    cursor: pointer;
}

/* Show Menu */
.side-menu.open {
    left: 0;
}


/* Media Queries for iPad (1080px) */
@media only screen and (min-width: 1440px) and (max-width: 1600px) {
    /* Container for Side Privacy Buttons */
    .social-media-links {
        bottom: 0; /* Adjust spacing */
    }

    .side-privacy-links {
        padding-bottom: 130px;
    }

    /* Adjust logo size */
    .logo {
        width: 180px;
        margin-left: 65px;
    }

    /* Navigation Buttons (Left Side) */
    .nav-buttons-left {
        display: flex;
        gap: 15px; /* Space between buttons */
        left: 0;
        margin-left: -685px;
        align-items: left; /* Vertically center the buttons */
        justify-content: flex-start; /* Align buttons to the left */
    }
        /* Social Media Links - Collapsed */
    .side-menu.collapsed .social-media-links {
        bottom: 0; /* Adjust spacing */
    }

        /* Hamburger Menu */
    .hamburger-menu {
        position: fixed; /* Use fixed positioning instead of sticky */
        top: 4%; /* Vertically center it */
        margin-left: 10px;
        margin-bottom: 130px;
    }

    /* Menu Items */
    .menu-item {
        top: -3%;
    }

    /* Side Menu Separator */
    .menu-separator {
        margin: 20px 0;
        margin-top: 355px;
        margin-bottom: 5px;
    }


}


/* Media Queries for iPad (1080px) */
@media (min-width: 1800px) and (max-width: 1920px) {
    /* Container for Side Privacy Buttons */
    .social-media-links {
        bottom: 0; /* Adjust spacing */
    }

    .side-privacy-links {
        padding-bottom: 185px;
    }

    /* Adjust logo size */
    .logo {
        width: 180px;
        margin-left: 65px;
    }

        
    .nav-buttons-left {
        display: flex;
        gap: 15px; /* Space between buttons */
        position: relative; /* Allows 'left' to work */
        margin-left: -1075px !important; /* Moves it 35px to the right */
        justify-content: flex-start; /* Align buttons to the left */
    }
    
    /* Social Media Links - Collapsed */
.side-menu.collapsed .social-media-links {
    bottom: 0; /* Adjust spacing */
}

    /* Hamburger Menu */
.hamburger-menu {
    position: fixed; /* Use fixed positioning instead of sticky */
    top: 3%; /* Vertically center it */
    margin-left: 10px;
    margin-bottom: 130px;
}

/* Menu Items */
.menu-item {
    top: -3%;
}

/* Side Menu Separator */
.menu-separator {
    margin: 20px 0;
    margin-top: 330px;
    margin-bottom: 40px;
}

/* Container for Side Privacy Buttons */
.side-privacy-links {
    padding-bottom: 135px; /* Ensure space at the bottom */
}


}

/* Media Queries for iPad (1080px) */
@media (max-width: 1180px) {

    .logo {
        width: 180px;
        margin-left: 60px;
    }

    /* Adjust navigation button size */
    .nav-button {
        font-size: 14px;
        padding: 8px 12px;
        margin-right: 35px;
    }

    /* Navigation Buttons (Left Side) */
    .nav-buttons-left {
        display: none;
        gap: 15px; /* Space between buttons */
        left: 0;
        margin-left: -250px;
        align-items: left; /* Vertically center the buttons */
        justify-content: flex-start; /* Align buttons to the left */
    }

    /* Center hamburger icon */
    .hamburger-menu {
        left: 25px;
        top: 4%;
    }

    /* Adjust menu items size */
    .menu-item {
        font-size: 18px;
    }

    /* Side Menu (Collapsed State) */
    .side-menu {
        position: fixed;
        top: 0;
        left: 0;
        margin-top: 60px;
        width: 80px; /* Collapsed width */
        height: 100%;
        background-color: #121111;
        border-right: 1px solid #353535;
        padding-top: 60px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 0;
        overflow: hidden;
        
        /* Transition: Slower for smoother effect */
        transition: width 0.3s ease-in-out, transform 0.2s ease-in-out;
        transform-origin: left;
    }

    /* Side Menu Separator */
    .menu-separator {
        margin: 20px 0;
        margin-top: 375px;
    }

    .side-privacy-links {
        padding-bottom: 120px;
    }


}

/* Media Queries for iPad (1080px) */
@media only screen and (max-width: 811px) {
    /* Adjust logo size */
    .logo {
        width: 180px;
        margin-left: 60px;
    }

    /* Adjust navigation button size */
    .nav-button {
        font-size: 14px;
        padding: 8px 12px;
        margin-right: 35px;
    }

    /* Navigation Buttons (Left Side) */
    .nav-buttons-left {
        display: none;
        gap: 15px; /* Space between buttons */
        left: 0;
        margin-left: -250px;
        align-items: left; /* Vertically center the buttons */
        justify-content: flex-start; /* Align buttons to the left */
    }

    /* Center hamburger icon */
    .hamburger-menu {
        left: 25px;
        top: 3%;
    }

    /* Adjust menu items size */
    .menu-item {
        font-size: 18px;
    }

}

/* Media Queries for Phones (720px) */
@media only screen and (max-width: 720px) {
    /* Header on mobile */
    .header-container {
        display: flex;
        justify-content: space-between; /* Space out the logo and hamburger */
        align-items: center;
        width: 100%; /* Ensure it takes full width */
        margin-left: -20px; /* Adjust position if needed */
        padding: 10px 20px; /* Padding for spacing */
    }

    /* Adjust logo size */
    .logo {
        width: 1500px; /* Slightly smaller on phone */
        margin-left: -5px;
    }

    /* Adjust navigation button size and layout */
    .nav-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .nav-button {
        font-size: 14px; /* Adjust font size */
        padding: 5px 15px;
        margin-right: -25px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s, border-color 0.3s;
        width: 60%;
        text-align: center;
    }

    .nav-buttons-left {
        background: #1a1919;
        margin-left: 70px;
        flex-direction: row;
        align-items: center;
        justify-items: center;
        border-bottom: none;
        border-radius: 15px;
        border: 2px solid rgb(193, 0, 167);
        margin-top: -45px;
    }

    .nav-buttons-left {
        display: none;
    }

    /* Adjust hamburger menu for phone */
    .hamburger-menu {
        font-size: 24px;
        position: absolute;
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
    }

    /* Side Menu (Collapsed State) */
    .side-menu {
        position: fixed;
        top: 0;
        left: 0;
        margin-top: 60px;
        width: 80px; /* Collapsed width */
        height: 100%;
        background-color: #121111;
        border-right: 1px solid #353535;
        padding-top: 60px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 0;
        overflow: hidden;

        /* Default state: hidden off-screen */
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out; /* Transition for sliding effect */
    }

    /* Expanded Sidebar (Mobile) */
    .side-menu.expanded {
        width: 200px;
        transform: translateX(0); /* Slide in to normal position */
        transition: transform 0.3s ease-in-out; /* Transition for sliding effect */
    }

    /* For mobile, remove the collapsed class and just handle transform */
    .side-menu.collapsed {
        /* No need for display: none; it will be handled by transform */
        transform: translateX(-100%); /* Slide off-screen */
    }

    /* Adjust menu item size */
    .menu-item {
        font-size: 16px;
        top: -2%;
    }

    .social-link {
        width: 160px;
    }
}

/* Media Queries for Phones (720px) */
@media only screen and (max-width: 720px) {
    .bottom-bar {
        background: radial-gradient(circle at center, #202020, #101010);
        position: fixed;
        margin: 0 auto;
        width: 95% !important;
        right: 0;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        bottom: 0;
        gap: 25px;
        z-index: 1000;
        border-radius: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1); /* Soft separator for subtle effect */
    }
    

    .bottom-buttons-left {
        display: flex;
        justify-content: center;
        align-items: center;
        justify-content: space-around;
        margin: 0 auto;
        gap: 15px;
        width: 85%;
        position: relative !important;
    }

    .bottom-button-left {
        font-size: 17px; /* Increase text size */
        color: rgb(255, 255, 255);
        padding: 8px 12px;
        border: none !important;
        background: none;
        text-align: center;
        display: flex;
        flex-direction: column; /* Stack icon above text */
        justify-content: center;
        align-items: center;
        gap: 5px; /* Adjust spacing between icon and text */
        
        /* ADD THIS TO FORCE SPACING */
        margin: 0 15px !important; /* Adds horizontal space between buttons */
        flex: 1; /* Ensures even spacing across buttons */
    }

    .bottom-button-left i {
        font-size: 20px; /* Increase icon size */
    }
    /* Ensure the dropdown wrapper is correctly positioned */
    .dropdown-wrapper-bar {
        position: relative;
        display: inline-block;
    }

    /* Dropdown Menu Styling */
    .dropdownBar {
        display: none;
        position: absolute;
        bottom: 135%; /* Places it directly below the Networks button */
        left: 0;
        background-color: #2c2f33;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 5px 0;
        min-width: 150px;
    }

    /* Dropdown Buttons */
    .dropdownBar button {
        width: 100%;
        background: none;
        border: none;
        color: white;
        font-size: 14px;
        padding: 10px 15px;
        text-align: left;
        cursor: pointer;
        transition: background 0.3s ease-in-out;
        display: block;
    }

    /* Hover Effect */
    .dropdownBar button:hover {
        background-color: #40444b;
    }

    /* Telegram and Discord Colors */
    #telegramBtn {
        color: #ffffff;
    }

    #discordBtn {
        color: #ffffff;
    }


}


@media only screen and (max-width: 1180px) {
    .bottom-bar {
        background: radial-gradient(circle at center, #202020, #101010);
        position: fixed;
        margin: 0 auto;
        margin-left: 290px;
        width: 50%;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        bottom: 0;
        gap: 25px;
        z-index: 1000;
        border-radius: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1); /* Soft separator for subtle effect */
    }

    .bottom-buttons-left {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .bottom-button-left {
        font-size: 16px; /* Increase text size */
        color: rgb(255, 255, 255);
        padding: 8px 12px;
        border: none !important;
        background: none;
        text-align: center;
        display: flex;
        flex-direction: column; /* Stack icon above text */
        justify-content: center;
        align-items: center;
        gap: 5px; /* Adjust spacing between icon and text */

        /* ADD THIS TO FORCE SPACING */
        margin: 0 50px; /* Adds horizontal space between buttons */
        flex: 1; /* Ensures even spacing across buttons */
    }

    .bottom-button-left i {
        font-size: 20px; /* Increase icon size */
    }

    /* Ensure the dropdown wrapper is correctly positioned */
    .dropdown-wrapper-bar {
        position: relative;
        display: inline-block;
    }

    /* Dropdown Menu Styling */
    .dropdownBar {
        display: none;
        position: absolute;
        bottom: 135%; /* Places it directly below the Networks button */
        left: 0;
        background-color: #2c2f33;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 5px 0;
        min-width: 150px;
    }

    /* Dropdown Buttons */
    .dropdownBar button {
        width: 100%;
        background: none;
        border: none;
        color: white;
        font-size: 14px;
        padding: 10px 15px;
        text-align: left;
        cursor: pointer;
        transition: background 0.3s ease-in-out;
        display: block;
    }

    /* Hover Effect */
    .dropdownBar button:hover {
        background-color: #40444b;
    }

    /* Telegram and Discord Colors */
    #telegramBtn {
        color: #ffffff;
    }

    #discordBtn {
        color: #ffffff;
    }


}

/* Media Queries for Phones (720px) */
@media only screen and (max-width: 812px) {
    .bottom-bar {
        background: radial-gradient(circle at center, #202020, #101010);
        position: fixed;
        margin: 0 auto;
        margin-left: 275px;
        width: 70%;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        bottom: 0;
        gap: 25px;
        z-index: 1000;
        border-radius: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1); /* Soft separator for subtle effect */
    }

    .bottom-buttons-left {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .bottom-button-left {
        font-size: 16px; /* Increase text size */
        color: rgb(255, 255, 255);
        padding: 8px 12px;
        border: none !important;
        background: none;
        text-align: center;
        display: flex;
        flex-direction: column; /* Stack icon above text */
        justify-content: center;
        align-items: center;
        gap: 5px; /* Adjust spacing between icon and text */

        /* ADD THIS TO FORCE SPACING */
        margin: 0 35px; /* Adds horizontal space between buttons */
        flex: 1; /* Ensures even spacing across buttons */
    }

    .bottom-button-left i {
        font-size: 20px; /* Increase icon size */
    }

    /* Ensure the dropdown wrapper is correctly positioned */
    .dropdown-wrapper-bar {
        position: relative;
        display: inline-block;
    }

    /* Dropdown Menu Styling */
    .dropdownBar {
        display: none;
        position: absolute;
        bottom: 135%; /* Places it directly below the Networks button */
        left: 0;
        background-color: #2c2f33;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 5px 0;
        min-width: 150px;
    }

    /* Dropdown Buttons */
    .dropdownBar button {
        width: 100%;
        background: none;
        border: none;
        color: white;
        font-size: 14px;
        padding: 10px 15px;
        text-align: left;
        cursor: pointer;
        transition: background 0.3s ease-in-out;
        display: block;
    }

    /* Hover Effect */
    .dropdownBar button:hover {
        background-color: #40444b;
    }

    /* Telegram and Discord Colors */
    #telegramBtn {
        color: #ffffff;
    }

    #discordBtn {
        color: #ffffff;
    }


}




/* Welcome Section (Modal Style) */
.welcome-section {
    position: fixed; /* Fixed positioning to overlay on the entire page */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for centering */
    padding: 50px 30px;
    background: linear-gradient(135deg, #ff1472, #400a1f);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    z-index: 1000; /* Ensure it's above other content */
    display: none; /* Hidden by default */
    overflow: hidden; /* Keep the shine effect inside */
}

/* Shine Effect */
.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%; /* Start far outside */
    width: 150%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-30deg); /* Angled shine */
    animation: shine 2.0s linear infinite; /* Slower animation for a smooth effect */
}

/* Shine Animation */
@keyframes shine {
    0% {
        left: -150%;
    }
    100% {
        left: 150%; /* Moves across */
    }
}

/* Show the dialog when active */
body.dialog-open .welcome-section {
    display: block; /* Dialog appears when dialog-open class is added to body */
}

/* Prevent scrolling and layout shift when dialog is open */
body.dialog-open {
    margin-right: 125px; /* Prevent content shift by adding padding on the right */
}

/* Close Button */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    text-shadow: 
        0 0 10px rgba(255, 128, 192, 0.8), 
        0 0 20px rgba(255, 128, 192, 0.6), 
        0 0 30px rgba(255, 128, 192, 0.4);
    transition: transform 0.3s ease, color 0.3s ease;
}

.close-button:hover {
    transform: scale(1.2);
}

/* Glow Animation for Heading Text */
.welcome-section h1 {
    font-size: 42px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(255, 128, 192, 0.8), 
        0 0 20px rgba(255, 128, 192, 0.6), 
        0 0 30px rgba(255, 128, 192, 0.4);
    animation: glowAnimation 2s infinite alternate;
}

.welcome-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-top: 20px;
    padding: 0 10%;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.3), 
        0 0 10px rgba(255, 255, 255, 0.2);
}

/* Glow Animation Keyframes */
@keyframes glowAnimation {
    0% {
        text-shadow: 
            0 0 12px rgba(255, 128, 192, 0.8), 
            0 0 20px rgba(255, 128, 192, 0.6), 
            0 0 25px rgba(255, 128, 192, 0.4);
    }
    100% {
        text-shadow: 
            0 0 15px rgba(255, 128, 192, 0.9), 
            0 0 25px rgba(255, 128, 192, 0.7), 
            0 0 35px rgba(255, 128, 192, 0.5);
    }
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Overlay Background */
body.dialog-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
    z-index: 999; /* Behind the dialog */
}


/* Mobile Version */
@media (max-width: 720px) {
    .welcome-section {
        padding: 10px 15px; /* Reduced padding for mobile */
        width: 60%; /* Make modal width fit mobile screens */
    }

    /* Heading Text */
    .welcome-section h1 {
        font-size: 28px; /* Smaller font size for mobile */
    }

    /* Paragraph Text */
    .welcome-section p {
        font-size: 16px; /* Adjust font size for better readability */
        max-width: 550px;
        text-align: left;
        justify-items: center;
        width: 90%
    }

    /* Close Button */
    .close-button {
        font-size: 25px; /* Smaller close button */
        top: 5px;
        right: 5px;
    }
}

/* iPad Version (1080px wide) */
@media (max-width: 1180px) {
    .welcome-section {
        padding: 40px 25px; /* Adjusted padding for iPad */
        width: 80%; /* Adjust modal width */
        z-index: 9998;
    }

    /* Heading Text */
    .welcome-section h1 {
        font-size: 36px; /* Adjusted font size for iPad */
    }

    /* Paragraph Text */
    .welcome-section p {
        font-size: 17px; /* Adjusted font size */
        padding: 0 8%; /* Slightly adjusted padding */
    }

    /* Close Button */
    .close-button {
        font-size: 22px; /* Medium size close button */
        top: 8px;
        right: 8px;
    }
}
.main-separator {
    margin: 20px 0;
    border: none;
    border-top: 2px solid #272626; /* Light gray line */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); /* Adds a subtle shadow effect */
}

/* Promotions Section */
.promotions-section {
    display: flex;                  /* Enable Flexbox */
    flex-direction: column;         /* Stack items vertically */
    align-items: center;            /* Horizontally center the items */
    justify-content: center;        /* Vertically center the items */
    text-align: center;             /* Center the text */
    padding: 50px 20px;
    background-color: transparent;
    margin-bottom: -35px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    height: auto;
}


/* Dot Indicators Container (Positioned at the Top) */
.dots-container {
    text-align: center;
    margin-bottom: -35px;
    margin-top: 15px;
    top: 225px !important;
    position: relative;
    z-index: 10;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 1300px; 
    width: 100%;          /* Set maximum width */
    height: 270px;               /* Set fixed height */
    border-radius: 10px;         /* Apply rounded corners to the container */
    overflow: hidden;            /* Hide any part of the image outside the container */
    margin: auto;                /* Center the container */
    display: flex;               /* Use flexbox for better alignment */
    justify-content: center;     /* Horizontally center content */
    align-items: center;         /* Vertically center content */
}

/* Slide Elements */
.mySlides {
    display: flex;
    width: 95%;
    height: 100%;
}

/* Slideshow Image */
.mySlides img {
    width: 100%;                /* Ensure the image covers the full width of the container */
    height: 100%;               /* Ensure the image fills the height of the container */
    object-fit: cover;          /* Ensure the image stretches to cover the container without distortion */
    display: block;             /* Remove space below the image */
    border-radius: 10px;        /* Optional, for rounded corners */
}



/* Navigation Arrows */
.prev, .next {
    position: absolute;
    top: 75%;
    width: auto;
    padding: 16px;
    margin-top: -85px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 100;
}

.prev {
    left: 35px;
}

.next {
    right: 35px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.5); /* Slightly dark background */
}

/* Dot Indicators */
.dot {
    height: 10px !important;
    width: 10px !important;
    margin: 0 2px;
    margin-top: 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.dot:hover {
    background-color: #ffffff;
}

.active {
    background-color: #ff006f; /* Active dot color */
}

@media (max-width: 720px) {
    /* Slideshow Container */
    .slideshow-container {
        height: 60vw; /* Adjust container to be square for mobile */
        width: 100vw;  /* 100% of the viewport width */
        left: -15px;
        margin-bottom: -65px;
        margin-top: -75px;
        position: relative;  /* Ensure the container is correctly positioned */
    }

    /* Slideshow Image */
    .mySlides img {
        object-fit: contain; /* Fit the image inside the container without cropping */
        object-position: center center; /* Center the image in the container */
        width: 100%; /* Make sure the image scales to the container's width */
        height: 95%; /* Make sure the image scales to the container's height */
    }

    /* Navigation Arrows */
    .prev, .next {
        font-size: 18px; /* Smaller arrows for mobile */
        padding: 18px;
        top: 70%;
    }

    /* Dot Indicators */
    .dot {
        height: 10px;
        width: 10px;
        margin: 0 4px;
        margin-bottom: -10px;
    }

    /* Promotions Section Padding */
    .promotions-section {
        padding: 30px 15px; /* Reduced padding on mobile */
        margin-bottom: 5px; /* Remove negative margin */
        min-height: 135px; /* Ensure the section has a minimum height */
        visibility: visible; /* Ensure the section is not hidden */
        display: block; /* Ensure it's a block element */
    }

    /* Optional: Adjust text size for smaller screens */
    .promotions-section h2 {
        font-size: 20px; /* Adjust heading size */
    }

    /* Additional adjustments for the visibility of content */
    .promotions-section p {
        font-size: 14px; /* Adjust paragraph text size */
    }
}



/* Tablet (iPad 1080px) Version */
@media screen and (min-width: 767px) and (max-width: 1180px) {

    /* Promotions Section */
.promotions-section {
    margin-top: 65px;
}

    /* Slideshow Container */
    .slideshow-container {
        height: 230px; /* Adjusted height for iPad */
        width: 65vw;  /* 100% of the viewport width */
    }

    /* Navigation Arrows */
    .prev, .next {
        font-size: 22px; /* Slightly smaller arrows for tablets */
        padding: 14px;
    }

    /* Dot Indicators */
    .dot {
        height: 13px;
        width: 13px;
        margin: 0 3px;
    }

    /* Promotions Section Padding */
    .promotions-section {
        padding: 40px 25px; /* Adjusted padding for iPad */
    }
}

/* Models Title Section */
.models-title {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    margin-top: -20px;
}

/* Main Title Styling */
.models-main-title {
    color: #d3c4c4;
    text-align: center;
    font-size: 12px;
    font-weight: bolder;
    margin-bottom: -25px; /* Slightly increased margin for separation */
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    padding: 5px 15px;
}

/* Subtitle Styling */
.models-title-title {
    font-size: 15px;
    font-weight: bold;
    color: white;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Description Text */
.models-description {
    font-size: 16px;
    color: #d3d3d3; /* Subtle light gray for contrast */
    margin-top: 5px;
    margin-bottom: -25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}


/* Models Section */
.models-section {
    padding: 50px 20px;
    margin-top: -35px;
    text-align: center;
    background-color: none; /* Dark background for contrast */
    color: white;
}

/* Models Container */
.models-container {
    display: grid !important; /* Use Grid Instead of Flex */ 
    justify-content: space-between; /* Space items evenly */
    justify-content: center;
    max-height: 1000px;
    margin-top: -250px;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Ensure Network Cards Container Displays Two Per Row */
.model-cards {
    display: grid; /* Use Grid Instead of Flex */
    justify-content: space-between; /* Space items evenly */
    position: relative;
    gap: 20px !important;
    margin: 0 auto;
    padding: 250px !important;
    grid-template-columns: repeat(3, 1fr); /* Exactly Two Per Row */
}

/* Model Card */
.model-card {
    background-color: #101010; /* Card background */
    border-radius: 10px;
    overflow: hidden;
    width: 380px; /* Fixed width for cards */
    height: 700px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    transition: transform 0.3s, box-shadow 0.3s;
}

.watermark {
    position: absolute;
    top: 25px; /* Adjust position */
    right: -35px !important;  /* Adjust position */
    width: 450px !important; /* Adjust size */
    opacity: 0.5; /* Make it slightly transparent */
    pointer-events: none; /* Prevent interaction */
    z-index: 2;
}

/* Ensure all images have the same dimensions */
.model-image-container {
    width: 100%;
    height: 70%;
    position: relative; /* Ensures proper stacking of images */
    overflow: visible; /* Ensure dots are visible */
}

/* Style for all images */
.model-image {
    width: 100%;
    height: 100%; /* Make sure all images take up full height */
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; /* Hide images initially */
    transition: opacity 0.5s ease-in-out;
    object-fit: cover; /* Ensures images maintain aspect ratio */
}

/* Show only the active image */
.model-image.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.model-nav {
    display: flex;
    justify-content: space-between;
    position: relative;
    top: 0;
    width: 100%;
}

.prev-btn, .next-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

/* Position dots at the bottom of the image */
.model-dots {
    position: absolute;
    bottom: 5px;
    top: 90%; /* Adjust if needed */
    display: flex;
    left: 40%;
    gap: 8px; /* Space between dots */
    z-index: 999; /* Ensure dots appear above the image */
}

/* Style for dots */
.dot {
    height: 18px;
    width: 18px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
    opacity: 0.8;
}

/* Fade-in effect */
.fade-in {
    opacity: 1; /* Make image visible */
}

/* Fade-out effect */
.fade-out {
    opacity: 0; /* Make image invisible */
}
/* Model Name */
.model-name {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 10px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Style for the icon in the premium button */
.premium-button i {
    margin-right: 2px;
    margin-left: -15px;
    color: rgb(255, 255, 255);
    font-size: 20px;
    text-shadow: 1px 2px 1px rgba(37, 33, 10, 0.6);
    transform: scaleX(-1); /* Flip horizontally */
    transition: color 0.3s, text-shadow 0.3s, opacity 0.3s, transform 0.3s ease-in-out; /* Smooth transition for all properties */
}

/* Style for the icon in the premium button */
.premium-button i.close {
    margin-right: 2px;
    margin-left: -15px;
    color: rgb(255, 255, 255);
    font-size: 20px;
    text-shadow: 1px 2px 1px rgba(37, 33, 10, 0.6);
    transform: scaleX(-1); /* Flip horizontally */
    transition: color 0.3s, text-shadow 0.3s, opacity 0.3s, transform 0.3s ease-in-out; /* Smooth transition for all properties */
}

/* Initially hide the open padlock icon */
.premium-button i.open {
    opacity: 0;
    visibility: hidden;   /* Initially hidden */
    font-size: 20px;
    text-shadow: 1px 2px 1px rgba(37, 33, 10, 0.6);
    transition: color 0.3s, text-shadow 0.3s, opacity 0.3s, transform 0.3s ease-in-out; /* Smooth transition for all properties */
}
/* Style for the icon in the premium button */
.model-button i {
    margin-right: 2px;
    margin-left: -15px;
    color: rgb(10, 10, 10);
    font-size: 20px;
    text-shadow: 1px 2px 1px rgba(37, 33, 10, 0.6);
    transform: scaleX(-1); /* Flip horizontally */
    transition: color 0.3s, text-shadow 0.3s, opacity 0.3s, transform 0.3s ease-in-out; /* Smooth transition for all properties */
}


/* Style for the icon in the premium button */
.model-button i.close {
    opacity: 1;
    font-size: 20px;
    margin-right: 2px;
    margin-left: -15px;
    visibility: visible;   /* Initially hidden */
    text-shadow: 1px 2px 1px rgba(37, 33, 10, 0.6);
    transition: opacity 0.3s ease-in-out, visibility 0s 0.3s; /* Smooth opacity and delayed visibility transition */
}

/* Initially hide the open padlock icon */
.model-button i.open {
    opacity: 0;
    visibility: hidden;   /* Initially hidden */
    position: absolute;
    font-size: 20px;       /* Icon size */
    text-shadow: 1px 2px 1px rgba(37, 33, 10, 0.6);
    transition: opacity 0.3s ease-in-out, visibility 0s 0.3s; /* Smooth opacity and delayed visibility transition */
    
}

.button {
    margin-top: 55px;
    height: 40px;
    width: 200px;
    border: 2px solid #000000; /* Black border */
    display: block;  /* Ensure buttons stack vertically */
}

/* Premium Access Button */
.premium-button {
    background-color: rgb(232, 3, 99); /* Orange button */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 10px auto; /* Center and space out the buttons */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    display: block; /* Ensure block display to stack buttons */
}

/* Model Button */
.model-button {
    background-color: #ffffff; /* White button */
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 0 auto; /* Center and space out the buttons */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    display: block; /* Ensure block display to stack buttons */
}

.more-content-box {
    background-image: url('../assets/promotion2.png'); /* Background image */
    background-size: cover;
    background-position: center;
    width: 100%;
    max-width: 1000px; /* Prevents it from being too wide */
    height: 250px;
    display: flex;
    justify-content: center; /* Center content */
    align-items: center; /* Center vertically */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
    /* ✅ Fix for Centering */
    position: absolute;  /* Use 'absolute' inside a relative container */
    top: 50%;
    left: 58%;
    transform: translate(-50%, -50%);
}

/* Style the "Click Here" Button */
.more-content-button {
    background-color: white;  /* White background */
    color: black;  /* Black text */
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid black;  /* Black border */
    border-radius: 25px;
    margin-bottom: 10px;
    cursor: pointer;
    text-transform: uppercase;
    margin-left: auto;  /* Align button to the right */
}

.more-content-button:hover {
    background-color: #f1f1f1;  /* Slight grey on hover */
}

/* Image on top of the background */
.more-content-box img {
    position: absolute;  /* Position the image on top */
    left: 0;
    top: 50%;
    transform: translateY(-50%);  /* Vertically center the image */
    max-width: 20%;  /* Control image size */
    height: auto;  /* Maintain aspect ratio */
    object-fit: contain;  /* Ensure the image fits within its container */
    z-index: 1;  /* Ensure the image is on top */
}

/* Content box for text */
.more-content-text {
    z-index: 2;  /* Ensure the text and button are above the image */
    font-size: 2em;
}

.get-mega-btns {
    display: flex;
    margin: 0 auto;
}

/* Default state: Show link, hide unlink */
.model-card .link-icon {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
}

.model-card .unlink-icon {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0s 0.3s; /* Smooth fade-in */
}

/* On hover, hide link and show unlink */
.model-card:hover i.open {
    opacity: 1;
    visibility: visible;
    position: relative;
    margin-right: -6px;
    margin-left: -6px;
    transition: opacity 0.3s ease-in-out, visibility 0s 0s; /* Remove delay */
}

.model-card:hover i.close {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0s 0s; /* Remove delay */
}


@media screen and (min-width: 1439px) and (max-width: 1440px) {
    /* Adjusting Titles */
    .models-main-title {
        font-size: 10px;
        padding: 5px 10px;
    }

    .models-title-title {
        font-size: 13px;
    }

    .models-description {
        font-size: 14px;
        max-width: 90%;
    }

    /* Make Containers Responsive */
    .models-container {
        flex-direction: row; /* Stack elements */
        align-items: center;
    }

    .model-card {
        width: 30%; /* Use relative width */
    }

    /* Make Buttons Full Width */
    .button, .premium-button, .model-button {
        width: 100%;
        max-width: 300px;
    }
}
@media screen and (min-width: 1000px) and (max-width: 1180px) {
    
    /* Ensure the container behaves as expected */
    .models-container {
        display: grid !important; /* Use Grid Instead of Flex */ 
        justify-content: space-between; /* Space items evenly */
        margin-top: -285px;
        width: 100%;
    }
    
    .more-content-box {
        width: 40%;
        right: -35px;
        bottom: 100px;
        margin-top: -220px !important;
    }

    .more-content-text {
        margin-top: -25px !important;
    }

    /* Image on top of the background */
    .more-content-box img {
        display: none;    
    }

    /* Ensure Network Cards Container Displays Two Per Row */
    .model-cards {
        display: grid; /* Use Grid Instead of Flex */
        justify-content: space-between; /* Space items evenly */
        position: relative;
        gap: 75px !important;
        margin: 0 auto;
        padding: 295px !important;
        grid-template-columns: repeat(2, 1fr); /* Exactly Two Per Row */
    }


    .model-card {
        width: 130% !important;
        margin-bottom: 30px; /* Vertical spacing */

    }

    .model-card.fourth {
        display: block !important;
    }

    /* Make Buttons Full Width */
    .button, .premium-button, .model-button {
        width: 80% !important;
        max-width: 300px;
    }
}



@media screen and (min-width: 766px) and (max-width: 815px) {
    /* Ensure the container behaves as expected */
    .models-container {
        display: grid !important; /* Use Grid Instead of Flex */ 
        justify-content: space-between; /* Space items evenly */
        margin-top: -235px;
        width: 100%;
    }

    
    .models-description {
        margin-bottom: -75px;
    }
    
    .more-content-box {
        width: 40%;
        right: -20px;
        bottom: 85px;
        margin-top: -220px !important;
    }

    .more-content-text {
        margin-top: -25px !important;
    }

    /* Image on top of the background */
    .more-content-box img {
        display: none;    
    }

    /* Ensure Network Cards Container Displays Two Per Row */
    .model-cards {
        display: grid; /* Use Grid Instead of Flex */
        justify-content: space-between; /* Space items evenly */
        position: relative;
        gap: 75px !important;
        margin: 0 auto;
        padding: 300px !important;
        grid-template-columns: repeat(2, 1fr); /* Exactly Two Per Row */
    }


    .model-card {
        width: 120% !important;
        margin-bottom: 30px; /* Vertical spacing */

    }

    .model-card.fourth {
        display: block !important;
    }

    /* Make Buttons Full Width */
    .button, .premium-button, .model-button {
        width: 95% !important;
        max-width: 300px;
    }
}

/* For screens with a width of 810px, like iPads */
@media screen and (max-width: 810px) {
    .model-card:nth-child(n+4) {
        display: none !important;  /* Hide models 4 and above */
    }
}

@media screen and (max-width: 766px) {
    /* Adjusting Titles */
    .models-main-title {
        font-size: 10px;
        padding: 5px 10px;
        margin-top: 15px !important;
    }

    .models-title-title {
        font-size: 13px;
    }

    .models-description {
        font-size: 14px;
        max-width: 90%;
        margin-bottom: 200px;
    }

    .more-content-box {
        width: 80%;
        height: 250px;
    }

    /* Image on top of the background */
    .more-content-box img {
        display: none;    
    }

    /* Ensure Network Cards Container Displays Two Per Row */
    .model-cards {
        display: flex; /* Use Grid Instead of Flex */
        position: relative;
        flex-wrap: wrap;
        gap: 20px !important;
        margin: 0 auto;
        padding: 0!important;
        flex-direction: row;
    }

    /* Make Containers Responsive */
    .models-container {
        display: flex;
        flex-direction: row; /* Stack elements */
        align-items: center;
    }

    .model-card {
        width: 100% !important; /* Use relative width */
        max-width: 500px !important;
    }

    .model-card.fourth {
        display: block !important;
    }

    /* Make Buttons Full Width */
    .button, .premium-button, .model-button {
        width: 100%;
        max-width: 300px;
    }
}



.network-title {
 justify-content: center;
 align-self: center;
 text-align: center;
}

/* Header Title */
.network-title h2 {
    color: #d3c4c4;
    text-align: center;
    font-size: 12px;
    font-weight: bolder;
    margin-top: 35px;
    margin-bottom: -35px; /* Slightly increased margin for separation */
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    padding: 5px 15px;
}

/* Title Paragraph */
.network-title-title {
    padding: 10px;
    color: white; /* Text color */
    font-size: 15px;
    font-weight: 650;
    border-radius: 10px;
    width: 90%;
    margin-top: 5px;
    margin: auto;
    margin-bottom: -10px;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.5;
}

/* Description Paragraph */
.network-description {
    font-size: 16px;
    color: #d3d3d3; /* Subtle light gray for contrast */
    margin-top: 5px;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}


.networks {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 65px;
    width: 100%;
    overflow: visible;
    position: relative; /* Change from relative to static */
}


/* When hidden, use display: none */
.networks.hidden {
    display: none !important;
}

/* Section Row for Discord and Telegram */
.network-category {
    display: flex;           /* Use flexbox to align items in a row */
    justify-content: center; /* Center align items */
    margin-bottom: 15px;
    padding-bottom: 10px; /* Additional padding for clarity between sections */
    width: 100%;
}

.network-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    width: 100%;
    max-width: 1300px;
}

.network-card {
    position: relative;
    width: calc(33.33% - 20px); /* Adjust width to fit 3 per row with spacing */
    background-size: 100% 100%; /* Stretches the background to fully fit */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    display: flex;
    max-width: 380px;
    height: 325px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.network-card.desktop {
    display: flex;
}



/* Initial State */
.network-card .category-logo {
    opacity: 0; /* Start fully transparent */
    transform: scale(0.1); /* Shrink it */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth animation */
    position: absolute; /* Ensure proper positioning */
    top: 18%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%) scale(0.1); /* Center and shrink */
    filter: drop-shadow(0 0 0px rgba(255, 69, 0, 0.5)); /* Initial faint glow */
    z-index: 10; /* Ensure it appears above other content */
}

/* Initial State */
.network-card .logo {
    position: absolute; /* Ensure proper positioning */
    transform: scale(0.2); /* Shrink it */
    top: -25%; /* Center vertically */
    right: 50%; /* Center horizontally */
    z-index: 100; /* Ensure it appears above other content */
}

/* Ensure the image fully fits inside */
.network-card img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures it fills the container without distortion */
}
/* On Hover */
.network-card:hover .category-logo {
    opacity: 1; /* Fully visible */
    transform: translate(-50%, -50%) scale(0.2); /* Pop to normal size */
    animation: fireGlow 1.5s infinite alternate, heatWave 2s infinite ease-in-out;
}

/* Fire Glow Animation */
@keyframes fireGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.8))
                drop-shadow(0 0 20px rgba(255, 140, 0, 0.6))
                drop-shadow(0 0 30px rgba(255, 0, 0, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.9))
                drop-shadow(0 0 25px rgba(255, 69, 0, 0.7))
                drop-shadow(0 0 35px rgba(255, 0, 0, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.7))
                drop-shadow(0 0 20px rgba(255, 140, 0, 0.5))
                drop-shadow(0 0 30px rgba(255, 0, 0, 0.3));
    }
}

/* Heat Wave Animation */
@keyframes heatWave {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.2);
    }
    50% {
        transform: translate(-50%, -50%) scale(0.22); /* Slight pulsing for heat waves */
    }
}

/* Sparks Effect */
.network-card:hover .category-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(255, 69, 0, 0));
    border-radius: 50%;
    animation: sparks 2s infinite ease-in-out;
}

/* Sparks Animation */
@keyframes sparks {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(calc(-50% + 30px), calc(-50% - 30px)) scale(0);
    }
}

.overlay p {
    color: rgb(210, 201, 201);
    font-size: 0.9em;
    margin-top: 5px;
}

.overlay h3 {
    margin-top: 15px;
    margin-bottom: 15px;
}


.network-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
}

.network-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: rgba(0, 0, 0, 0.438);
    color: #fff;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(80%);
    transition: transform 0.3s ease;
}

.network-card .overlay h3{
    margin-bottom: 35px;
}

.network-card:hover .overlay {
    transform: translateY(0px);
}
.subscribe-button {
    display: block;
    width: 80%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
    background-color: rgb(233, 27, 89);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
}
.subscribe-button:hover {
    background-color: #0056b3;
}

@media screen and (min-width: 1000px) and (max-width: 1180px) {
    /* Network Title */
    .network-title h2 {
        margin-top: 800px !important;
        font-size: 10px;
        padding: 5px 10px;
    }

    .network-cards {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(200px, 1fr)) !important; /* Responsive sizing */
        gap: 5px;
        padding: 10px 135px;
        align-items: center;
        justify-content: center; /* Ensures the grid itself is centered */
        width: 100%; /* Shrink container to fit its contents */
        max-width: 1200px; /* Adjust based on your design */
        margin: 0 auto; /* Centering */
    }

    /* Ensure Each Card is Centered and Responsive */
    .network-card {
        width: 100% !important; /* Take full column width */
        max-width: 250px !important; /* Adjust as needed */
        height: 300px;
        margin: 0 auto; /* Center if needed */
    }

    .network-card.desktop {
        display: none;
    }

    /* Adjust Overlay */
    .network-card .overlay {
        font-size: 12px;
        padding: 8px;
    }

    /* Network Category */
    .network-category {
        display: flex;
        margin: 0 auto; /* Centering */
    }
}


@media screen and (min-width: 766px) and (max-width: 815px) {
    /* Network Title */
    .network-title h2 {
        margin-top: 850px;
        font-size: 10px;
        padding: 5px 10px;
    }

    .network-title-title {
        font-size: 13px;
    }

    .network-description {
        font-size: 14px;
        max-width: 90%;
    }

    /* Ensure Network Cards Container Displays Two Per Row */
    .network-cards {
        display: grid; /* Use Grid Instead of Flex */
        grid-template-columns: repeat(2, 1fr); /* Exactly Two Per Row */
        gap: 15px; /* Space between cards */
        justify-content: center; /* Center content */
        align-items: center;
        padding: 20px;
        margin-right: 10px;
        width: 40%;
    }

    /* Ensure Each Card is Centered and Responsive */
    .network-card {
        width: 100%; /* Take full column width */
        max-width: 350px; /* Adjust as needed */
        height: 300px;
        margin: 0 auto; /* Center if needed */
    }

    .network-card.desktop {
        display: flex;
    }

    /* Adjust Overlay */
    .network-card .overlay {
        font-size: 12px;
        padding: 8px;
    }

    /* Network Category */
    .network-category {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
}


/* iPad (Tablet) Version */
@media screen and (min-width: 380px) and (max-width: 766px) {
    /* Network Title */
        /* Adjusting Titles */
        .network-title h2  {
            margin-top: 1875px;
            font-size: 10px;
            padding: 5px 10px;
        }
    
        .network-title-title {
            font-size: 13px;
        }
    
        .network-description {
            font-size: 14px;
            max-width: 90%;
        }

    /* Ensure Network Cards Container Displays Two Per Row */
    .network-cards {
        display: grid; /* Use Grid Instead of Flex */
        grid-template-columns: repeat(2, 1fr); /* Exactly Two Per Row */
        gap: 15px; /* Space between cards */
        justify-content: center; /* Center content */
        align-items: center;
        width: 90%;
    }

    /* Ensure Each Card is Centered and Responsive */
    .network-card {
        width: 100%; /* Take full column width */
        max-width: 350px; /* Adjust as needed */
        height: 300px;
        margin: 0 auto; /* Center if needed */
    }

    .network-card.desktop {
        display: flex;
    }

    /* Adjust Overlay */
    .network-card .overlay {
        font-size: 12px;
        padding: 8px;
    }

    /* Network Category */
    .network-category {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .overlay p {
        margin-top: 15px;
    }

}


/* FAQ Section Title */
.faq-title {
    text-align: center;
}

.faq-title h2 {
    color: #decfcf;
    font-size: 12px;
    background-color: transparent;
    font-weight: bolder;
    margin-top: 5px;
    margin-bottom: -5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    padding: 5px 15px;
    box-sizing: border-box;
}

/* Paragraph underneath with linear gradient background */
.faq-description {
    padding: 10px;
    color: white; /* Text color */
    font-size: 18px;
    font-weight: 650;
    border-radius: 10px; /* Optional: to round the corners of the background */
    width: 90%; /* Adjust width as needed */
    margin: 0 auto; /* Center the paragraph */
    text-align: center; /* Center text */
    line-height: 1.5; /* Adjust line height for readability */
    margin-bottom: 20px; /* Set a normal margin */
}
/* FAQ Container */
#faq {
    padding: 10px;
    height: auto; /* Smaller height for the FAQ container */
    width: 100%;
    max-width: 1000px;
    height: auto;
    max-height: 1000px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px; /* Bottom margin */
    margin-left: auto; /* Automatically adjust left margin */
    margin-right: auto; /* Automatically adjust right margin */
    border-bottom-right-radius: 150px;
    border-bottom-left-radius: 150px;
    border-top-left-radius: 150px;
}

/* FAQ Item Styling */
.faq-item {
    margin-bottom: 15px;
    width: 100%;
    padding: 15px 15px;
    border-radius: 8px;
    height: auto;
    max-height: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #1b1a1b, #1b1a1b); /* Default background */
    position: relative;
    transition: background 0.3s ease, height 0.3s ease; /* Smooth background and height transition */
    overflow: hidden; /* Hide overflowing content */
}


/* FAQ Answer Styling */
.faq-answer {
    font-size: 16px;
    color: #ccc;
    margin: 0 auto;
    display: flex; /* Keep block display */
    height: auto;
    max-height: 1000px;
    overflow: visible;
    transition: max-height 0.3s ease;
}


/* When the answer should be visible */

.faq-answer.show {
    max-height: 350px; /* Adjust as needed for answer size */
    max-width: 850px;
    display: flex !important; /* Ensure it's enforced */
}


.faq-question {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Toggle button styling */
.toggle-btn {
    background-color: #e3016f;
    color: #fff;
    border: none;
    padding: 5px 10px; /* Adjust padding for visibility */
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px; /* Add slight border radius */
}

.toggle-btn:hover {
    background-color: #a3014f;
}

/* Mobile Version for FAQ Section */
@media (max-width: 720px) {

    /* FAQ Section Title */
    .faq-title h2 {
        font-size: 14px; /* Smaller font size for mobile */
        margin-top: 10px;
        margin-bottom: 5px;
        padding: 5px 10px; /* Reduced padding for mobile */
    }

    /* FAQ Description */
    .faq-description {
        font-size: 16px; /* Smaller font size */
        padding: 8px 10px; /* Reduced padding for mobile */
        width: 100%; /* Use full width on mobile */
        margin-bottom: 15px; /* Reduced bottom margin */
    }

    /* FAQ Container */
    #faq {
        padding: 10px;
        width: 100%; /* Full width for mobile */
        height: auto;
        margin-bottom: 30px; /* Reduced bottom margin */
        border-radius: 0; /* Remove large border-radius for mobile */
    }

    /* FAQ Item Styling */
    .faq-item {
        margin-bottom: 10px; /* Reduced margin for mobile */
        width: 80%; /* Full width for mobile */
        padding: 15px 10px; /* Reduced padding for mobile */
        border-radius: 5px; /* Reduced border radius for mobile */
        box-shadow: none; /* Remove shadow for mobile */
        background: linear-gradient(135deg, #1b1a1b, #1b1a1b);
        transition: all 0.3s ease; /* Smooth transition for expand/collapse */
        height: auto; /* Ensure container grows with content */
        overflow: visible; /* Prevents overflow */
    }

    /* FAQ Answer Styling */
    .faq-answer {
        font-size: 14px; /* Smaller font size */
        margin-top: 10px;
        height: auto;
        display: none; /* Initially hidden */
        padding-top: 15px;
        color: #e0e0e0; /* Lighter text color for the answer */
    }
    .faq-answer p {
        .faq-answer p {
            margin: 0;
        }
    }

    /* FAQ Question Styling */
    .faq-question {
        font-size: 16px; /* Slightly smaller font size */
        color: #fff;
    }

    /* Toggle button styling */
    .toggle-btn {
        padding: 4px 8px; /* Smaller padding for the toggle button */
        font-size: 16px; /* Smaller font size for the button */
        color: #fff;
        background-color: #444; /* Slightly darker background */
        border: none;
        cursor: pointer;
    }

    /* When the FAQ is expanded, show the answer */
    .faq-item.open .faq-answer {
        display: block; /* Show the answer */
        height: auto; /* Allow height to adjust to the content */
    }

    /* Adjust .faq-item height when expanded */
    .faq-item.open {
        height: auto; /* Allow the FAQ item container to grow with the content */
        flex-grow: 1;
    }

    .faq-item.open .toggle-btn {
        background-color: #666; /* Change button color when expanded */
    }
}

/* Mobile Version for FAQ Section */
@media screen and (min-width: 766px) and (max-width: 821px) {

    /* FAQ Section Title */
    .faq-title h2 {
        font-size: 14px; /* Smaller font size for mobile */
        margin-top: 10px;
        margin-bottom: 5px;
        padding: 5px 10px; /* Reduced padding for mobile */
    }

    /* FAQ Description */
    .faq-description {
        font-size: 16px; /* Smaller font size */
        padding: 8px 10px; /* Reduced padding for mobile */
        width: 100%; /* Use full width on mobile */
        margin-bottom: 15px; /* Reduced bottom margin */
    }

    /* FAQ Container */
    #faq {
        padding: 10px;
        width: 100%; /* Full width for mobile */
        height: auto;
        margin-bottom: 30px; /* Reduced bottom margin */
        border-radius: 0; /* Remove large border-radius for mobile */
    }

    /* FAQ Item Styling */
    .faq-item {
        margin-bottom: 10px; /* Reduced margin for mobile */
        width: 40%; /* Full width for mobile */
        padding: 15px 10px; /* Reduced padding for mobile */
        border-radius: 5px; /* Reduced border radius for mobile */
        box-shadow: none; /* Remove shadow for mobile */
        background: linear-gradient(135deg, #1b1a1b, #1b1a1b);
        transition: all 0.3s ease; /* Smooth transition for expand/collapse */
        height: auto; /* Ensure container grows with content */
        overflow: visible; /* Prevents overflow */
    }

    /* FAQ Answer Styling */
    .faq-answer {
        font-size: 14px; /* Smaller font size */
        margin-top: 10px;
        height: auto;
        display: none; /* Initially hidden */
        padding-top: 15px;
        color: #e0e0e0; /* Lighter text color for the answer */
    }
    .faq-answer p {
        .faq-answer p {
            margin: 0;
        }
    }

    /* FAQ Question Styling */
    .faq-question {
        font-size: 16px; /* Slightly smaller font size */
        color: #fff;
    }

    /* Toggle button styling */
    .toggle-btn {
        padding: 4px 8px; /* Smaller padding for the toggle button */
        font-size: 16px; /* Smaller font size for the button */
        color: #fff;
        background-color: #444; /* Slightly darker background */
        border: none;
        cursor: pointer;
    }

    /* When the FAQ is expanded, show the answer */
    .faq-item.open .faq-answer {
        display: block; /* Show the answer */
        height: auto; /* Allow height to adjust to the content */
    }

    /* Adjust .faq-item height when expanded */
    .faq-item.open {
        height: auto; /* Allow the FAQ item container to grow with the content */
        flex-grow: 1;
    }

    .faq-item.open .toggle-btn {
        background-color: #666; /* Change button color when expanded */
    }
}


/* Mobile Version for FAQ Section */
@media screen and (min-width: 1079px) and (max-width: 1180px) {

    /* FAQ Section Title */
    .faq-title h2 {
        font-size: 14px; /* Smaller font size for mobile */
        margin-top: 10px;
        margin-bottom: 5px;
        padding: 5px 10px; /* Reduced padding for mobile */
    }

    /* FAQ Description */
    .faq-description {
        font-size: 16px; /* Smaller font size */
        padding: 8px 10px; /* Reduced padding for mobile */
        width: 100%; /* Use full width on mobile */
        margin-bottom: 15px; /* Reduced bottom margin */
    }

    /* FAQ Container */
    #faq {
        padding: 10px;
        width: 100%; /* Full width for mobile */
        height: auto;
        margin-bottom: 30px; /* Reduced bottom margin */
        border-radius: 0; /* Remove large border-radius for mobile */
    }

    /* FAQ Item Styling */
    .faq-item {
        margin-bottom: 10px; /* Reduced margin for mobile */
        width: 80%; /* Full width for mobile */
        padding: 15px 10px; /* Reduced padding for mobile */
        border-radius: 5px; /* Reduced border radius for mobile */
        box-shadow: none; /* Remove shadow for mobile */
        background: linear-gradient(135deg, #1b1a1b, #1b1a1b);
        transition: all 0.3s ease; /* Smooth transition for expand/collapse */
        height: auto; /* Ensure container grows with content */
        overflow: visible; /* Prevents overflow */
    }

    /* FAQ Answer Styling */
    .faq-answer {
        font-size: 14px; /* Smaller font size */
        margin-top: 10px;
        height: auto;
        display: none; /* Initially hidden */
        padding-top: 15px;
        color: #e0e0e0; /* Lighter text color for the answer */
    }
    .faq-answer p {
        .faq-answer p {
            margin: 0;
        }
    }

    /* FAQ Question Styling */
    .faq-question {
        font-size: 16px; /* Slightly smaller font size */
        color: #fff;
    }

    /* Toggle button styling */
    .toggle-btn {
        padding: 4px 8px; /* Smaller padding for the toggle button */
        font-size: 16px; /* Smaller font size for the button */
        color: #fff;
        background-color: #444; /* Slightly darker background */
        border: none;
        cursor: pointer;
    }

    /* When the FAQ is expanded, show the answer */
    .faq-item.open .faq-answer {
        display: block; /* Show the answer */
        height: auto; /* Allow height to adjust to the content */
    }

    /* Adjust .faq-item height when expanded */
    .faq-item.open {
        height: auto; /* Allow the FAQ item container to grow with the content */
        flex-grow: 1;
    }

    .faq-item.open .toggle-btn {
        background-color: #666; /* Change button color when expanded */
    }
}



/* Modal Background */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 10000; /* Ensure it appears on top */
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent page scrolling */
  }
  
  /* Blur the background */
  .modal.active {
    backdrop-filter: blur(5px); /* Apply blur to the background */
  }
  
  /* Modal Content (Glass-like effect) */
  .modal-content {
    background: rgba(255, 255, 255, 0.1); /* Transparent white background */
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    width: 80%;
    backdrop-filter: blur(10px); /* Apply background blur */
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    max-height: 80vh; /* Limit the height to 80% of the viewport */
    overflow-y: auto; /* Make content scrollable */
    position: relative; /* Allow absolute positioning for the close button */
  }
  
  /* Close Button (X Icon) */
  .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 36px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 1100; /* Ensure it's above content */
  }
  
  /* Button Hover Effect for Close Button */
  .close-btn:hover {
    color: #e0c3fc; /* Change to a soft color on hover */
    transition: color 0.3s ease;
  }
  
  /* Lock Body Scrolling When Modal is Open */
  body.modal-active {
    overflow: hidden; /* Lock page scrolling */
  }
  

  footer {
    background: linear-gradient(180deg, #0e0e15 5%, #101019 100%);
    color: #e0c3fc;
    font-family: 'Poppins', sans-serif;
    padding: 15px 5%;
    position: relative;
    z-index: 10;
    margin-top: 60px;
    margin-bottom: 15px;
    border-radius: 8px;
    width: auto;
    min-height: 280px;
    min-width: 1120px;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Specific styles for 1920px wide screens */
@media (min-width: 1920px) {
    footer {
        width: 1465px; /* Set footer width to 1920px specifically for this screen size */
        min-width: 1450px;
        max-width: 3050px;
        height: 250px;
        margin-left: calc(-65px + 5%); /* Adjust the left margin based on your main-content margin */
        margin-right: 5%; /* Adjust the right margin to prevent overflow */
        display: flex;
        margin: 0 auto;
        width: 80%; /* Ensure the footer spans the full width */
        position: relative;
        height: auto;
        padding: 10px 20px; /* Padding for inner spacing */
    }
}

  
  /* Footer Right Section */
  .footer-right {
    display: block;
    width: 100%;
    padding-left: 10px; /* Reduced padding */
  }
  
  .footer-left h2 {
    font-size: 1.2rem; /* Reduced heading font size */
    color: white;
    font-weight: 10%;
  }
  
  .footer-right h3 {
    font-size: 1rem; /* Reduced heading font size */
    color: white;
    text-align: right;
  
  }
  
  /* Footer Right Navigation Container */
  .footer-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px; /* Reduced spacing between items */
    margin-bottom: 15px; /* Reduced space below */
    margin-left: 170px;
    align-items: center; /* Ensures items align properly */
  }
  
  /* Footer Right Navigation Items */
  .footer-nav-links a {
    font-size: 0.9rem; /* Slightly smaller font size */
    color: #909090;
    text-decoration: none;
    margin: 0;
    transition: all 0.3s ease;
    line-height: 2; /* Reduced height gap between lines */
  }
  
  
  .payment-icons {
    display: flex;
    justify-content: center; /* Centers the icons horizontally */
    align-items: center;     /* Aligns the icons vertically */
    gap: 15px;               /* Adds space between icons */
    margin-top: 20px;        /* Adds some spacing from the section above */
  }
  
  .payment-icon {
    width: 30px;             /* Set a uniform width for all icons */
    height: auto;            /* Maintain aspect ratio */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth hover effect */
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2)); /* Optional shadow for depth */
  }
  
  .footer-left p {
    font-size: 0.9rem; /* Reduced text size */
    color: #b4b3b3;
    max-width: 1000px; /* Reduced width */
  }
  
  .footer-left .p2 {
    font-size: 0.75rem; /* Slightly smaller font size */
    color: #909090;
    padding: 2px 5px; /* Minimal padding */
    line-height: 1.2; /* Compact line spacing */
    margin: 10px 0; /* Simplified margin */
    margin-left: -5px;
    text-align: left; /* Ensure left alignment */
    max-height: none; /* Allow text to take up as much height as needed */
    overflow: visible; /* Ensure all text is visible */
    text-overflow: ellipsis; /* Optional, if you still want ellipsis when text overflows container */
    white-space: normal; /* Allow text to wrap */
    width: 100%; /* Adjust width to fit the container */
    word-break: break-word; /* Break words when necessary */
    display: block; /* Ensure it's a block-level element */
    box-sizing: border-box; /* Include padding and border in element's total width/height */
  }
  
  
  /* Hover effect for navigation items */
  .footer-nav-links a:hover {
    color: #ff6ec7;
    text-decoration: underline;
  }
  
  /* Adjust Footer Sections for Proportions */
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  
  .footer-left {
    flex: 1 1 50%; /* Adjusted flex for proportional balance */
    min-width: 250px;
    max-width: 600px;
  }
  
  .footer-right {
    flex: 1 1 40%; /* Adjusted flex for proportional balance */
    min-width: 250px;
    max-width: 400px;
  }
  
  /* Footer Bottom Section */
  .footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 10px; /* Reduced space above */
  }
  
  .footer-bottom hr {
    height: 1px; /* Thickness of the line */
    background: rgb(62, 60, 60); /* Line color */
    margin-bottom: 10px; /* Adjust spacing below */
    border: none; /* Remove any default border applied by the browser */
    box-shadow: none; /* Remove any shadow that might be applied */
  }
  
  
  .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .footer-bottom .left p, .footer-bottom .right a {
    font-size: 0.8rem; /* Smaller font size */
    color: #5e5e5e;
  }
  
  /* Styling for Footer Terms Button */
  .footer-btn {
    background: none; /* Remove background */
    border: none; /* Remove border */
    color: #5e5e5e; /* Use the same color as before for consistency */
    font-size: 0.9rem; /* Adjust font size */
    font-weight: bolder;
    cursor: pointer; /* Pointer cursor on hover */
    padding: 0; /* Remove padding to make it look like a link */
    font-weight: normal; /* Keep the font weight normal */
    text-align: center;
  }
  
  /* Footer button hover effect */
  .footer-btn:hover {
    color: #ee176d; /* Slightly lighter color on hover */
  }
  
  /* Back to Top Button */
  .back-to-top {
    display: inline-flex;
    justify-content: center; /* Center the icon horizontally */
    align-items: center; /* Center the icon vertically */
    background-color: #ea0c61; /* Dark background for the button */
    color: white;  /* White icon color */
    width: 40px; /* Reduced button size */
    height: 40px;
    font-size: 20px; /* Adjusted icon size */
    border-radius: 50%; /* Make the button circular */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); /* Shadow effect for depth */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transitions for hover effects */
    text-decoration: none; /* Remove link underline */
  }
  
  /* Hover effect for Back to Top Button */
  .back-to-top:hover {
    background-color: #e66697; /* Lighter color on hover */
    transform: scale(1.1); /* Slightly enlarge the button on hover */
  }
  
  
  .footer-bottom .right a {
    color: #cfcbcd;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  .payment-icons{
    margin-left: 155px;
  }
  
  .footer-bottom .right a:hover {
    color: #ffffff;
  }

  /* Responsive Design */
@media (max-width: 720px) {
    footer {
        display: flex;
        margin: 0 auto;
        width: 80%; /* Ensure the footer spans the full width */
        position: relative;
        height: auto;
        padding: 10px 20px; /* Padding for inner spacing */
    }

    .footer-content {
        display: flex;
        flex-direction: column; /* Stack items vertically on smaller screens */
        margin: 0 auto;
        padding: 10px;
        position: relative;
        left: -350px;
        
    }

    /* Adjust content in footer-left and footer-right to avoid overlap */
    .footer-left, .footer-right {
        text-align: center;
        display: block !important; /* Ensures it's not using flex */
        width: 100%;
        margin-bottom: 15px; /* Ensure space between sections */
    }


    .footer-left p {
        max-width: 100% !important; /* Forces full width for wrapping */
        width: 60% !important; /* Keeps the responsive width */
        word-wrap: break-word !important; /* Forces long words to break */
        white-space: normal !important; /* Forces text to wrap */
        overflow: hidden !important; /* Hides any overflowing content */
        text-align: center;
        margin: 0 auto;
    }
    

    .footer-left .p2 {
        display: none;
    }

    .footer-nav-links {
        max-width: 350px;
        width: auto;
        margin-left: 240px;
        flex-direction: column;
    }

    .footer-nav-links a {
        font-size: 0.9rem;
        color: #e0c3fc;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-right: 68px;
    }

    .footer-nav-links p {
        font-size: 0.9rem;
        color: #e0c3fc;
        text-decoration: none;
        transition: all 0.3s ease;
        padding: 10px 15px;
    }

    .footer-right h3 {
        text-align: center;
        font-size: 1rem;
    }

    /* Payment Icons */
    .payment-icons {
        display: flex;
        gap: 10px;
        margin-top: 75px; /* Ensure spacing */
        margin-bottom: 10px; /* Adjust margin */
    }

    .payment-icons span {
        font-size: 1.3rem;
        color: #fff;
    }
}

/* Responsive Design */
@media (max-width: 1180px) {

    footer {
        display: flex;
        margin: 0 auto;
        position: relative;
        height: auto;
        padding: 10px 20px; /* Padding for inner spacing */
        width: 60%;
    }
    .footer-content {
        flex-direction: column;
        margin: 0 auto;
        margin-left: 245px;
        padding: 10px;
        position: relative;
    }

        /* Adjust content in footer-left and footer-right to avoid overlap */
        .footer-left, .footer-right {
            text-align: center;
            margin-bottom: 15px; /* Ensure space between sections */
        }
    
        .footer-left p {
            max-width: 600px;
            text-align: center;
            margin: 0 auto;
            width: auto;
        }
    
        .footer-left .p2 {
            display: none;
        }
    
    
        .footer-right h3 {
            text-align: center;
            margin-left: 175px;
        }

          /* Back to Top Button */
        .back-to-top {
            display: none;
        }

            /* Payment Icons */
    .payment-icons {
        margin-top: 35px;
        margin-bottom: 45px; /* Adjust margin */
    }
    
}
/* Responsive Design */
@media screen and (min-width: 766px) and (max-width: 811px) {
    footer {
        display: flex;
        margin: 0 auto;
        width: 80%; /* Ensure the footer spans the full width */
        position: relative;
        height: auto;
        padding: 10px 20px; /* Padding for inner spacing */
        max-height: 5000px;
        padding: 10px 20px; /* Padding for inner spacing */
    }

    .footer-content {
        flex-direction: column;
        margin: 0 auto;
        margin-left: 375px;
        padding: 10px;
        position: relative;
    }

    /* Adjust content in footer-left and footer-right to avoid overlap */
    .footer-left, .footer-right {
        text-align: center;
        margin-bottom: 15px; /* Ensure space between sections */
    }

    .footer-left p {
        max-width: 350px;
        text-align: center;
        margin: 0 auto;
        width: auto;
    }

    .footer-left .p2 {
        display: none;
    }

    .footer-nav-links {
        max-width: 350px;
        text-align: center;
        margin: 0 auto;
        width: auto;
        flex-direction: column;
    }

    .footer-nav-links a {
        font-size: 0.9rem;
        color: #e0c3fc;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-right: 65px;
    }

    .footer-nav-links p {
        font-size: 0.9rem;
        color: #e0c3fc;
        text-decoration: none;
        transition: all 0.3s ease;
        padding: 10px 15px;
    }

    .footer-right h3 {
        text-align: center;
        margin: 0 auto;
        margin-right: 65px;
        margin-top: 15px;
        margin-bottom: 10px;
        font-size: 1rem;
    }

    /* Payment Icons */
    .payment-icons {
        display: flex;
        gap: 10px;
        margin: 0 auto;
        margin-right: 65px;
        margin-top: 65px; /* Ensure spacing */
        margin-bottom: 35px; /* Adjust margin */
    }

    .payment-icons span {
        font-size: 1.3rem;
        color: #fff;
    }
}


  /* Hover effect for navigation items */
  .footer-nav-links a:hover {
    color: #ff6ec7;
    text-decoration: underline;
  }
  
  /* Footer Right Section */
  .footer-right {
    display: block;
    width: 100%;
    padding-left: 10px; /* Reduced padding */
    text-align: center; /* Ensure everything inside is centered */
  }