@font-face {
    font-family: 'AlimamaShuHeiTi-Bold';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/AlimamaShuHeiTi-Bold.otf');
}

:root {
    --bg-color: #030305;
    --accent-purple: #a855f7;
    --accent-blue: #3b82f6;
    --accent-gatorade: #ff6600;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.12);
    --text-main: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
    --transition-speed: 0.8s;
    --safe-top: env(safe-area-inset-top, 25px);
    --safe-bottom: env(safe-area-inset-bottom, 35px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow: hidden !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100dvh;
}

.background-decor-global {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.bg-overlay-global {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    filter: blur(10px);
    transition: background-image 1s ease-in-out;
    z-index: -2;
}

.glow-purple-global {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
    filter: blur(80px);
}

.glow-blue-global {
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    filter: blur(100px);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) cubic-bezier(0.65, 0, 0.35, 1);
    transform: translateX(100%);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.slide.exit {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
}

.slide.enter-prev {
    transform: translateX(-100%);
    transition: none !important;
}

.slide.exit-prev {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
}

.nav-widgets {
    position: fixed;
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
    z-index: 9999 !important;
    bottom: max(20px, var(--safe-bottom)) !important;
    pointer-events: none;
}

.widget-nav {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, opacity 0.5s ease;
    pointer-events: auto;
}

.widget-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-purple);
    transform: translateY(-2px);
}

.nav-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.nav-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.slide-case {
    padding: 20px;
}

.case-container {
    width: 100%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0px;
    align-items: stretch;
    position: relative;
    min-height: 70vh;
    max-height: 85dvh;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.showcase-side {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-side>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.showcase-side .logo-box img {
    height: 45px !important;
}

.showcase-side:hover>img {
    transform: scale(1.1);
}

.hand-icon {
    width: 30px;
    animation: swipeAnim 2s infinite ease-in-out;
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.logo-box {
    position: absolute;
    top: 20px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.logo-text {
    font-family: 'AlimamaShuHeiTi-Bold';
    font-size: 16px;
    letter-spacing: 1.5px;
}

.client-logo-overlay {
    max-height: 90px;
    max-width: 120px;
    z-index: 10;
    margin-bottom: -5px;
    align-self: flex-start;
    object-fit: contain;
    opacity: 0.8;
}

.content-side {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow-y: auto;
    max-height: 85dvh;
}

.tagline {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #e9e7e7;
    font-weight: 600;
    padding-bottom: 5px;
}

h1 {
    font-size: clamp(1.5rem, 2.8vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 .highlight {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.client-info {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 20px;
    font-size: 14px;
    border-left: 3px solid var(--accent-purple);
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
}

.client-info b {
    color: var(--accent-purple);
}

.detail-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 15px;
}

.detail-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 20px;
}

.detail-item h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--text-dim);
}

.detail-item p {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.project-btn {
    width: 100%;
    padding: 18px 32px;
    margin-top: 10px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.project-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.project-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.5);
}

.project-btn:hover::before {
    left: 100%;
}

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

.footer-tags {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tags h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 15px;
    font-weight: 600;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-dim);
    transition: 0.3s;
}

.tag:hover {
    border-color: var(--accent-purple);
    color: #fff;
    transform: translateY(-2px);
}

.swipe-hint {
    position: fixed;
    bottom: 28dvh;
    right: 2%;
    transform: translateX(-50%);
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.swipe-hint.visible {
    opacity: 0.5;
}

.hand-icon {
    width: 30px;
    animation: swipeAnim 2s infinite ease-in-out;

}

.swipe-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes swipeAnim {
    0% {
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        transform: translateX(-8px) rotate(-10deg);
    }

    75% {
        opacity: 1;
    }

    100% {
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }
}

@media (min-width:1025px) {
    .swipe-hint {
        display: none !important;
    }
}

body.transitioning .content-side {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.slide-contact h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.slide-contact .slogan {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 25px;
    max-width: 600px;
    line-height: 1.4;
}

.slide-contact .cta-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.slide-contact .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
}

.slide-contact .info-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    text-align: left;
}

.slide-contact .info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}

.slide-contact .icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    font-size: 22px;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.slide-contact .info-content .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.slide-contact .info-content .value {
    font-weight: 500;
    font-size: 1.1rem;
    color: white;
}

.slide-contact .social-footer {
    display: flex;
    gap: 30px;
    font-size: 28px;
    margin-top: 20px;
}

.slide-contact .social-footer a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    text-decoration: none;
}

.slide-contact .social-footer a:hover {
    color: var(--accent-purple);
    transform: scale(1.1);
}

.slide-contact .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 60px;
    max-width: 1100px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.slide-contact .card-header {
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-brands .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    width: 90%;
    padding: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-brands h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 10px;
    line-height: 1.2;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 60px;
    justify-content: center;
    align-items: center;
    max-width: 860px;
    margin: 30px auto 0;
}

.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.1);
}

.logo-item img,
.logo-item svg {
    max-width: 280px;
    max-height: 125px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.logo-item:hover img,
.logo-item:hover svg {
    opacity: 1;
}

@media (max-width:768px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width:1100px) {
    .slide-contact .glass-card {
        padding: 40px 30px;
        max-height: 85dvh;
        overflow-y: auto;
    }

    .slide-contact .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:1100px) {
    .case-container {
        grid-template-columns: 1fr;
        max-width: 700px;
        overflow-y: auto;
        max-height: 80dvh;
    }

    .showcase-side {
        aspect-ratio: 16/9;
    }

    .nav-widgets {
        position: fixed !important;
        left: 0 !important;
        bottom: var(--safe-bottom) !important;
        padding: 0 20px !important;
        z-index: 1000 !important;
        width: 100%;
    }

    .widget-nav {
        height: 50px !important;
        padding: 0 15px !important;
        background: rgba(255, 255, 255, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        pointer-events: auto !important;
    }

    .widget-nav:active {
        transform: scale(0.9) !important;
        opacity: 0.7 !important;
    }

    .nav-line {
        display: none;
    }
}

@media (max-width:600px) {
    .logo-box {
        /* top: 4px;
        left: 2px; */
    }

    .content-side {
        padding: 30px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .showcase-overlay {
        padding: 20px;
    }
}

.slide-index .card-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slide-index .glass-card {
    position: relative;
    width: 1100px;
    height: 600px;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.slide-index .navbar {
    position: absolute;
    top: 40px;
    width: 92%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

.slide-index .logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-logister {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 30px;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: 0.3s;
}

.btn-logister:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.slide-index .eclipse-bg {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: auto;
    max-width: 900px;
    opacity: 0.5;
    z-index: 5;
    pointer-events: none;
    filter: contrast(1.1) brightness(1.2) blur(2.5px);
    -webkit-mask-image: radial-gradient(circle, black 20%, transparent 80%);
    mask-image: radial-gradient(circle, black 20%, transparent 80%);
    animation: eclipsePulse 10s infinite alternate ease-in-out;
}

@keyframes eclipsePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.8;
    }
}

.slide-index .hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.slide-index .hero-content h1 {
    font-size: clamp(60px, 10vw, 110px);
    font-weight: 800;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 0px;
    line-height: 1;
}

.slide-index .gradient-text {
    background: linear-gradient(90deg, #fff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-index .hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.slide-index .bottom-action {
    position: absolute;
    bottom: 40px;
    z-index: 20;
}

.slide-index .btn-catalogo {
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 35px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.90);
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
}

.btn-catalogo:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.slider-wrapper {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s ease;
    will-change: transform, filter;
    transform-style: preserve-3d;
    perspective: 1000px;
}

body.detail-open {
    overflow: hidden;
}

body.detail-open .slider-wrapper {
    transform: scale(0.85) translateZ(-100px);
    filter: blur(10px) brightness(0.5);
    pointer-events: none;
}

.project-detail-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    padding: 20px;
}

.project-detail-overlay.active {
    opacity: 1;
    visibility: visible;
}

.detail-card-container {
    width: 95%;
    max-width: 1250px;
    height: 90vh;
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    overflow: hidden;
    transform: scale(0.9) translateY(40px);
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    position: relative;
    margin: auto;
}

.project-detail-overlay.active .detail-card-container {
    transform: scale(1) translateY(0);
}

.detail-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 100;
    transition: 0.3s;
}

.detail-close-btn:hover {
    background: var(--accent-purple);
    transform: rotate(90deg);
}

.detail-visual {
    position: relative;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-visual img,
.detail-visual video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.detail-visual img.active,
.detail-visual video.active {
    opacity: 1;
    z-index: 2;
}

.ss-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: 0.3s;
    opacity: 0;
}

.detail-visual:hover .ss-nav-btn {
    opacity: 1;
}

.ss-nav-btn:hover {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    transform: translateY(-50%) scale(1.1);
}

.ss-prev {
    left: 20px;
}

.ss-next {
    right: 20px;
}

.detail-content {
    padding: 50px;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

.detail-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.2;
    color: white;
    margin-bottom: 10px;
}

.detail-content .detail-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-box .stat-val {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 5px;
}

.stat-box .stat-lbl {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.detail-btn-bottom {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.detail-btn-bottom:hover {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
}

@media (max-width:1024px) {
    .detail-card-container {
        grid-template-columns: 1fr;
        height: 85vh;
    }

    .slide-index .glass-card {
        height: 90dvh !important;
        max-height: 85dvh !important;
        display: flex;
        justify-content: space-around;
    }

    .slide-index .eclipse-bg {
        width: 150% !important;
    }


    .glass-card {
        grid-template-columns: 1fr !important;
        padding: 50px 30px 40px 30px !important;
        min-height: auto !important;
        max-height: 85dvh !important;
        height: auto !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        width: 95% !important;
        scrollbar-width: thin;
        scrollbar-color: var(--accent-purple) transparent;
    }

    .detail-visual {
        height: 300px;
    }

    .detail-content {
        padding: 30px;
    }
}