/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ds-primary-color: #6e00ff;
    --ds-primary-light: #9d4edd;
    --ds-primary-light-rgb: 157, 78, 221; /* For rgba usage */
    --ds-secondary-color: #00ffe5;
    --ds-secondary-color-rgb: 0, 255, 229;
    --ds-dark-bg: #0a0a18;
    --ds-darker-bg: #05050f;
    --ds-light-text: #e6e6fa;
    --ds-gray-text: #a0a0c0;
    --ds-card-bg: rgba(16, 16, 36, 0.75);
    --ds-section-bg: rgba(10, 10, 24, 0.85);
    --ds-glass-effect: rgba(255, 255, 255, 0.05);
    --ds-header-height: 80px; /* Default, will be updated by JS */

    /* Status colors (can be used by booking widget or other elements) */
    --ds-status-available: #4ade80;
    --ds-status-limited: #facc15;
    --ds-status-booked: #f87171;
    --ds-status-booked-rgb: 248, 113, 113;

    /* Difficulty bar variables */
    --ds-difficulty-bar-height: 10px;
    --ds-difficulty-bar-track-bg: rgba(255, 255, 255, 0.15);
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth; /* For smooth scrolling */
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--ds-light-text);
    background-color: var(--ds-darker-bg);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

body::before {
    content: ''; /* Necessary for pseudo-elements to show */
    position: fixed; /* This is key for the fixed effect */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; /* Cover the entire viewport */
    z-index: -1; /* Place it BEHIND the body's actual content */

    background-image: url('../assets/images/background.webp'); /* Your background image */
    background-size: cover;
    background-position: center center; /* Default position */
    background-repeat: no-repeat;
    /* background-attachment: scroll; is not needed here, 'fixed' on pseudo-element is what we want */

    /* Optional: For potential performance on some browsers, but test carefully */
    will-change: transform;
}

main {
    flex-grow: 1; /* Ensures main content pushes footer down */
    position: relative; /* Add this */
    z-index: 1;       /* Add this */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ds-light-text); /* Default heading color */
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.ds-container {
    width: 90%;
    max-width: 1200px; /* Adjust as needed */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px; /* Gutters */
    padding-right: 15px;
}

.ds-highlight-text { /* Replaces .highlight */
    color: var(--ds-primary-light);
    position: relative;
    display: inline-block;
}

.ds-highlight-text--secondary { /* For secondary color highlight */
    color: var(--ds-secondary-color);
}

.ds-highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--ds-secondary-color);
}

.ds-highlight-text--secondary::after {
    background: var(--ds-primary-light);
}

/* Buttons */
.ds-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ds-btn--primary {
    background-color: var(--ds-primary-color);
    color: white;
    border-color: var(--ds-primary-color);
    box-shadow: 0 0 20px rgba(var(--ds-primary-light-rgb), 0.5);
}
.ds-btn--primary:hover {
    background-color: var(--ds-primary-light);
    border-color: var(--ds-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(var(--ds-primary-light-rgb), 0.7);
}

.ds-btn--secondary {
    background-color: var(--ds-secondary-color);
    color: var(--ds-dark-bg);
    border-color: var(--ds-secondary-color);
}
.ds-btn--secondary:hover {
    background-color: transparent;
    color: var(--ds-secondary-color);
    transform: translateY(-3px);
}

.ds-btn--outline {
    background-color: transparent;
    color: var(--ds-light-text);
    border-color: var(--ds-secondary-color);
}
.ds-btn--outline:hover {
    background-color: rgba(var(--ds-secondary-color-rgb, 0, 255, 229), 0.1); /* Assuming secondary color rgb */
    color: var(--ds-secondary-color);
    transform: translateY(-3px);
}

.ds-btn--link { /* For text-like buttons with an icon */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ds-secondary-color);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    background: none;
    border: none;
    padding: 0;
}
.ds-btn--link:hover {
    color: var(--ds-primary-light);
}
.ds-btn--link i {
    transition: transform 0.3s ease;
}
.ds-btn--link:hover i {
    transform: translateX(5px);
}


/* Site Header */
.ds-site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 24, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(var(--ds-primary-light-rgb), 0.2);
    transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
    height: var(--ds-header-height);
}
.ds-site-header--scrolled {
    background: rgba(5, 5, 15, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.ds-site-header__nav { /* Replaces nav tag directly */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%; /* Ensure it fills the parent header */
    max-width: 1400px; /* Max width for nav content */
    margin: 0 auto; /* Center the content within the header */
    /* --- MODIFIED --- */
    /* Replaced percentage padding with fixed padding to prevent overflow */
    padding: 0 2rem; 
}
.ds-site-header__logo {
    /* This is the critical fix. It tells the flex container (the header)
       that this item is not allowed to be shrunk. */
    flex-shrink: 0;
}
.ds-logo-mobile {
    display: none;
}
/* 桌面版 Logo 的樣式 */
.ds-logo-desktop {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
    display: block; /* 確保圖片為區塊元素，避免潛在的佈局問題 */
}
/* 桌面版 Logo 的滑鼠懸停效果 */
.ds-site-header__logo a:hover .ds-logo-desktop {
    transform: scale(1.05);
}
.ds-site-header__nav-list { /* Replaces .nav-links */
    display: flex;
    gap: 30px;
}
.ds-site-header__nav-link {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ds-light-text);
    position: relative;
    padding: 5px 0;
}
.ds-site-header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ds-secondary-color);
    transition: width 0.3s ease;
}
.ds-site-header__nav-link:hover::after,
.ds-site-header__nav-link.active::after {
    width: 100%;
}
.ds-site-header__actions { /* Container for language toggle and menu toggle */
    display: flex;
    align-items: center;
    gap: 15px;
}
.ds-site-header__lang-toggle {
    display: flex;
    gap: 5px;
}
.ds-site-header__lang-btn { /* Replaces .lang-btn */
    background: none;
    border: 1px solid var(--ds-primary-light);
    color: var(--ds-light-text);
    padding: 5px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.ds-site-header__lang-btn.active,
.ds-site-header__lang-btn:hover {
    background: var(--ds-primary-light);
    color: white;
}
.ds-site-header__menu-toggle { /* Replaces .menu-toggle */
    display: none; /* Hidden by default */
    font-size: 1.5rem;
    color: var(--ds-light-text);
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

/* Sections */
.ds-section {
    padding-top: 80px; /* Default padding, can be overridden */
    padding-bottom: 80px;
    padding-left: 10%; /* Default horizontal padding */
    padding-right: 10%;
    position: relative;
    background-color: var(--ds-section-bg); /* Default section background */
}
.ds-section--no-padding {
    padding: 0;
}
.ds-section--hero { /* Specific for hero sections */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Or space-between if layout requires */
    padding-top: var(--ds-header-height); /* Account for fixed header */
    background-color: transparent; /* Hero might have its own overlay or rely on body background */
}
.ds-section--hero::before { /* Common hero overlay */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(var(--ds-primary-light-rgb), 0.1) 0%, rgba(10, 10, 24, 0.6) 70%);
    pointer-events: none;
    z-index: 1;
}

/* === NEW: Generic Page Hero Styles (for non-index pages) === */
.ds-page-hero {
    padding: 120px 10% 60px;
    /* Adjust top padding to account for the fixed header */
    padding-top: calc(var(--ds-header-height, 80px) + 40px);
    text-align: left; /* Default: centered for mobile/tablet */
    position: relative;
    background-color: rgba(10, 10, 24, 0.5); /* Fallback background */
    overflow: hidden;
}

.ds-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(var(--ds-primary-light-rgb, 157, 78, 221), 0.1) 0%, rgba(10, 10, 24, 0.6) 70%);
    pointer-events: none;
    z-index: 1;
}

.ds-page-hero .ds-hero__content {
    position: relative;
    z-index: 2;
    /* No specific width or margin here by default, allowing it to fill the padded space */
}

.ds-page-hero .ds-hero__title {
    font-size: 3.2rem; /* Or 3.5rem if you prefer */
    margin-bottom: 20px;
    margin-left: auto; /* Center the block by default */
    margin-right: auto; /* Center the block by default */
    /* Text alignment is inherited from .ds-page-hero */
}

.ds-page-hero .ds-hero__subtitle {
    font-size: 1.2rem;
    text-align: left;
    max-width: 700px; /* Subtitle block can have a max-width */
    margin: 0; /* Default: centers the subtitle block */
    color: var(--ds-light-text);
    /* Text alignment within this block is inherited from .ds-page-hero */
}

.ds-section__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative; /* For z-index if section has ::before overlay */
    z-index: 2;
}
.ds-section__title {
    font-size: 2.5rem; /* Default title size */
    margin-bottom: 15px;
    line-height: 1.2;
}
.ds-section__title .ds-highlight-text { /* Styling for highlighted part of a title */
    /* color is handled by .ds-highlight-text */
}
.ds-section__subtitle {
    font-size: 1.2rem;
    color: var(--ds-gray-text);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.ds-section__divider {
    height: 3px;
    width: 80px;
    background: var(--ds-secondary-color);
    margin: 0 auto;
    position: relative;
}
.ds-section__divider::before,
.ds-section__divider::after {
    content: '';
    position: absolute;
    height: 3px;
    width: 10px;
    background: var(--ds-primary-light);
    top: 0;
}
.ds-section__divider::before { left: -15px; }
.ds-section__divider::after { right: -15px; }

/* Cards - Base Styles */
.ds-card {
    background: var(--ds-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--ds-glass-effect);
    display: flex; /* For consistent internal layout, can be overridden */
    flex-direction: column;
}
.ds-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--ds-primary-light);
}
.ds-card__image-container {
    height: 200px; /* Default, can be overridden */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.ds-card__body {
    padding: 20px;
    flex-grow: 1; /* Allows body to fill space if card height is fixed */
    display: flex;
    flex-direction: column;
}
.ds-card__title {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--ds-secondary-color); /* Default card title color */
}
.ds-card__description {
    margin-bottom: 20px;
    color: var(--ds-gray-text);
    font-size: 1rem; /* Default description size */
    flex-grow: 1; /* Pushes actions to bottom if card body is flex */
}
.ds-card__meta-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--ds-gray-text);
}
.ds-card__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ds-card__meta-item i {
    color: var(--ds-primary-light);
}
.ds-card__actions {
    margin-top: auto; /* Pushes actions to the bottom of the card body */
    text-align: left; /* Default, can be overridden */
}
.ds-card__actions .ds-btn { /* Styling for buttons within card actions */
    font-size: 0.8rem;
    padding: 10px 20px;
}

/* Difficulty Display (Common for Room Cards) */
.ds-difficulty-display {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}
.ds-difficulty-display__label {
    color: var(--ds-gray-text);
    font-family: 'Orbitron', sans-serif;
    white-space: nowrap;
}
.ds-difficulty-display__bar-track {
    flex-grow: 1;
    max-width: 120px;
    height: var(--ds-difficulty-bar-height);
    background-color: var(--ds-difficulty-bar-track-bg);
    border-radius: calc(var(--ds-difficulty-bar-height) / 2);
    overflow: hidden;
    position: relative;
}
.ds-difficulty-display__bar-level {
    height: 100%;
    border-radius: calc(var(--ds-difficulty-bar-height) / 2);
    transition: width 0.6s ease-in-out, background-color 0.6s ease-in-out;
    /* backgroundColor and width will be set by JS */
}
.ds-difficulty-display__value {
    color: var(--ds-secondary-color);
    font-weight: bold;
    min-width: 40px;
    text-align: right;
    font-size: 0.9rem;
}

/* Footer */
.ds-site-footer {
    background: var(--ds-darker-bg);
    padding: 60px 10% 20px;
    border-top: 1px solid rgba(var(--ds-primary-light-rgb), 0.2);
    position: relative;
    z-index: 10;
    margin-top: auto; /* Pushes footer to bottom if main content is short */
}
.ds-site-footer__content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.ds-site-footer__logo-area { /* Replaces .footer-logo */
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}
.ds-site-footer__logo-area img {
    height: 60px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}
.ds-site-footer__logo-area a:hover img {
    transform: scale(1.05);
}
.ds-site-footer__logo-area p { /* Tagline under logo */
    font-family: 'Orbitron', sans-serif;
    color: var(--ds-light-text);
}
.ds-site-footer__info-area { /* Replaces .footer-info */
    flex: 2;
    display: flex;
    justify-content: flex-end; /* Align columns to the right */
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    gap: 30px;
}
.ds-site-footer__column {
    min-width: 220px; /* Adjust as needed */
    /* max-width: 300px; */
}
.ds-site-footer__column-title { /* Replaces h4 in footer columns */
    margin-bottom: 20px;
    color: var(--ds-secondary-color);
    font-size: 1.1rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}
.ds-site-footer__social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.ds-site-footer__social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ds-glass-effect);
    color: var(--ds-light-text);
    transition: all 0.3s ease;
}
.ds-site-footer__social-icons a:hover {
    background: var(--ds-primary-light);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(var(--ds-primary-light-rgb), 0.4);
}
.ds-site-footer__contact-details p,
.ds-site-footer__address-details p {
    display: flex;
    align-items: flex-start; /* Align icon with first line of multi-line text */
    gap: 10px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--ds-gray-text);
}
.ds-site-footer__contact-details i,
.ds-site-footer__address-details i {
    color: var(--ds-primary-light);
    margin-top: 4px; /* Adjust for vertical alignment */
    flex-shrink: 0; /* Prevent icon from shrinking */
}
.ds-site-footer__bottom-bar { /* Replaces .footer-bottom */
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--ds-glass-effect);
    color: var(--ds-gray-text);
    font-size: 0.9rem;
}

/* Animations */
.ds-animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.ds-animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design - General */
@media (max-width: 1024px) {
    .ds-section {
        padding-left: 5%;
        padding-right: 5%;
    }
    .ds-section--hero {
        padding-top: calc(var(--ds-header-height) + 20px);
        padding-bottom: 40px;
        text-align: center; /* Center hero content on tablets */
    }
     .ds-section--hero .ds-hero__content { /* Assuming hero content is wrapped */
        margin-left: auto;
        margin-right: auto;
    }
    .ds-page-hero {
        text-align: left; /* Align text to the left for the entire hero section */
    }
    .ds-page-hero .ds-hero__content {
        /* If you want the content block itself to have a specific max-width and be left-aligned
           (though the 10% padding on .ds-page-hero already creates left inset): */
        max-width: 800px;  /* Example: Limit width of the content block */
        margin-left: 0;    /* Ensure the block itself is left if max-width is set */
        margin-right: auto; 
    }
    .ds-page-hero .ds-hero__subtitle {
        margin-left: 0; /* Override the 'auto' margin to align the subtitle block to the left */
        margin-right: auto; /* Keeps its max-width: 700px effective, but the block is now left-aligned */
                               /* If max-width: 700px is desired, margin-right: auto is good.
                                  If the subtitle should span the width of .ds-hero__content,
                                  you might also set max-width: none; here and remove margin-right: auto. */
    }    
}

@media (max-width: 1023px) { /* Covers tablets and mobiles, ensuring centered text */
    .ds-page-hero {
        text-align: center; /* Explicitly ensure center alignment below desktop breakpoint */
        padding-top: calc(var(--ds-header-height, 80px) + 30px); /* Adjusted padding for tablet */
        padding-bottom: 50px;
    }
    .ds-page-hero .ds-hero__title {
        font-size: 2.5rem;
    }
    .ds-page-hero .ds-hero__subtitle {
        font-size: 1.1rem;
        text-align: center;
        margin: auto; /* Ensure subtitle block is centered on tablet/mobile */
    }
}

@media (max-width: 768px) {
    body::before {
        /* If the default 'center center' for background.png isn't ideal on mobile,
           adjust it here. For example: */
        /* background-position: center top; */ /* Shows more of the top */
        /* background-position: 50% 25%; */   /* Custom percentage */

        /* If you were to use a specific mobile-optimized image (Art Direction): */
        /* background-image: url('../assets/images/background-mobile.png'); */
    }
    .ds-logo-desktop {
        display: none;
    }
    /* 在手機版顯示並設定手機 Logo 的樣式 */
    .ds-logo-mobile {
        display: block;
        height: 40px; /* 為手機版 Logo 設定一個合適的高度，可以自行調整 */
        width: auto;
    }
    .ds-site-header__nav-list {
        display: none; /* Hidden for mobile, JS will toggle */
        flex-direction: column;
        position: absolute;
        top: var(--ds-header-height); /* Position below header */
        left: 0;
        width: 100%;
        background: rgba(5, 5, 15, 0.98); /* Darker, more opaque for dropdown */
        padding: 10px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        border-top: 1px solid var(--ds-glass-effect);
    }
    .ds-site-header__nav-list.active { /* JS adds this class */
        display: flex;
    }
    .ds-site-header__nav-link {
        padding: 15px 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(var(--ds-light-text-rgb, 230, 230, 250), 0.05); /* Subtle separator */
    }
    .ds-site-header__nav-link:last-child {
        border-bottom: none;
    }
    .ds-site-header__nav-link::after {
        display: none; /* Remove underline for mobile nav items or style differently */
    }
    .ds-site-header__nav-link:hover,
    .ds-site-header__nav-link.active {
        background-color: rgba(var(--ds-primary-light-rgb), 0.1);
        color: var(--ds-secondary-color);
    }
    .ds-site-header__menu-toggle {
        display: block; /* Show hamburger icon */
    }

    .ds-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .ds-section__title {
        font-size: 2rem; /* Smaller titles on mobile */
    }
    .ds-section__header {
        margin-bottom: 40px;
    }
    .ds-page-hero {
        padding-top: calc(var(--ds-header-height, 80px) + 30px);
        padding-bottom: 50px;
    }
    .ds-page-hero .ds-hero__title {
        font-size: 2.5rem;
    }
    .ds-page-hero .ds-hero__subtitle {
        font-size: 1.1rem;
        text-align: center;
        margin: auto; /* Default: centers the subtitle block */
    }
    .ds-site-footer__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .ds-site-footer__info-area {
        justify-content: center;
        width: 100%;
    }
    .ds-site-footer__column {
        width: 100%;
        max-width: 350px; /* Limit width of columns when stacked */
    }
    .ds-site-footer__social-icons {
        justify-content: center;
    }
    .ds-site-footer__contact-details p,
    .ds-site-footer__address-details p {
        justify-content: center; /* Center text within these paragraphs */
        text-align: left; /* Keep text left-aligned relative to icon */
        display: inline-flex; /* Adjust for centering */
        width: auto; /* Allow content to determine width */
    }
     .ds-site-footer__address-details p span { /* Ensure address lines stack correctly */
        display: block;
        text-align: left;
    }
}

@media (max-width: 480px) {
    body::before {
        /* If the default 'center center' for background.png isn't ideal on mobile,
           adjust it here. For example: */
        /* background-position: center top; */ /* Shows more of the top */
        /* background-position: 50% 25%; */   /* Custom percentage */

        /* If you were to use a specific mobile-optimized image (Art Direction): */
        /* background-image: url('../assets/images/background-mobile.png'); */
    }
    .ds-section__title {
        font-size: 1.8rem;
    }
    .ds-page-hero .ds-hero__title {
        font-size: 2.2rem;
    }
    .ds-page-hero .ds-hero__subtitle {
        font-size: 1rem;
        text-align: center;
        margin: auto; /* Default: centers the subtitle block */
    }
    .ds-btn { /* Smaller buttons on small screens */
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    .ds-card__body {
        padding: 15px;
    }
    .ds-card__title {
        font-size: 1.1rem;
    }
    .ds-card__description {
        font-size: 0.9rem;
    }
}

/* Specific overrides for index.html background elements if they are still used */
/* If .stars and .twinkling are removed or handled differently, these can be removed */
.stars, .twinkling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* Behind body background image */
}
/* Ensure these have appropriate backgrounds if kept */
/* .stars { background: ... } */
/* .twinkling { background: ...; animation: ... } */
/* @keyframes move-twink-back { ... } */

/* Ensure the main background image on body is above stars/twinkling */
body {
    z-index: -1; /* So fixed background image is above .stars/.twinkling */
    position: relative; /* Needed for z-index */
}

html, body {
    overflow: visible !important;
    overflow-y: auto !important; /* Ensures vertical scrollbar appears when needed */
    height: auto !important;
}

.ds-card__description-note {
    display: block; /* Ensures the note takes its own line */
    margin-top: 8px; /* Adds a bit of space from the text above */
    font-size: 0.8rem; /* Makes the text smaller */
    font-style: italic; /* Italicizes the text for emphasis */
    color: var(--ds-gray-text); /* Uses a softer color */
    opacity: 0.9;
}