/* Vibrant Hero Container */
.vibrantHeroContainer {
    width: 100%;
    background-color: #000000;
    overflow: hidden;
    position: relative;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dynamicHeroImage {
    width: 1200px;
    height: 590px;
    background-size: cover;
    background-position: center;
    animation: subtleZoom 10s ease-in-out infinite;
    will-change: transform;
}

@keyframes subtleZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .dynamicHeroImage {
        width: 100%;
        height: 50vw;
        min-height: 300px;
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 768px) {
    .dynamicHeroImage {
        height: 60vw;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .dynamicHeroImage {
        height: 70vw;
        min-height: 200px;
    }
}

/* Full-width container */
.stellarVideoWrapper {
    width: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    height: 700px;
    margin-top: 50px;
}

/* Video player container */
.cosmicMediaPlayer {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background: #000;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cosmicMediaPlayer video {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.2); /* Increase brightness by 20% to address dark video */
}

/* Video Info */
.videoInfo {
    width: 100%;
    max-width: 800px;
    margin: 10px auto 0;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
}

.videoInfo h2 {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.videoInfo p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Overlay */
.mediaOverlayPanel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3); /* Reduced opacity from 0.5 to 0.3 for less darkness */
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.mediaOverlayPanel.show {
    opacity: 1;
    pointer-events: all;
}

.playToggleIcon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.playToggleIcon.paused {
    animation: pulse 2s infinite ease-in-out;
}

.playToggleIcon:hover {
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.playToggleIcon:active {
    transform: scale(0.95);
}

.playToggleIcon:focus {
    outline: 3px solid #00f;
    outline-offset: 2px;
}

.playToggleIcon svg {
    width: 40px;
    height: 40px;
    fill: #000;
    margin-left: 4px;
}

.playToggleIcon.replay svg {
    margin-left: 0;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Loading Spinner */
.loadingIndicator {
    position: relative;
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loadingIndicator::after {
    content: attr(data-progress);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error Message */
.errorNotification {
    color: #fff;
    font-size: 16px;
    text-align: center;
    padding: 20px;
    background: rgba(255, 0, 0, 0.7);
    border-radius: 4px;
}

/* Control Bar */
.mediaControlPanel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent); /* Reduced opacity from 0.9 to 0.7 */
    color: #fff;
    padding: 8px 0;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cosmicMediaPlayer:hover .mediaControlPanel,
.cosmicMediaPlayer.paused .mediaControlPanel,
.cosmicMediaPlayer.ended .mediaControlPanel {
    opacity: 1;
}

/* Tooltip Styling */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.2s ease-in 0.1s;
}

[data-tooltip]:hover::after {
    opacity: 1;
}

/* Controls Layout */
.leftMediaControls, .rightMediaControls {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
}

.centerMediaControls {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
}

/* Button Styling */
.mediaActionBtn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    width: 32px;
    height: 32px;
    padding: 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}

.mediaActionBtn:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

.mediaActionBtn:active {
    transform: scale(0.95);
}

.mediaActionBtn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.mediaActionBtn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.mediaActionBtn.toggled {
    background: rgba(0, 102, 255, 0.3);
}

.mediaActionBtn.muted {
    opacity: 0.5;
}

.mediaActionBtn:focus {
    outline: 2px solid #00f;
    outline-offset: 2px;
}

.timeIndicator {
    min-width: 90px;
    font-size: 13px;
    font-weight: 500;
}

/* Progress Slider */
.progressTrack {
    position: relative;
    flex: 1;
    height: 5px;
    cursor: pointer;
}

.progressSeekBar {
    width: 100%;
    height: 5px;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    appearance: none;
    outline: none;
    z-index: 3;
}

.progressSeekBar::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.progressSeekBar:hover::-webkit-slider-thumb {
    transform: scale(1.2);
}

.progressBase {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.progressBuffer {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.progressElapsed {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    background: #00f;
    border-radius: 2px;
    transition: width 0.1s;
}

.progressTrack:hover .progressBase,
.progressTrack:hover .progressBuffer,
.progressTrack:hover .progressElapsed {
    height: 8px;
}

.progressHoverTip {
    position: absolute;
    bottom: 20px;
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    display: none;
    z-index: 10;
}

.progressTrack:hover .progressHoverTip {
    display: block;
}

/* Volume Slider */
.volumeTrack {
    position: relative;
    width: 80px;
    height: 5px;
    cursor: pointer;
}

.volumeAdjustBar {
    width: 100%;
    height: 5px;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    appearance: none;
    outline: none;
    z-index: 3;
}

.volumeAdjustBar::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.volumeBase {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.volumeCurrent {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(to right, #00f, #66f);
    border-radius: 2px;
    transition: width 0.1s;
}

.volumeTrack:hover .volumeBase,
.volumeTrack:hover .volumeCurrent {
    height: 8px;
}

.volumeHoverTip {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    display: none;
    z-index: 10;
}

.volumeTrack:hover .volumeHoverTip {
    display: block;
}

/* Settings Menu */
.settingsMenu {
    position: absolute;
    bottom: 50px;
    right: 10px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 4px;
    padding: 10px;
    display: none;
    z-index: 20;
    min-width: 200px;
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.settingsMenu.show {
    display: block;
    opacity: 1;
}

.cosmicMediaPlayer:hover .settingsMenu.show {
    opacity: 1;
}

.settingsMenu div {
    margin-bottom: 10px;
}

.settingsMenu label {
    display: block;
    margin-bottom: 5px;
}

.settingsMenu select, .settingsMenu input[type="checkbox"], .settingsMenu input[type="range"] {
    width: 100%;
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 4px;
}

.settingsMenu input[type="range"] {
    -webkit-appearance: none;
}

.settingsMenu input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.settingsMenu button {
    width: 100%;
    padding: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.settingsMenu button:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Enhanced Lightbox */
.shareLightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 30;
}

.shareLightbox.show {
    display: flex;
}

.shareContent {
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    padding: 20px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.shareContent h3 {
    margin: 0 0 15px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.shareButtons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.shareButtons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.shareButtons a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.shareButtons svg {
    width: 24px;
    height: 24px;
    fill: #333;
}

.copyField {
    margin-bottom: 20px;
}

.copyField label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #ddd;
}

.copyField input {
    width: 100%;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 6px;
    font-size: 14px;
    background: #333;
    color: #fff;
}

.copyField button {
    margin-top: 10px;
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.copyField button:hover {
    background: #0056b3;
}

.shareContent button#closeLightbox {
    padding: 10px 20px;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.shareContent button#closeLightbox:hover {
    background: #b02a37;
}

/* Responsive */
@media (max-width: 768px) {
    .stellarVideoWrapper {
        padding: 10px 0;
        height: 500px;
    }
    .cosmicMediaPlayer {
        max-width: 90%;
    }
    .videoInfo {
        max-width: 90%;
    }
}

@media (max-width: 600px) {
    .leftMediaControls, .rightMediaControls {
        padding: 0 5px;
        gap: 5px;
    }
    .centerMediaControls {
        padding: 0 5px;
    }
    .timeIndicator {
        min-width: 60px;
        font-size: 12px;
    }
    .volumeTrack {
        width: 50px;
    }
    .mediaActionBtn {
        width: 28px;
        height: 28px;
        padding: 4px;
    }
    .mediaActionBtn svg {
        width: 16px;
        height: 16px;
    }
    .playToggleIcon {
        width: 70px;
        height: 70px;
    }
    .playToggleIcon svg {
        width: 30px;
        height: 30px;
    }
    .settingsMenu {
        min-width: 150px;
        font-size: 12px;
    }
    .shareContent {
        width: 95%;
        padding: 15px;
    }
    .shareButtons a {
        width: 40px;
        height: 40px;
    }
    .shareButtons svg {
        width: 20px;
        height: 20px;
    }
    .videoInfo h2 {
        font-size: 18px;
    }
    .videoInfo p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .stellarVideoWrapper {
        height: 500px;
    }
    .cosmicMediaPlayer {
        max-width: 95%;
    }
    .videoInfo {
        max-width: 95%;
    }
}

/* Nebula Hero Container */
.nebulaHeroContainer {
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    margin-top: 50px;
}

/* Semi-transparent overlay */
.cosmicOverlayVeil {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Content wrapper */
.stellarContentCore {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #fff;
    padding: 0 20px;
}

.stellarContentCore h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.2;
}

.stellarContentCore p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nebulaHeroContainer {
        min-height: 400px;
        padding: 30px 15px;
    }

    .stellarContentCore h1 {
        font-size: 28px;
    }

    .stellarContentCore p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .nebulaHeroContainer {
        min-height: 350px;
        padding: 20px 10px;
    }

    .stellarContentCore h1 {
        font-size: 24px;
    }

    .stellarContentCore p {
        font-size: 14px;
    }

    .stellarContentCore {
        padding: 0 10px;
    }
}

/* Galactic Promo Canvas */
.galacticPromoCanvas {
    width: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, #4b4b4b 0%, #1c2526 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 5vw, 40px) clamp(10px, 3vw, 20px);
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
    box-sizing: border-box;
}

/* Animated background effect */
.galacticPromoCanvas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 10%, transparent 10%);
    background-size: 100px 100px;
    opacity: 0.3;
    animation: cosmicShift 20s linear infinite;
    z-index: 0;
}

@keyframes cosmicShift {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* Content wrapper */
.nebulaContentMatrix {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    width: 100%;
    display: flex;
    gap: clamp(20px, 4vw, 40px);
    align-items: flex-start;
    padding: 0 clamp(10px, 2vw, 20px);
    box-sizing: border-box;
}

/* Poster section */
.starlightPosterNode {
    flex: 0 0 auto;
}

.starlightPosterNode img {
    width: clamp(200px, 35vw, 299px);
    height: calc(clamp(200px, 35vw, 299px) * (366 / 299));
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    display: block;
}

/* Synopsis section */
.cosmicSynopsisFrame {
    flex: 1;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 16px);
}

.cosmicSynopsisFrame h2 {
    font-size: clamp(20px, 5vw, 28px);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.cosmicSynopsisFrame p {
    font-size: clamp(13px, 3vw, 16px);
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Button styling */
.orbitalActionLink {
    display: block;
    width: fit-content;
    padding: clamp(8px, 2vw, 12px) clamp(16px, 4vw, 24px);
    background: #007bff;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: clamp(12px, 2.5vw, 16px);
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.orbitalActionLink:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.orbitalActionLink:active {
    transform: translateY(0);
}

/* Gaming platforms section */
.astroPlatformCluster {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 2vw, 12px);
    align-items: center;
    justify-content: flex-start;
}

.astroPlatformCluster span {
    font-size: clamp(12px, 2.5vw, 14px);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: clamp(4px, 1vw, 6px) clamp(8px, 2vw, 12px);
    border-radius: 4px;
    opacity: 0.9;
    transition: background 0.3s ease;
}

.astroPlatformCluster span:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .galacticPromoCanvas {
        min-height: 550px;
    }

    .nebulaContentMatrix {
        gap: clamp(15px, 3vw, 30px);
    }
}

@media (max-width: 768px) {
    .galacticPromoCanvas {
        min-height: 600px;
        padding: clamp(15px, 4vw, 30px) clamp(8px, 2vw, 15px);
    }

    .nebulaContentMatrix {
        flex-direction: column;
        align-items: center;
        gap: clamp(15px, 3vw, 30px);
    }

    .starlightPosterNode {
        text-align: center;
    }

    .cosmicSynopsisFrame {
        align-items: center;
        text-align: center;
    }

    .orbitalActionLink {
        margin: 0 auto;
    }

    .astroPlatformCluster {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .galacticPromoCanvas {
        min-height: 500px;
        padding: clamp(10px, 3vw, 20px) clamp(5px, 1.5vw, 10px);
    }

    .nebulaContentMatrix {
        padding: 0 clamp(5px, 1vw, 10px);
        gap: clamp(10px, 2vw, 20px);
    }

    .astroPlatformCluster span {
        font-size: clamp(11px, 2.5vw, 13px);
        padding: clamp(3px, 1vw, 5px) clamp(6px, 1.5vw, 10px);
    }
}

@media (max-width: 360px) {
    .galacticPromoCanvas {
        min-height: 450px;
    }

    .starlightPosterNode img {
        width: clamp(160px, 40vw, 200px);
        height: calc(clamp(160px, 40vw, 200px) * (366 / 299));
    }

    .cosmicSynopsisFrame h2 {
        font-size: clamp(18px, 5vw, 20px);
    }

    .cosmicSynopsisFrame p {
        font-size: clamp(12px, 3vw, 13px);
    }

    .orbitalActionLink {
        font-size: clamp(11px, 2.5vw, 14px);
        padding: clamp(6px, 1.5vw, 10px) clamp(12px, 3vw, 20px);
    }

    .astroPlatformCluster span {
        font-size: clamp(10px, 2.5vw, 12px);
        padding: clamp(2px, 1vw, 4px) clamp(5px, 1.5vw, 8px);
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    .starlightPosterNode img {
        width: clamp(220px, 30vw, 270px);
        height: calc(clamp(220px, 30vw, 270px) * (366 / 299));
    }
}

/* Footer */
.voidFooterRealm {
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: clamp(40px, 6vw, 60px) clamp(20px, 3vw, 40px);
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    box-sizing: border-box;
}

/* Main footer content wrapper */
.nebulaFooterCore {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: clamp(20px, 4vw, 40px);
    align-items: flex-start;
}

/* Logo section */
.lunarLogoHub {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lunarLogoHub a {
    display: inline-block;
}

.lunarLogoHub img {
    width: clamp(120px, 20vw, 180px);
    height: auto;
    filter: brightness(0) invert(1);
}

.lunarLogoHub p {
    font-size: clamp(12px, 2.5vw, 14px);
    opacity: 0.7;
    margin: 0;
    line-height: 1.5;
}

/* Navigation links */
.astroNavCluster {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: clamp(12px, 2vw, 16px);
}

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

.astroNavCluster li {
    margin-bottom: 12px;
}

.astroNavCluster a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(13px, 2.5vw, 15px);
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
}

.astroNavCluster a:hover {
    color: #007bff;
    transform: translateX(4px);
}

/* Social media section */
.cosmicSocialSphere {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cosmicSocialSphere h3 {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 600;
    margin: 0;
}

.stellarSocialIcons {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(12px, 2vw, 16px);
}

.stellarSocialIcons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.2s ease;
}

.stellarSocialIcons a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.stellarSocialIcons svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .nebulaFooterCore {
        grid-template-columns: 1fr 1fr;
        gap: clamp(15px, 3vw, 30px);
    }

    .cosmicSocialSphere {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }

    .stellarSocialIcons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .voidFooterRealm {
        padding: clamp(20px, 4vw, 40px) clamp(15px, 2vw, 30px);
    }

    .nebulaFooterCore {
        grid-template-columns: 1fr;
        gap: clamp(20px, 4vw, 30px);
    }

    .lunarLogoHub {
        align-items: center;
        text-align: center;
    }

    .astroNavCluster {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        justify-items: center;
    }

    .astroNavCluster ul {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .voidFooterRealm {
        padding: clamp(15px, 3vw, 30px) clamp(10px, 1.5vw, 20px);
    }

    .lunarLogoHub img {
        width: clamp(100px, 25vw, 140px);
    }

    .lunarLogoHub p {
        font-size: clamp(11px, 2.5vw, 13px);
    }

    .astroNavCluster {
        grid-template-columns: 1fr;
    }

    .astroNavCluster ul {
        margin-bottom: 16px;
    }

    .astroNavCluster a {
        font-size: clamp(12px, 2.5vw, 14px);
    }

    .cosmicSocialSphere h3 {
        font-size: clamp(14px, 3vw, 16px);
    }

    .stellarSocialIcons a {
        width: 36px;
        height: 36px;
    }

    .stellarSocialIcons svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 360px) {
    .voidFooterRealm {
        padding: clamp(10px, 3vw, 20px) clamp(5px, 1.5vw, 10px);
    }

    .lunarLogoHub img {
        width: clamp(80px, 25vw, 120px);
    }

    .lunarLogoHub p {
        font-size: clamp(10px, 2.5vw, 12px);
    }

    .astroNavCluster a {
        font-size: clamp(11px, 2.5vw, 13px);
    }

    .cosmicSocialSphere h3 {
        font-size: clamp(13px, 3vw, 15px);
    }

    .stellarSocialIcons a {
        width: 32px;
        height: 32px;
    }

    .stellarSocialIcons svg {
        width: 18px;
        height: 18px;
    }
}