html, body {
    overflow: hidden;
}

body {
    font-family: NunitoSans, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(-45deg,
        var(--bg1, #1a1a2e),
        var(--bg2, #16213e),
        var(--bg3, #0f3460),
        var(--bg4, #1a1a2e));
    background-size: 400% 400%;
    animation: backgroundFlow 17s ease infinite;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@keyframes backgroundFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes gradientShiftVertical {
    0%, 100% { background-position: 50% 0%; }
    50% { background-position: 50% 100%; }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 23s ease-in-out infinite;
}

.orb1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg,
        var(--color1-start, #667eea),
        var(--color1-end, #764ba2));
    top: 10%;
    left: 10%;
}

.orb2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg,
        var(--color2-start, #f093fb),
        var(--color2-end, #f5576c));
    bottom: 10%;
    right: 10%;
    animation-delay: 8.5s;
}

.orb3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg,
        var(--color3-start, #4facfe),
        var(--color3-end, #00f2fe));
    top: 50%;
    left: 50%;
    animation-delay: 4.7s;
}

/* === LAYOUT === */
.container-custom {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 3rem;
    margin-left: 5%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.btn-custom, .btn-secondary-custom {
    border: none;
    color: white;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.btn-custom::before {
    content: '';
    position: absolute;
    inset: -3px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s;
}

.btn-custom:hover::before {
    opacity: 1;
}

.btn-custom {
    font-size: 3rem;
    font-weight: 800;
    padding: 2rem 4rem;
    border-radius: 50px;
    background: linear-gradient(90deg,
        var(--color1-start, #667eea),
        var(--color1-end, #764ba2),
        var(--color2-start, #f093fb),
        var(--color2-end, #f5576c),
        var(--color3-start, #4facfe),
        var(--color3-end, #00f2fe));
    background-size: 400% 100%;
    animation: gradientShift 13s ease infinite;
    box-shadow: 0 15px 50px var(--color1-rgba-04, rgba(102, 126, 234, 0.4)),
                0 0 80px var(--color2-rgba-02, rgba(245, 87, 108, 0.2));
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5),
                 0 0 20px rgba(0, 0, 0, 0.3),
                 0 4px 12px rgba(0, 0, 0, 0.4);
    position: relative;
}

.btn-custom::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 0;
}

.btn-custom > * {
    position: relative;
    z-index: 1;
}

.btn-custom::before {
    border-radius: 50px;
    background: linear-gradient(90deg,
        var(--color1-start, #667eea),
        var(--color1-end, #764ba2),
        var(--color2-start, #f093fb),
        var(--color2-end, #f5576c),
        var(--color3-start, #4facfe),
        var(--color3-end, #00f2fe));
    background-size: 400% 100%;
    animation: gradientShift 13s ease infinite;
}

.btn-custom:hover {
    color: white !important;
    transform: scale(1.15);
    box-shadow: 0 25px 60px var(--color1-rgba-06, rgba(102, 126, 234, 0.6)),
                0 0 100px var(--color2-rgba-04, rgba(245, 87, 108, 0.4));
}

.btn-custom:hover::after {
    background: rgba(0, 0, 0, 0.05);
}

.btn-secondary-custom {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-secondary-custom:hover {
    color: white !important;
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

.glow-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    opacity: 0.9;
}

/* === EPIC 3D HOLOGRAPHIC POLYHEDRON === */
.holographic-container {
    position: absolute;
    top: 10%;
    right: 8%;
    transform: translateY(0);
    width: 350px;
    height: 350px;
    perspective: 1200px;
    z-index: 1;
    pointer-events: auto;
    cursor: pointer;
}

.polyhedron {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate3d 20s linear infinite;
}

@keyframes rotate3d {
    0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

.poly-face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg,
        var(--color1-rgba-01, rgba(102, 126, 234, 0.1)),
        var(--color1-rgba-015-poly, rgba(118, 75, 162, 0.15)),
        var(--color3-rgba-01, rgba(79, 172, 254, 0.1)));
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 0 30px var(--color1-rgba-03, rgba(102, 126, 234, 0.3)),
        0 0 30px var(--color1-rgba-02, rgba(102, 126, 234, 0.2));
    animation: faceGlow 3s ease-in-out infinite;
}

@keyframes faceGlow {
    0%, 100% {
        box-shadow:
            inset 0 0 30px var(--color1-rgba-03, rgba(102, 126, 234, 0.3)),
            0 0 30px var(--color1-rgba-02, rgba(102, 126, 234, 0.2));
    }
    50% {
        box-shadow:
            inset 0 0 50px var(--color2-rgba-04, rgba(245, 87, 108, 0.4)),
            0 0 50px var(--color2-rgba-03, rgba(245, 87, 108, 0.3));
    }
}

.poly-face:nth-child(1) { transform: rotateY(0deg) translateZ(100px); animation-delay: 0s; }
.poly-face:nth-child(2) { transform: rotateY(90deg) translateZ(100px); animation-delay: 0.5s; }
.poly-face:nth-child(3) { transform: rotateY(180deg) translateZ(100px); animation-delay: 1s; }
.poly-face:nth-child(4) { transform: rotateY(-90deg) translateZ(100px); animation-delay: 1.5s; }
.poly-face:nth-child(5) { transform: rotateX(90deg) translateZ(100px); animation-delay: 2s; }
.poly-face:nth-child(6) { transform: rotateX(-90deg) translateZ(100px); animation-delay: 2.5s; }

/* === ANIMATED LIGHT RAYS === */
.light-rays {
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 1px;
    height: 1px;
    z-index: 2;
    pointer-events: none;
}

.ray {
    position: absolute;
    width: 2px;
    height: 400px;
    background: linear-gradient(to bottom,
        transparent,
        var(--color1-rgba-06, rgba(102, 126, 234, 0.6)),
        var(--color2-rgba-06, rgba(245, 87, 108, 0.6)),
        transparent);
    transform-origin: top center;
    animation: rayRotate 15s linear infinite;
    filter: blur(1px);
    opacity: 0.6;
}

@keyframes rayRotate {
    0% { transform: rotate(0deg) translateY(-200px); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: rotate(360deg) translateY(-200px); opacity: 0; }
}

.ray:nth-child(1) { animation-delay: 0s; }
.ray:nth-child(2) { animation-delay: 2s; }
.ray:nth-child(3) { animation-delay: 4s; }
.ray:nth-child(4) { animation-delay: 6s; }
.ray:nth-child(5) { animation-delay: 8s; }

/* === PARTICLE FIELD === */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
    animation: particleFloat 10s ease-in-out infinite;
    opacity: 0;
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(1.5);
        opacity: 0;
    }
}

/* === MORPHING LIQUID BLOB === */
.liquid-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: linear-gradient(45deg,
        var(--color1-rgba-015, rgba(102, 126, 234, 0.15)),
        var(--color2-rgba-015, rgba(245, 87, 108, 0.15)),
        var(--color3-rgba-015, rgba(79, 172, 254, 0.15)));
    filter: blur(50px);
    animation: blobMorph 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes blobMorph {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    25% {
        border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
        transform: translate(-50%, -50%) rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
        transform: translate(-50%, -50%) rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 30% 70% 60% 40% / 50% 30% 70% 50%;
        transform: translate(-50%, -50%) rotate(270deg) scale(1.05);
    }
}

.liquid-blob:nth-child(1) {
    top: 60%;
    left: 15%;
    animation-delay: 0s;
}

.liquid-blob:nth-child(2) {
    top: 25%;
    right: 12%;
    animation-delay: 5s;
    animation-duration: 18s;
}

/* === PORTAL EFFECT ON HOVER === */
.btn-custom {
    position: relative;
    overflow: visible;
}

.btn-custom-portal {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle,
        var(--color1-rgba-03, rgba(102, 126, 234, 0.3)),
        var(--color2-rgba-02, rgba(245, 87, 108, 0.2)),
        transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    filter: blur(20px);
    z-index: -1;
}

.btn-custom:hover .btn-custom-portal {
    transform: translate(-50%, -50%) scale(3);
    opacity: 1;
    animation: portalPulse 2s ease-in-out infinite;
}

@keyframes portalPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(3); }
    50% { transform: translate(-50%, -50%) scale(3.5); }
}

/* === ENERGY RINGS === */
.energy-ring {
    position: absolute;
    top: 15%;
    left: 50%;
    width: 300px;
    height: 300px;
    border: 2px solid var(--color1-rgba-04, rgba(102, 126, 234, 0.4));
    border-radius: 50%;
    transform: translate(-50%, 0);
    animation: ringExpand 4s ease-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes ringExpand {
    0% {
        transform: translate(-50%, 0) scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, 0) scale(2);
        opacity: 0;
    }
}

.energy-ring:nth-child(1) { animation-delay: 0s; border-color: var(--color1-rgba-05, rgba(102, 126, 234, 0.5)); }
.energy-ring:nth-child(2) { animation-delay: 1.3s; border-color: var(--color2-rgba-05, rgba(245, 87, 108, 0.5)); }
.energy-ring:nth-child(3) { animation-delay: 2.6s; border-color: var(--color3-rgba-05, rgba(79, 172, 254, 0.5)); }

/* === GEOMETRIC SHAPES === */
.geo-shape {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 2;
    animation: geoFloat 20s ease-in-out infinite;
}

@keyframes geoFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.15;
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg);
        opacity: 0.25;
    }
    50% {
        transform: translate(-20px, -60px) rotate(180deg);
        opacity: 0.2;
    }
    75% {
        transform: translate(-40px, 20px) rotate(270deg);
        opacity: 0.3;
    }
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid var(--color1-start, #667eea);
    animation-delay: 0s;
}

.geo-hexagon {
    width: 50px;
    height: 29px;
    background: var(--color2-start, #f093fb);
    position: relative;
    animation-delay: 3s;
}

.geo-hexagon::before {
    content: "";
    position: absolute;
    top: -14.5px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 14.5px solid var(--color2-start, #f093fb);
}

.geo-hexagon::after {
    content: "";
    position: absolute;
    bottom: -14.5px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 14.5px solid var(--color2-start, #f093fb);
}

.geo-diamond {
    width: 40px;
    height: 40px;
    background: var(--color3-start, #4facfe);
    transform: rotate(45deg);
    animation-delay: 6s;
}

.geo-shape:nth-child(odd) {
    animation-duration: 18s;
}

.geo-shape:nth-child(even) {
    animation-duration: 24s;
}

/* === SCANLINE EFFECT === */
.scanline-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 0, 0, 0.02) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 100;
    opacity: 0.3;
    animation: scanlineMove 8s linear infinite;
}

@keyframes scanlineMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* === FLOATING GLYPHS === */
.glyph {
    position: absolute;
    font-size: 2rem;
    color: white;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    text-shadow: 0 0 10px var(--color1-start, #667eea),
                 0 0 20px var(--color2-start, #f093fb);
    animation: glyphFloat 8s ease-in-out infinite;
}

@keyframes glyphFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0.8) rotate(0deg);
    }
    10% { opacity: 0.6; }
    50% {
        opacity: 0.8;
        transform: translateY(-30px) scale(1.2) rotate(180deg);
    }
    90% { opacity: 0.6; }
}

.glyph:nth-child(1) { animation-delay: 0s; }
.glyph:nth-child(2) { animation-delay: 1.6s; }
.glyph:nth-child(3) { animation-delay: 3.2s; }
.glyph:nth-child(4) { animation-delay: 4.8s; }
.glyph:nth-child(5) { animation-delay: 6.4s; }

/* === CONSTELLATION LINES === */
.constellation-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.2;
}

.const-line {
    stroke: var(--color1-start, #667eea);
    stroke-width: 1;
    stroke-dasharray: 5, 10;
    animation: constellationPulse 6s ease-in-out infinite;
}

.const-line:nth-child(2) {
    stroke: var(--color2-start, #f093fb);
    animation-delay: 2s;
}

.const-line:nth-child(3) {
    stroke: var(--color3-start, #4facfe);
    animation-delay: 4s;
}

@keyframes constellationPulse {
    0%, 100% {
        opacity: 0.3;
        stroke-width: 1;
    }
    50% {
        opacity: 0.7;
        stroke-width: 2;
    }
}

/* === DESTINATION INPUT === */
.destination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.destination-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg,
        var(--color1-start, #667eea),
        var(--color2-start, #f093fb),
        var(--color3-start, #4facfe),
        var(--color2-start, #f093fb),
        var(--color1-start, #667eea));
    background-size: 300% 100%;
    border-radius: 50px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: gradientShift 8s ease infinite;
}

.destination-container:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
                0 0 40px var(--color1-rgba-03, rgba(102, 126, 234, 0.3)),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.destination-container:focus-within::before {
    opacity: 0.6;
}

.destination-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    font-family: NunitoSans, sans-serif;
    letter-spacing: 0.5px;
}

.destination-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.destination-button {
    background: linear-gradient(135deg,
        var(--color1-start, #667eea),
        var(--color2-start, #f093fb));
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: NunitoSans, sans-serif;
    box-shadow: 0 6px 20px var(--color1-rgba-04, rgba(102, 126, 234, 0.4));
    position: relative;
    overflow: hidden;
}

.destination-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        var(--color2-start, #f093fb),
        var(--color3-start, #4facfe));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.destination-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px var(--color1-rgba-06, rgba(102, 126, 234, 0.6)),
                0 0 40px var(--color2-rgba-04, rgba(245, 87, 108, 0.4));
}

.destination-button:hover::before {
    opacity: 1;
}

.destination-button:active {
    transform: scale(1.05);
}

.destination-button > span {
    position: relative;
    z-index: 1;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .holographic-container {
        top: 12%;
        right: 5%;
        width: 300px;
        height: 300px;
    }

    .light-rays {
        bottom: 12%;
        left: 8%;
    }

    .energy-ring {
        top: 12%;
        left: 50%;
    }

    .liquid-blob:nth-child(1) {
        top: 55%;
        left: 12%;
    }

    .liquid-blob:nth-child(2) {
        top: 28%;
        right: 10%;
    }
}

@media (max-width: 968px) {
    body {
        display: block;
        padding: 0;
        margin: 0;
    }

    .container-custom {
        position: absolute;
        top: 6rem;
        left: 0;
        right: 0;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-custom {
        font-size: 2rem;
        padding: 1.5rem 3rem;
    }

    .btn-secondary-custom {
        font-size: 1.1rem;
        padding: 0.9rem 2.2rem;
    }

    .glow-text {
        font-size: 1rem;
    }

    .destination-container {
        max-width: 90%;
        gap: 0.6rem;
    }

    .destination-input {
        font-size: 1rem;
        padding: 0.75rem 1.3rem;
        min-width: 0;
    }

    .destination-button {
        font-size: 1rem;
        padding: 0.75rem 1.6rem;
        flex-shrink: 0;
    }

    /* Move 3D cube to top on mobile */
    .holographic-container {
        right: auto;
        left: 50%;
        top: 8%;
        transform: translate(-50%, 0);
        width: 200px;
        height: 200px;
        opacity: 0.6;
    }

    .light-rays {
        right: auto;
        left: 50%;
        top: 85%;
        transform: none;
        opacity: 0.4;
    }

    .energy-ring {
        right: auto;
        left: 50%;
        top: 85%;
        transform: translate(-50%, -50%);
    }

    .liquid-blob:nth-child(1) {
        top: 75%;
        left: 20%;
        right: auto;
    }

    .liquid-blob:nth-child(2) {
        top: 90%;
        left: 80%;
        right: auto;
    }
}

@media (max-width: 768px) {
    .container-custom {
        top: 4rem;
    }

    .btn-custom {
        font-size: 1.5rem;
        padding: 1.3rem 2.5rem;
    }

    .btn-secondary-custom {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }

    .destination-container {
        max-width: 85%;
        gap: 0.5rem;
        padding: 0.4rem;
    }

    .destination-input {
        font-size: 0.9rem;
        padding: 0.65rem 1rem;
        min-width: 0;
    }

    .destination-button {
        font-size: 0.9rem;
        padding: 0.65rem 1.2rem;
        flex-shrink: 0;
    }

    .orb {
        filter: blur(40px);
        opacity: 0.25;
    }

    .orb1, .orb2, .orb3 {
        width: 200px;
        height: 200px;
    }

    .holographic-container {
        width: 180px;
        height: 180px;
        opacity: 0.55;
        top: 6%;
    }

    .light-rays {
        top: 88%;
        opacity: 0.35;
    }

    .energy-ring {
        top: 88%;
    }

    .liquid-blob {
        width: 300px;
        height: 300px;
    }

    .liquid-blob:nth-child(1) {
        top: 78%;
    }

    .liquid-blob:nth-child(2) {
        top: 94%;
    }

    .particle {
        display: none;
    }

    .ray {
        opacity: 0.35;
    }

    /* New elements - mobile adjustments */
    .geo-shape {
        width: 40px;
        height: 40px;
        opacity: 0.1;
    }

    .geo-triangle {
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 35px solid var(--color1-start, #667eea);
    }

    .geo-hexagon {
        width: 35px;
        height: 20px;
    }

    .geo-hexagon::before,
    .geo-hexagon::after {
        border-left: 17.5px solid transparent;
        border-right: 17.5px solid transparent;
    }

    .geo-diamond {
        width: 30px;
        height: 30px;
    }

    .glyph {
        font-size: 1.5rem;
        opacity: 0;
    }

    @keyframes glyphFloat {
        0%, 100% {
            opacity: 0;
            transform: translateY(0) scale(0.6) rotate(0deg);
        }
        50% {
            opacity: 0.5;
            transform: translateY(-20px) scale(0.9) rotate(180deg);
        }
    }

    .constellation-lines {
        opacity: 0.1;
    }

    .scanline-overlay {
        opacity: 0.15;
    }
}

@media (max-width: 480px) {
    .container-custom {
        top: 3rem;
    }

    .btn-custom {
        font-size: 1.2rem;
        padding: 1.1rem 2rem;
    }

    .btn-secondary-custom {
        font-size: 0.9rem;
        padding: 0.7rem 1.8rem;
    }

    .destination-container {
        max-width: 92%;
        gap: 0.4rem;
        padding: 0.35rem;
    }

    .destination-input {
        font-size: 0.85rem;
        padding: 0.55rem 0.8rem;
        min-width: 0;
    }

    .destination-button {
        font-size: 0.85rem;
        padding: 0.55rem 1rem;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .holographic-container {
        top: 5%;
        width: 150px;
        height: 150px;
        opacity: 0.5;
    }

    .light-rays {
        top: 90%;
        opacity: 0.3;
    }

    .energy-ring {
        top: 90%;
    }

    .liquid-blob:nth-child(1) {
        top: 80%;
    }

    .liquid-blob:nth-child(2) {
        top: 96%;
    }

    /* Further reduce new elements on small screens */
    .geo-shape {
        width: 30px;
        height: 30px;
        opacity: 0.08;
    }

    .glyph {
        font-size: 1.2rem;
    }

    .scanline-overlay {
        opacity: 0.1;
    }
}
