:root {
    --primary: #00d4ff;
    --primary-glow: rgba(0, 212, 255, 0.5);
    --accent: #b2ebf2;
    --bg: #050507;
    --glass: rgba(10, 15, 25, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --bomb-dark: #0a0a0a;
    --bomb-light: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: white;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.app-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

#ember-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.08;
    pointer-events: none;
    z-index: 10;
}

.glow-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

/* 3D Bomb Design */
.bomb-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
}


.fuse-svg {
    width: 450px;
    height: 450px;
    z-index: 2;
    overflow: visible;
}

#fuse-path {
    stroke-dasharray: 10 2;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

.bomb-body {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at 30% 30%, var(--bomb-light) 0%, var(--bomb-dark) 100%);
    border-radius: 50%;
    position: relative;
    box-shadow:
        inset -20px -20px 60px rgba(0, 0, 0, 0.9),
        inset 10px 10px 40px rgba(255, 255, 255, 0.05),
        0 40px 80px rgba(0, 0, 0, 0.7),
        0 0 100px rgba(0, 212, 255, 0.05);
    margin-top: -140px;
    z-index: 1;
    overflow: visible;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bomb-shine {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80px;
    height: 40px;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.15), transparent);
    border-radius: 50%;
    transform: rotate(-35deg);
    filter: blur(8px);
}

/* Glassmorphism Slides */
.slides-container {
    padding: 2rem;
    max-width: 950px;
    /* Increased to allow wider slides like the dashboard */
    width: 95%;
    z-index: 20;
}

.slide {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--glass);
    backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid var(--glass-border);
    padding: 4rem 3rem;
    border-radius: 48px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: slideIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide.active {
    display: flex;
}

.slide h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    background: linear-gradient(180deg, #FFFFFF 0%, #A0A0A0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.slide p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
}

.slide-badge {
    padding: 6px 20px;
    background: rgba(0, 212, 255, 0.15);
    color: var(--primary);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(40px) rotateX(-10deg) scale(0.9);
    }

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

/* Premium Navigation */
.navigation {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 100;
    background: rgba(10, 10, 12, 0.85);
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-btn {
    background: transparent;
    border: none;
    color: white;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
}

.nav-btn:hover:not(:disabled) {
    opacity: 1;
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-btn:disabled {
    opacity: 0.1;
    cursor: not-allowed;
}

.progress-indicator {
    display: none;
}

.dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
    width: 24px;
    height: 6px;
    background: var(--primary);
    border-radius: 100px;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Cinematic Climax Animations */
.bomb-body.bouncing {
    animation: quicar 0.3s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.bomb-body.flashing {
    animation: piscar 0.15s infinite alternate;
}

@keyframes quicar {
    from {
        transform: translateY(0) scaleX(1) scaleY(1);
    }

    to {
        transform: translateY(-30px) scaleX(0.9) scaleY(1.1);
    }
}

@keyframes piscar {
    from {
        filter: brightness(1) drop-shadow(0 0 0px var(--primary));
    }

    to {
        filter: brightness(2) drop-shadow(0 0 40px var(--primary));
        background: #0091ea;
    }
}

/* Explosion Effects */

.shockwave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100px;
    height: 100px;
    border: 4px solid var(--primary);
    border-radius: 50%;
    opacity: 1;
    pointer-events: none;
    z-index: 5;
}

@keyframes wave {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
        border-width: 20px;
    }

    100% {
        transform: translate(-50%, -50%) scale(20);
        opacity: 0;
        border-width: 0px;
    }
}

.boom-text {
    font-size: 10rem !important;
    background: linear-gradient(180deg, #00d4ff 0%, #b2ebf2 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    transform: scale(1);

    animation: boomPulse 0.4s infinite alternate;
}

@keyframes boomPulse {
    from {
        transform: scale(1);
        filter: brightness(1);
    }

    to {
        transform: scale(1.05);
        filter: brightness(1.3);
    }
}

.btn-retry {
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    background: white;
    color: black;
    border: none;
    border-radius: 100px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.btn-retry:hover {
    transform: translateY(-5px);
    background: var(--accent);
    box-shadow: 0 10px 40px rgba(255, 235, 59, 0.4);
}

/* Showcase Slide Layout - Vertical & Larger */
.slide.showcase {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    max-width: 950px;
    padding: 2.5rem;
}

.showcase-image {
    width: 100%;
    margin-bottom: 0.5rem;
}

.showcase-image img {
    width: 100%;
    max-width: 700px;
    /* Enlarged from 580px */
    border-radius: 24px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.7),
        0 0 60px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.5s ease;
}

.showcase-image img:hover {
    transform: scale(1.02);
}

.showcase-content {
    width: 100%;
}

.slide.showcase h1 {
    font-size: 4.8rem;
    /* Enlarged from 3.8rem */
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.check-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    text-align: left;
    width: fit-content;
    margin: 1rem auto 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 15px var(--primary-glow);
}

.check-icon svg {
    width: 14px;
    height: 14px;
    fill: white;
}

@media (max-width: 768px) {
    .check-list {
        grid-template-columns: 1fr;
    }

    .slide.showcase h1 {
        font-size: 2.8rem;
    }

    .showcase-image img {
        max-width: 100%;
    }
}

/* Channels Slide */
.slide.channels {
    max-width: 900px;
}

.channels-description {
    margin: 0.5rem 0 2rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.circles-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    margin-top: 1rem;
}

.profile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.profile-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-circle:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 15px 50px var(--primary-glow);
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-item span {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .circles-container {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .profile-circle {
        width: 140px;
        height: 140px;
    }
}

.channels-footer {
    margin-top: 2rem;
    text-align: left;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.channels-footer p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    line-height: 1.5;
    max-width: none !important;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.6rem;
    display: flex;
    gap: 0.8rem;
    line-height: 1.4;
}

.footer-list li span {
    color: var(--primary);
    font-weight: 900;
}

/* Management System Slide */
.slide.management-system {
    max-width: 900px;
    /* Much wider */
    padding: 2.5rem 3.5rem;
    /* More horizontal space, less vertical */
}

.system-card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 2rem 2.5rem;
    /* Reduced padding */
    border-radius: 32px;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 40px rgba(0, 212, 255, 0.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    border: 1px solid var(--primary-glow);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary);
}

/* Explosion Motors Slide - Upgrade & Center */
.slide.explosion-motors {
    max-width: 900px;
}

.motors-list {
    list-style: none;
    width: 100%;
    margin: 2.5rem 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center the items themselves */
    gap: 1.5rem;
}

.motor-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    width: 100%;
    max-width: 650px;
    /* Uniform width for all items */
    text-align: left;
    opacity: 0.1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.motor-item.active {
    opacity: 0.5;
    transform: translateX(10px);
}

.motor-item.ready {
    opacity: 1;
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateX(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.motor-status {
    width: 110px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.motor-info {
    flex: 1;
}

.motor-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

/* Timeline Slide - Vertical Roadmap (Rebalanced) */
.slide.timeline {
    max-width: 900px;
}

.slide.timeline h1 {
    font-size: 5rem;
    /* Much larger as requested */
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
    letter-spacing: -3px;
    line-height: 1;
}

.timeline-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
    font-weight: 500;
}

.roadmap-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    /* Narrower to focus better */
    margin: 1.5rem auto 0;
}

/* Path perfectly aligned with markers */
.roadmap-path {
    position: absolute;
    top: 0;
    left: 20px;
    width: 4px;
    height: 96%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    z-index: 1;
}

.roadmap-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    box-shadow: 0 0 20px var(--primary-glow);
}

.roadmap-pin {
    position: absolute;
    left: 22px;
    top: 0;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--primary);
    z-index: 10;
}

.roadmap-steps {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    /* Dramatically reduced gap to fit 6 steps vertically */
    padding-left: 60px;
    text-align: left;
}

.roadmap-step {
    position: relative;
    opacity: 0.05;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(20px);
}

.roadmap-step.active {
    opacity: 1;
    transform: translateX(0);
}

.step-marker {
    position: absolute;
    left: -46px;
    /* Correct alignment for 60px padding */
    top: 6px;
    width: 12px;
    height: 12px;
    background: #121214;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 5;
    transition: all 0.4s ease;
}

.active .step-marker {
    background: var(--primary);
    border-color: white;
    box-shadow: 0 0 15px var(--primary-glow);
    transform: scale(1.3);
}

.roadmap-step .step-name {
    font-size: 1.15rem;
    /* Reduced to balance with title */
    font-weight: 700;
    color: white;
    letter-spacing: -0.2px;
    display: block;
}

.roadmap-step .step-sub {
    font-size: 0.85rem;
    /* Reduced for vertical space */
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.2rem;
    line-height: 1.3;
    font-weight: 400;
}

.roadmap-step.completed .step-name {
    color: var(--primary);
}

.motor-info {
    display: flex;
    flex-direction: column;
}

.motor-sub {
    font-size: 0.85rem;
    color: rgba(0, 212, 255, 0.8);
    font-weight: 600;
    margin-top: 0.3rem;
}

.status-label {
    min-width: 60px;
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
    display: inline-block;
    margin-right: 0.8rem;
    transition: all 0.4s ease;
}

.ready .status-indicator {
    background: #4caf50;
    box-shadow: 0 0 15px #4caf50;
}

.blinking {
    animation: blinkText 0.4s infinite alternate;
}

@keyframes blinkText {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: statusPulse 1s infinite alternate;
}

@keyframes statusPulse {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
        transform: scale(1.2);
    }
}

.system-id {
    font-family: monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.card-content p {
    font-size: 1.2rem;
    /* Slighly smaller to save space */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-align: center;
    max-width: none !important;
}

.card-stats {
    display: flex;
    justify-content: space-around;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

#slide-final {
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
    /* Allow scrolling if it overflows on small screens */
}

.boom-text {
    font-size: 7rem;
    color: white;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    margin: 0 0 1rem;
    animation: boomScale 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes boomScale {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.boom-stats {
    width: 100%;
    max-width: 1000px;
    /* Wider for cards */
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    align-items: center;
    margin-top: 1rem;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    animation: fadeInUp 1s ease forwards 0.8s;
    opacity: 0;
}

.info-blocks {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    animation: fadeInUp 1s ease forwards 2s;
    opacity: 0;
}

.info-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 32px;
    text-align: left;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.info-card h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    min-width: 160px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    backdrop-filter: blur(10px);
}

.stat-box .value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.stat-box .label {
    text-transform: uppercase;
    font-size: 0.65rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
}

.artists-list {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
}

.btn-retry {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

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

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

.stat-value {
    font-size: 1.3rem;
    /* Slightly smaller */
    font-weight: 700;
    color: var(--primary);
}

/* Intro Slide - Double Logos Premium (Better Fit) */
.intro-slide {
    justify-content: center;
    align-items: center;
}

.intro-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 3rem 4rem;
    position: relative;
    overflow: hidden;
}

/* Light Beam Sweep Animation (Vertical Scale Fixed) */
.intro-logos::after {
    content: '';
    position: absolute;
    top: -100%;
    /* More coverage */
    left: -150%;
    width: 100%;
    height: 300%;
    /* Tripled height to ensure vertical coverage */
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.1) 40%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0.1) 60%,
            transparent);
    transform: rotate(20deg);
    /* Reduced angle to feel taller */
    animation: shineSweep 4s infinite ease-in-out;
    pointer-events: none;
}

@keyframes shineSweep {
    0% {
        left: -150%;
    }

    40% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.main-logo {
    max-width: 350px;
    /* Reduced from 480px to fit well */
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 2;
}

.main-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .main-logo {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .intro-logos {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .main-logo {
        max-width: 220px;
    }
}