  
      .vector img{
        width: 600px;
    }
    .comingsoon{
  
    text-align: center;
    padding: 80px;
    margin-bottom:40px;
    /* background-color: red; */

    }
    .brand{
        padding: 20px;
    }
    /* Animation for the detail content wrapper */
#detail-view {
    transition: opacity 0.4s ease, transform 0.4s ease;
}
/* Error State for Inputs */
.input-error {
    border: 1px solid #ff4d4d !important;
    background-color: rgba(255, 77, 77, 0.05) !important;
    animation: shake 0.3s ease-in-out;
}
/* Container for stacking alerts */
#toast-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none; /* Allows clicking through empty space */
}

/* The Success Alert */
.success-alert {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 28px;
    min-width: 320px;
    
    /* Background: Semi-transparent Green with Blur */
    background: rgba(34, 197, 94, 0.1); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    /* Deep, Vibrant Border */
    border: 2px solid #22c55e; 
    border-radius: 20px;
    
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    
    /* Animation: Pop from bottom with bounce */
    animation: popUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    pointer-events: auto;
   
}

.success-alert i {
    color: #22c55e;
    font-size: 1.4rem;
    filter: drop-shadow(0 0 5px rgba(34, 197, 94, 0.4));
}
.error-alert {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 28px;
    min-width: 320px;
    background: rgba(239, 68, 68, 0.1); /* Red Transparent */
    backdrop-filter: blur(12px);
    border: 2px solid #ef4444; /* Deep Red Border */
    border-radius: 20px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    animation: popUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.error-alert i {
    color: #ef4444;
    font-size: 1.4rem;
}
/* Keyframes for the 'Pop' effect */
@keyframes popUp {
    from {
        transform: translateY(100px) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Smooth Fade Out */
.fade-out {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
    transition: all 0.4s ease;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
#Error{
   color: red;
    text-align: start;
     font-size: 14px;
     display: none;
}
/* Toast Notification System */
#toast-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #1a1a1a;
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-left: 5px solid #8E6BCB; /* Brand Purple */
    transition: opacity 0.5s ease;
}

.toast.error {
    border-left-color: #ff4d4d;
}
/* We will momentarily apply this class via JS during the switch */
.switching {
    opacity: 0;
    transform: translateY(10px);
}

/* Ensure the preview section has some padding for the scroll */
#preview-section {
    scroll-margin-top: 10px; 
}
  .asset-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  width: 300px; /* Matching your image width */
  min-height: 300px; /* Prevents layout collapse while loading */
  background: #ffffff; /* Dark base matching your theme */
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
/* 1. The Shimmer Animation */
@keyframes placeholderShimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}

/* 2. The Main Card Container */
.skeleton-card {
    width: 300px;
    height: 350px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

/* 3. The Animated Base (The "Ink") */
.skeleton-media, 
.skeleton-line {
    background: #f6f7f8;
    background-image: linear-gradient(
        to right, 
        #f6f7f8 0%, 
        #edeef1 20%, 
        #f6f7f8 40%, 
        #f6f7f8 100%
    );
    background-repeat: no-repeat;
    background-size: 800px 100%; 
    animation: placeholderShimmer 1.25s infinite linear;
}

/* 4. Sizing the parts */
.skeleton-media {
    height: 200px;
    width: 100%;
}

.skeleton-content {
    padding: 20px;
    flex: 1;
}

.skeleton-line {
    height: 12px;
    margin-bottom: 12px;
    border-radius: 4px;
}

.skeleton-line.headline {
    width: 80%;
    height: 18px;
}

.skeleton-line.subline {
    width: 50%;
}
#detail-view, #home-view {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Update your trigger to ensure visibility */
.asset-card:hover .hover-overlay {
  opacity: 1;
  z-index: 10; /* Boost z-index on hover to stay on top */
}

/* Ensure the Skeleton stops when loading class is removed */
.asset-card.loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    #1a1a1a 25%, 
    #2a2a2a 50%, 
    #1a1a1a 75%
  );
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s infinite;
  z-index: 1;
}

/* Explicitly hide the pseudo-element when not loading */
.asset-card:not(.loading)::before {
  display: none;
}
@keyframes skeleton-pulse {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
 
/* Hide image until fully loaded */
.asset-img {
  width: 300px;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.asset-img.loaded {
  opacity: 1;
}

/* Keep your hover styles */
.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85); 
  display: flex;
  align-items: end;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 10px;
  z-index: 2; /* Ensures overlay is above skeleton */
}
.overlay-content {
  color: white;
  width: 100%;
  height: 100%; /* Fill the entire overlay */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Push icon top, text bottom */
  padding: 15px;
  box-sizing: border-box;
}

/* Styling the Top-Left Download Icon */
.download {
  background: rgba(255, 255, 255, 0.2); /* Subtle glass effect */
  width:15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
 position: relative;
 right:  10px;
  cursor: pointer;
  align-self: flex-end; /* Ensure it stays on the left */
}

.download:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Text spacing at the bottom */
.overlay-content h3 {
  margin-top: auto; /* Ensures text stays at the bottom */
  font-size: 15px;
  margin-bottom: 5px;
}

.overlay-content p {
  font-size: 11px;
  margin-bottom: 10px;
  color: #4db8ff;
}
  .overlay-content h3{
        font-size: 15px;
    }
    .overlay-content p{
        font-size: 10px;
    }
    body {
        margin: 0;
        overflow-x: hidden;
      }

.filter-container {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-wrapper {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Hide scrollbar for clean look */
}

.filter-chip {
    background-color: #1e1e1e; /* Dark grey pill background */
    color: #fff;
    border: 1px solid transparent;
    border-radius: 25px;
    padding: 8px 18px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}
/* --- Global Reset for Modal Context --- */
.auth-overlay * {
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', sans-serif; /* Recommended similar font to photo */
}

/* --- The Overlay (Background Dimmer) --- */
.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Less dim to mimic photo feel */
    backdrop-filter: blur(8px);
    display: none; /* Hidden by default */
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
/* Layout for the User UI */
.user-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notif-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 5px;
}

.notif-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 7px;
    height: 7px;
    background: #ff4757;
    border-radius: 50%;
    border: 1.5px solid #1a1a1a; /* Matches your background */
}

.profile-container {
    position: relative;
}

#userAvatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #8E6BCB;
    object-fit: cover;
}

/* Professional Dropdown Card */
.dropdown-card {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    width: 180px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    display: none;
    z-index: 10000;
    overflow: hidden;
}

.dropdown-card.active { display: block; }

.dropdown-header {
    padding: 12px 15px;
    
}

.dropdown-header p {
    color: #333;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
}

.dropdown-links { list-style: none; padding: 0; margin: 0; }

.dropdown-links li a {
    display: block;
    padding: 10px 15px;
    color: #444;
    text-decoration: none;
    font-size: 0.85rem;
}
.notif-container {
    position: relative;
    display: flex;
    align-items: center;
}

/* Positioning the notification dropdown */
.notif-dropdown {
    width: 250px !important;
    top: 50px;
    right: -50px; /* Adjusted so it aligns better with the bell */
}

.notif-empty-state {
    padding: 30px 20px;
    text-align: center;
    color: #888;
}

.notif-empty-state i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
    color: #ccc;
}

.notif-empty-state p {
    font-size: 0.8rem;
    margin: 0;
}

/* Ensure dropdowns don't overlap if both are open */
.dropdown-card.active {
    display: block;
}
.dropdown-links li a:hover { background: #f1f1f1; color: #8E6BCB; }

.logout-link { color: #ff4757 !important; border-top: 1px solid #eee; }
/* This class is added by JavaScript to show the modal */
.auth-overlay.active {
    display: flex;
}

/* --- The Main Login Card (Changed to Light Theme) --- */
.auth-card {
    background: #FFFFFF; /* Pure white from photo */
    padding: 25px 30px; /* Generous padding */
    border-radius: 30px; /* Softer corners from photo */
    width: 100%;
    height: 600px;
    max-width: 480px; /* Slightly wider max-width for social btns */
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1); /* Lighter shadow */
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

/* --- The X Close Button --- */
.close-auth {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}
.input-icon-right {
    cursor: pointer;
}
.close-auth:hover {
    color: #333;
}

/* --- Typography (Matching Photo Styles) --- */
.auth-title {
    color: #222; /* Darker title */
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.auth-subtitle {
    color: #666; /* Greyer subtitle */
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 35px 0;
    font-weight: 400;
}

/* --- The Email Form & Input Styling --- */
.email-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.input-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.auth-card input {
    width: 100%;
    padding: 16px 20px; /* Taller padding */
    border-radius: 12px; /* Smoother input corners */
    border: 1px solid #E0E0E0; /* Light grey border from photo */
    background: #FFFFFF;
    color: #333;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.auth-card input::placeholder {
    color: #A0A0A0; /* Lighter placeholder */
}

.auth-card input:focus {
    border-color: #8E6BCB; /* Subtle focus color matching purple */
}

/* Common icons on right side of input */
.input-icon-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #C0C0C0; /* Grey icon matching placeholder */
    font-size: 1.1rem;
}

/* --- Links Styling --- */
.trouble-link, .request-link {
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.trouble-link {
    color: #222; /* Darker like title */
    display: block;
    margin: 10px 0 25px 0; /* Match photo spacing */
    width: 100%;
    text-align: left; /* Aligned left as in photo */
    padding-left: 5px;
}

.request-link {
    color: #8E6BCB; /* The main purple accent */
}

.trouble-link:hover, .request-link:hover {
    opacity: 0.8;
}

/* --- Main "Sign in" Button (Purple Accent) --- */
.sign-in-btn {
    width: 100%;
    background: #8E6BCB; /* The distinct purple from photo */
    color: #FFFFFF;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(142, 107, 203, 0.2); /* Soft purple shadow */
    transition: background 0.2s ease, transform 0.1s ease;
}

.sign-in-btn:hover {
    background: #7B56B9; /* Slightly darker purple */
}

.sign-in-btn:active {
    transform: translateY(1px);
}

/* --- Social Divider ("Or Sign in with") --- */
.social-divider {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 30px 0; /* Large spacing before social buttons */
}

.social-divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: #E0E0E0; /* Matches input borders */
}

.social-divider-text {
    padding: 0 15px;
    color: #888;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap; /* Ensures text stays in one line */
}

/* --- Social Buttons Grid (New layout for Apple and Facebook) --- */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px; /* Spacing between the three buttons */
    margin-bottom: 35px; /* Spacing before footer text */
    width: 100%;
}

/* Base style for all social buttons */
.social-btn {
    flex: 1; /* Makes them all the same width */
    max-width: 100%; /* Caps the width so they don't get too big */
    display: flex;
   gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    border-radius: 12px;
    border: 1px solid #E0E0E0; /* Light border */
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #555;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
}

.social-btn:hover {
    background-color: #F8F8F8; /* Subtle light hover */
    border-color: #D0D0D0;
}

/* Icons and images within social buttons */
.social-btn img {
    height: 20px; /* Standardize icon/img height */
    width: auto;
    margin-bottom:6px; /* Space between icon and text */
}
.filter-chip:hover {
    background-color: #2a2a2a;
}

.filter-chip.active {
    background-color: #4db8ff;;
 
}

.arrow {
    font-size: 10px;
    opacity: 0.7;
}

.scroll-arrow {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding-left: 10px;
}
.search-container {
    position: relative;
    width: 80%;
    margin: 20px auto; /* Centers the bar on your page */
}

#search-bar {
    padding: 15px 15px 15px 50px; /* Extra left padding (50px) to make room for icon */
    width: 100%;
    border-radius: 10px;
    background-color: #303030; /* Matches your current dark grey */
    color: white;
    border: none;
    outline: none;
    font-size: 16px;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888; /* Subtle grey for the icon */
    pointer-events: none; /* Allows clicks to pass through to the input */
}

/* Optional: Add a subtle glow when focused */
#search-bar:focus {
    background-color: #383838;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}
.info-card p{
  color: white;
  font-size: 20px;
  }
.modal-content {
    background: #0a0e14;
    width: 90%;
    max-width: 1000px;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    color: white;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-body {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.modal-preview img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #333;
}

.modal-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.details-list p {
    margin: 15px 0;
    font-size: 1.1rem;
    color: #ffffff;
}

.details-list strong { color: #fff; }


.download-now-btn:hover { background: #1a1a1a; }

.related-section { margin-top: 40px; border-top: 1px solid #333; padding-top: 20px; }

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.close-btn {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 30px; cursor: pointer;
}
.title-2 h1{
font-size: 25px;
color: white;
margin-top: 10px;
/* background-color: red; */
width: 100%;
padding-top:20px;
}
/* Animation for the whole view */
.fade-in-view {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); /* Slight upward slide */
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Optional: Make the transition between views smoother */
#detail-view, #home-view {
    transition: opacity 0.3s ease;
}
/* 1. The Skeleton Container */
.img-skeleton-wrapper {
    position: relative;
    width: 450px;
    height: 450px; /* Fixed height for consistency */
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 2. Shimmer Animation Overlay */
.img-skeleton-wrapper.loading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    height: 100%;
    background: linear-gradient(
        90deg, 
        #1a1a1a 25%, 
        #262626 50%, 
        #1a1a1a 75%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite linear;
    z-index: 1;
}

/* 3. The Image - Hidden and "Invisible" */
#asset-img-display {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keeps your template from stretching */
    opacity: 0;
    visibility: hidden; /* This prevents the top-down render from showing */
    transition: opacity 0.6s ease-in-out; 
    z-index: 2;
}

/* 4. The Reveal Class */
#asset-img-display.loaded {
    opacity: 1;
    visibility: visible;
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
    
        #detailes{
display: flex;
/* padding: 40px; */
        }
        .preview img{
            /* width: 500px; */
            border-radius: 10px;
            width: 450px;
            /* background-color: rgb(255, 153, 127); */
        }
        .asset-info-sidebar{
            /* background-color: #4db8ff; */
            padding: 40px;
            margin: 40px;
            margin-top: 10%;

        }
        /* Sidebar Container */
.asset-info-sidebar {
    max-width: 100%;
   
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* The Glass Card */
.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two column grid */
    gap: 20px;
}

/* Individual Items */
.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item.full-width {
    grid-column: span 2; /* File name takes full width */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

/* Icons */
.info-item i {
    color: #00d2ff; /* Cyan accent color */
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Text Styling */
.info-text {
    display: flex;
    flex-direction: column;
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0a1128;
    z-index: 9999;
    
    /* 1. ALLOW SCROLLING */
    overflow-y: auto; 
    
    /* 2. HIDE SCROLLBAR (Chrome, Safari, Edge) */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px; /* Space for the X button */
    padding-bottom: 40px; /* Buffer at the bottom */

    /* Animation */
    transform: translateY(-100%); 
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.mobile-nav-links a:hover{
    color: #00d4ff;
    transition: 0.9s;
}

/* 3. HIDE SCROLLBAR (Chrome, Safari and Opera) */
.mobile-menu::-webkit-scrollbar {
    display: none;
}

.mobile-menu.active {
    transform: translateY(0);
}

/* X button moved to Top Right */
.close-menu {
    position: absolute;
    top: 25px; /* Distance from top */
    right: 25px; /* Distance from right */
    left: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.close-menu:hover {
    opacity: 0.7;
}

.close-menu:active {
    transform: scale(0.9);
}



.premium-link {
    color: #4db8ff !important; /* Accent color */
}

.mobile-nav-links a.premium-link {
    color: #4db8ff; /* Light Blue accent from the "Premium" btn */
}

.mobile-buttons {
    margin-top: 30px;
    width:90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}
#dlLink_m{
    width: 100%;
    display: flex;
    justify-content: center;
}
.mobile-buttons .btn-primary {
    width: 100%;
    background: #1a73e8; /* Blue color from your buttons */
    padding: 15px;
    border-radius: 8px;
    color: white;
    border: none;
   
    font-weight: bold;
    cursor: pointer;
}
.mobile-buttons .btn-primary:hover {
  opacity: 0.9;
  transition: 0.9s;
}
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 16px;
    color: white;
    text-decoration: none;
    display: block;
    padding: 20px 0;
    letter-spacing: 1px;

  background: none;
}
/* Container for Category + Arrow */
.dropdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    padding-left: 20px;
}

.arrow-icon {
    transition: transform 0.3s ease;
    fill: #4db8ff; /* Matches your premium link color */
}

/* The actual list (hidden by default) */
/* This is your existing code with one small fix */
.mobile-dropdown {
    list-style: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    /* Clean transition for both height and opacity */
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

/* 2. The state when the menu is open */
.has-dropdown.active .mobile-dropdown {
    /* Increase this significantly to accommodate the long list */
    max-height: 2000px; 
    opacity: 1;
    padding: 10px 0;
    /* This ensures you can scroll if it exceeds the phone screen height */
    overflow-y: visible; 
}

/* 3. Optional: Rotate the arrow icon if you have one */
.has-dropdown.active .arrow-icon {
    transform: rotate(180deg);
}

/* Optional: Make the scrollbar itself match your purple theme */
::-webkit-scrollbar {
    width: 10px;
    display: none;
}

::-webkit-scrollbar-track {
    background: #0B0E14;
}

::-webkit-scrollbar-thumb {
    background: #334155; /* Slate color */
    border-radius: 10px;
    border: 2px solid #0B0E14;
}

::-webkit-scrollbar-thumb:hover {
    background: #8E6BCB; /* Purple on hover */
}

/* When Active */
.has-dropdown.active .mobile-dropdown {
    max-height: 400px; /* Adjust based on list length */
    margin-top: 10px;
    padding-bottom: 10px;
}

.has-dropdown.active .arrow-icon {
    transform: rotate(180deg);
}
.label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.info-text span:not(.label) {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}


        .preview{
              /* background-color: rgb(255, 153, 127); */
              padding: 40px;
              /* background-color: red; */
        }
        .main-download{
            display: flex;
            align-items: center;
            /* gap: 25%; */
            justify-content: space-around;
            /* background-color: aqua; */
            padding: 10px;
            width: 100%;
        }
        #download{
            padding: 20px;
            width: 100%;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            background-color: rgb(66, 66, 66);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
          gap: 10px
          ;
        }
           #download:hover{
            transition: 0.5s;
            background-color: black;
        }
        .Related{
          padding: 30px;
          color: white;
        }
        /* Hide on Desktop */
.mobile-sticky-bar {
    display: none;
}

/* 📱 Mobile Styling */
@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 90%;
       
        display: flex;
        /* justify-content: center; */
        background:#11192C;
        z-index: 1000;
        padding: 20px;
         box-shadow: 0 10px 25px rgba(255, 254, 254, 0.4);
    }

    .mobile-dl-btn {
        width: 90%;
   background-color: rgb(66, 66, 66);
        color: #ffffff;
        border: none;
        padding: 16px;
        border-radius: 10px;
        /* font-weight: 800; */
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
       display: flex;
       gap: 10px;
        text-transform: uppercase;
          cursor: pointer;
        /* letter-spacing: 0.5px; */
    }
    .mobile-dl-btn:hover{
        background-color: #000000;
        transition: 0.5s;
    }
.asset-card{
    width: 100%;
}
.asset-img{
    width: 100%;
}
    /* Push the content up so it's not hidden behind the button */
    #detail-view {
        padding-bottom: 100px;
    }
}
@media(max-width:551px){
    .auth-card{
/* padding: 0; */
max-width: 100%;
height: 100vh;
border-radius: 0;
margin: 0;

    }
    .auth-overlay{
        padding: 0;
    }
}
        @media(max-width:974px){
            .main-download{
                flex-direction: column;
            }
            .img-skeleton-wrapper{
                display: flex;
                justify-content: center;
                text-align: center;
                width: 100%;
                height: auto;
                background: #F0BE1D;
                border-radius: 0;
            }
                .preview img{
            /* width: 500px; */
            border-radius: 0;
       
            /* background-color: rgb(255, 153, 127); */
        }
                #download{
        display: none;
    }
.info-card{
    display: none;
}
.content{
    padding: 0;
}
.title-2 h1{
    padding-left: 10px;
    width: 90%;
    font-size: 16px;
}
#related{
    font-size: 16px;
    padding-left: 10px;
}
.Related{
    padding:5px;
    margin-top: 20px;
      font-size: 16px;
}
.Related h1{
    padding-left: 300px;
}

            #asset-img-display{
width: 100%;
            }
.asset-info-sidebar {
 width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: none;
margin: 0;
padding: 0;

}
.preview{
    padding: 0;
}
.info-card{
 border-radius:0;
 width: 100%;
 padding: 0;    
}
.main-download{
    width: auto;
    padding: 0;
    margin: 0;
}
.content{
    margin-top: 20px;
}

        }
