/* === GLOBAL STYLES & VARIABLES === */
:root {
    --bg-color: #121212;
    --surface-color: #1e1e1e;
    --primary-color: #00aaff;
    --primary-hover-color: #33bbff;
    --text-color: #e0e0e0;
    --text-muted-color: #888;
    --border-color: #333;
    --aep-bg-color: #11131a;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

body.product-page-body {
    background-color: var(--aep-bg-color);
}
body.has-abstract-bg {
    position: relative;
    overflow-x: hidden;
}
body.has-abstract-bg::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/brand-bg-abstract.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: -1;
    filter: blur(20px);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }
.separation-padding { padding: 20px 0; }

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 60px; }
h3 { font-size: 1.5rem; }

p.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted-color);
    max-width: 600px;
    margin: 1rem auto 2rem auto;
}
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
}
a:hover { color: var(--primary-hover-color); }

h3 a, h2 a {
    color: var(--primary-color);
}
h3 a:hover, h2 a:hover {
    color: var(--primary-hover-color);
    text-decoration: underline;
}

/* === HEADER & NAVIGATION === */
header {
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    display: inline-block;
    /*align-items: center;*/
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}

.logo .brand-logo 
{ 
    height: 35px; 
    width: auto; 
    vertical-align: -0.1em; /* Fine-tune vertical alignment */
    border: none;
}

nav ul { margin: 0; padding: 0; list-style: none; display: flex; gap: 25px; }


/* === DROPDOWN MENU STYLES (Corrected) === */
nav .dropdown {
    position: relative; /* This is the anchor for the menu */
    /* NEW: Add padding to create a hoverable bridge */
    padding-bottom: 15px;
    margin-bottom: -15px; /* Pull the element back into place */
}

nav .dropdown-toggle::after {
    /* Creates the little down-arrow icon */
    content: ' ▼';
    font-size: 0.7em;
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}

nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* Position it right at the bottom of the new padded area */
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    /* REMOVED: The problematic margin-top */
    /* margin-top: 10px; */ 
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 1100;
    
    /* NEW: Animation for a smoother appearance */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px); /* Start slightly lower */
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

/* Show the menu when hovering over the parent .dropdown list item */
nav .dropdown:hover .dropdown-menu {
    display: block;
    /* NEW: Animate into view */
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0); /* Move to final position */
}

nav .dropdown-menu li {
    margin: 0;
}

nav .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    white-space: nowrap;
}

nav .dropdown-menu a:hover {
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
}


/* === MOTTO BAR === */
#motto-bar {
    background-color: var(--surface-color);
    text-align: center;
    padding: 15px 20px;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--motto-color);
    border-bottom: 1px solid var(--border-color);
}

/* === BUTTONS === */
.btn, button.btn-primary, .btn-small {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    text-align: center;
}
.btn:hover, button.btn-primary:hover, .btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.btn.btn-primary, button.btn-primary, .btn-small.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.btn.btn-primary:hover, button.btn-primary:hover, .btn-small.btn-primary:hover {
    background-color: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
}
.btn-small {
    padding: 6px 12px;
    font-size: 0.9rem;
}
.btn-small:hover {
    border-color: var(--primary-color);
}



/* NEW: DISABLED & LAUNCH CTA STYLES */
.marketplace-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: var(--surface-color);
}
.marketplace-card.disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border-color);
}
.marketplace-card.launch-cta {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.2);
}
.coming-soon-card {
    opacity: 0.7;
}
.coming-soon-label {
    display: block;
    margin-top: auto;
    padding-top: 20px;
    text-align: right;
    font-weight: 600;
    color: var(--text-muted-color);
}



/* === HERO & PRODUCT HEADER SECTIONS === */
#hero, #product-header { text-align: center; padding: 80px 0; }
.cta-buttons { display: flex; justify-content: center; gap: 15px; margin-top: 30px; }
.cta-section { text-align: center; background-color: var(--surface-color); }
.product-logo {
    display: inline-block;
    height: 100px;
    width: auto;
    margin-bottom: 20px;
    background-color: var(--surface-color);
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-sizing: content-box;
}
.hero-with-bg {
    position: relative;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}
.hero-with-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(50, 50, 50, 0.8);
    /*backdrop-filter: blur(10px);*/
    z-index: 1;
}
.hero-with-bg .hero-content {
    position: relative;
    z-index: 2;
}



/* === FINAL CTA SECTION STYLE === */
#final-cta {
    border-top: 1px solid var(--border-color);
}



/* === GRID LAYOUTS === */
.tools-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/*
.tools-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .tools-grid { grid-template-columns: 1fr 1fr; }
}
*/

.card {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}
.card p {
    flex-grow: 1;
}
.card .card-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
    background-color: #333;
}


.card .card-video-wrapper {
    width: 100%;
    height: 400px; /* Give it a fixed height for consistency */
    overflow: hidden; /* Hides any part of the video that might overflow */
    margin-bottom: 20px;
    border-radius: 4px;
    background-color: #000; /* Black background for during load */
}

.card .card-image { /* This now applies to both <img> and <video> */
    width: 100%;
    height: 100%; /* Make the video/image fill the wrapper */
    object-fit: cover; /* This is the magic part - it scales the video to cover the area */
    display: block; /* Treat the element as a block, not inline */
}


.card.card-bg {
    position: relative;
    min-height: 400px;
    padding: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: #fff;
    justify-content: flex-end;
}
.card-overlay {
    position: relative;
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
}
.card.card-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}
.card.card-bg:hover::before {
    /*background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.1) 100%);*/
    background: linear-gradient(to bottom, rgba(100,100,100,0.95) 0%, rgba(100,100,100,0.7) 50%, rgba(100,100,100,0.1) 100%);
}
.card-overlay h3 { color: #fff; }
.card-overlay p { color: #fff; opacity: 0.8; flex-grow: 1; }
.card-overlay .card-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
}
.card-overlay .card-link:hover {
    color: var(--primary-hover-color);
    text-decoration: underline;
}




/* === AEP FEATURES GRID === */
.features-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}
@media (min-width: 900px) {
    .features-grid { grid-template-columns: 1fr 1fr; }
    .wide-card {
        grid-column: span 2;
        display: flex;
        align-items: center;
        gap: 40px;
    }
    .wide-card .hero-image { flex: 0 0 45%; margin-bottom: 0; }
    .wide-card .card-content { flex: 1; }
}
.feature-card {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}
.feature-card h4 { font-size: 1.8rem; margin: 0.5rem 0; }
.feature-card p { color: var(--text-muted-color); }




/* === DETAILED ASSET CARD STYLES === */
.asset-card {
    /* Uses the same base as .card for consistency */
    background-color: var(--surface-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow: hidden; 
}

.asset-card .card-media-wrapper {
    width: 100%;
    max-height: 400px; /* Limit video height */
    background-color: #000;
}

.asset-card .card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Removes any small gaps below the video */
}


/* --- PLAY ICON FOR ASSET CARDS --- */
.asset-card .card-video-link {
    display: block;
    position: relative; /* This is the container for the absolute icon */
    overflow: hidden; /* Ensures the icon doesn't spill out */
    border-radius: 8px 8px 0 0; /* Match the card's top corners if media is at the top */
}

.asset-card .play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Start slightly larger and fade out */
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
    
    /* Visual styles */
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    
    /* Smooth transition for the hover effect */
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2; /* Ensure it's on top of the video */
}

/* This is the hover effect */
.asset-card .card-video-link:hover .play-icon-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); /* Animate to normal size */
}

.asset-card .card-video-link:hover .card-video {
    transform: scale(1.05); /* Optional: slight zoom on the video as well */
}


/* Content padding is now on a separate div */
.asset-card h3,
.asset-card .tagline,
.asset-card .feature-list-wrapper,
.asset-card .card-actions {
    padding-left: 30px;
    padding-right: 30px;
}

.asset-card h3 {
    margin-top: 30px;
    margin-bottom: 5px;
}

.asset-card .tagline {
    color: var(--text-muted-color);
    font-style: italic;
    margin-top: 0;
    margin-bottom: 10px;
}

.asset-card .feature-list-wrapper {
    flex-grow: 1; /* Pushes the actions to the bottom */
}

.asset-card h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted-color);
    text-transform: uppercase;
}

.asset-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.asset-card li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.asset-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.asset-card .card-actions {
    padding-top: 20px;
    padding-bottom: 30px;
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.asset-card .secondary-link {
    font-size: 0.9rem;
    color: var(--text-muted-color);
    text-decoration: none;
}

.asset-card .secondary-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}



/* === COMING SOON CARD STYLE === */
.coming-soon-card {
    /* Make it visually distinct */
    background-color: transparent; /* No solid background */
    border-style: dashed;          /* Dashed border to look like a placeholder */
    
    /* Center the content */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    margin-top: 2rem;
    
    /*min-height: 400px; /* Give it a similar height to the other cards */
    opacity: 0.6;      /* Fade it out slightly */
}

.coming-soon-card h3 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--text-muted-color);
}

.coming-soon-card p {
    color: var(--text-muted-color);
    max-width: 300px; /* Keep the text from getting too wide */
    margin-top: 1rem;
}


.coming-soon-card-label {
    display: block;
    margin-top: auto; /* Pushes the label to the bottom */
    padding-top: 20px; /* Space above the label */
    text-align: right;
    font-weight: 600;
    color: var(--text-muted-color);
}

.coming-soon-label {
    display: block;
    margin-top: auto; /* Pushes the label to the bottom */
    padding-top: 20px; /* Space above the label */
    text-align: right;
    font-weight: 600;
    color: var(--text-muted-color);
}


/* === ASSETS PAGE GRID === */
.assets-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .assets-grid { grid-template-columns: 1fr 1fr; }
}


/* === IMAGE STYLES === */
.hero-image, .product-ui-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}
#hero .hero-image { margin-bottom: 40px; }
#product-header .product-ui-image {
    margin-top: -20px;
    margin-bottom: 0px;
    border-radius: 8px 8px 0 0;
}

/* === MAIN PRODUCT HERO IMAGE STYLE === */
.product-hero-image {
    /* Base styles for all screen sizes */
    display: block;      /* Ensures it behaves like a block element */
    width: 100%;         /* Makes the image responsive by default */
    height: auto;        /* Maintains aspect ratio */
    max-width: 800px;    /* The maximum width it can have on large screens */
    margin: 40px auto 0 auto; /* Adds top margin and centers it horizontally */
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Adds a professional drop shadow */
    border: 1px solid var(--border-color); /* A subtle border */
}


/* === VIDEO SHOWCASE STYLES === */
#video-showcase .container { max-width: 900px; }
#video-showcase h2 { margin-bottom: 60px; }
.featured-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: 8px;
    background-color: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.featured-video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}
#video-showcase h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-top: 2rem;
    color: var(--text-color);
}
#video-showcase p {
    text-align: center;
    color: var(--text-muted-color);
    margin-top: -0.5rem;
}
.playlist-section { margin-top: 80px; text-align: left; }
.playlist-section h4 {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 40px;
}
.playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}
.playlist-item {
    display: block;
    background-color: var(--surface-color);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--border-color);
    position: relative;
}
.playlist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.playlist-item img {
    display: block;
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--border-color);
}
.playlist-item span {
    display: block;
    padding: 15px;
    color: var(--text-color);
    font-weight: 600;
}
.playlist-item .play-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    border-radius: 50%;
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.playlist-item:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* === CONTACT & PRIVACY === */
.contact-grid {
    display:grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}
@media (min-width: 768px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-flex {
    display:inline-flex;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}
@media (min-width: 768px) {
    .contact-flex { grid-template-columns: 1fr 1fr; }
}

.contact-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}
.contact-card h3 { margin-top: 0; }
.privacy-note {
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--text-muted-color);
    text-align: center;
}
.privacy-note a { color: var(--text-muted-color); text-decoration: underline; }

/* === MODAL POP-UP STYLES === */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: var(--surface-color);
    padding: 40px;
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.modal-content .close-button {
    color: var(--text-muted-color);
    position: absolute;
    top: 15px; right: 20px;
    font-size: 28px;
    font-weight: bold;
    border: none; background: none; cursor: pointer;
}
.modal-content .close-button:hover { color: var(--text-color); }
.modal-content h3 { margin-top: 0; text-align: center; }
.modal-content p { text-align: center; color: var(--text-muted-color); }
.marketplace-grid { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.marketplace-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.2s ease;
}
.marketplace-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: var(--primary-color);
}
.marketplace-card img { height: 40px; width: auto; }
.marketplace-card small {
    display: block;
    font-size: 0.8em;
    font-weight: normal;
    color: var(--text-muted-color);
    margin-top: 2px;
}



/* === NEWSLETTER SIGNUP STYLES === */
#newsletter-signup {
    max-width: 600px;
    margin: 0 auto 60px auto; /* Center it and add space below */
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}
#newsletter-signup h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
#newsletter-signup p {
    color: var(--text-muted-color);
    margin-bottom: 2rem;
}

.newsletter-form form {
    display: flex;
    flex-direction: column; /* Stack on mobile by default */
    gap: 15px;
}

.newsletter-form .email-input {
    flex-grow: 1; /* Allow it to take available space */
    padding: 14px 20px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
}
.newsletter-form .email-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.2);
}

.newsletter-form .submit-button {
    padding: 14px 28px;
}

/* On wider screens, place input and button side-by-side */
@media (min-width: 500px) {
    .newsletter-form form {
        flex-direction: row;
    }
}



/* === FOOTER === */
footer {
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted-color);
}
.footer-links { margin-bottom: 20px; }
.footer-links a { margin: 0 15px; color: var(--text-muted-color); }
.footer-links a:hover { color: var(--primary-color); }

/* NEW: SOCIAL LINKS IN FOOTER */
.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}
.social-links a {
    color: var(--text-muted-color);
    transition: all 0.2s ease;
}
.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}
.social-links svg {
    width: 28px;
    height: 28px;
}


/* === RESPONSIVE STYLES for smaller devices === */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    header .container { flex-direction: column; gap: 15px; }
    .cta-buttons { flex-direction: column; }
    .wide-card { flex-direction: column; gap: 20px; }
    .wide-card .hero-image { margin-bottom: 20px; }
}


/* === DISABLED & LAUNCH CTA STYLES === */
.marketplace-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: var(--surface-color);
}
.marketplace-card.disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border-color);
}
.marketplace-card.launch-cta {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.2);
}
.coming-soon-card {
    /* This can be used on both card types now */
    opacity: 0.7;
}
.coming-soon-label {
    /* For simple text cards */
    display: block;
    margin-top: auto;
    padding-top: 20px;
    text-align: right;
    font-weight: 600;
    color: var(--text-muted-color);
}
/* NEW: Style for disabled buttons on asset cards */
.btn-primary-disabled {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-weight: 600;
    color: var(--text-muted-color);
    opacity: 0.7;
    cursor: default;
}



