/* Mobile layout */
@media (max-width: 600px) {
    .contact-card {
        flex-direction: column;
        text-align: left;
        justify-content: flex-start !important;
    }

    .contact-image img {
        width: 120px;
        height: 120px;
    }
}
.glasto-big {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Impact', 'Anton', 'Arial Black', sans-serif;
}

.glasto-text {
    background: linear-gradient(
        90deg,
        #ff007f,
        #ff8c00,
        #ffe600,
        #39ff14,
        #00e5ff,
        #8a2be2,
        #ff007f
    );
    background-size: 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glastoFlow 8s linear infinite, glastoWobble 2.5s ease-in-out infinite;
}

@keyframes glastoFlow {
    0% { background-position: 0% }
    100% { background-position: 600% }
}

@keyframes glastoWobble {
    0%, 100% { transform: rotate(-1deg); }
    50% { transform: rotate(1deg); }
}
.ticker-link {
    text-decoration: none;
    display: inline-block;
}
.news-ticker,
.news-ticker .ticker-link,
.news-ticker .ticker-content {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}
.policy-highlight {
  border-left: 4px solid #ff7a00;
  background: #fff7e8;
  padding: 10px 15px;
  margin: 20px 0;
  font-weight: 600;
}
.center-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}
.center-table td {
    padding: 1.5rem;
    border: 1px solid #ddd;
    vertical-align: middle; /* vertical centering */
}
.sfc-gradient-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.25em;

    /* Smaller responsive size */
    font-size: clamp(1.2rem, 3vw, 2.4rem);

    display: inline-flex;
    flex-direction: column;
    align-items: center;   /* <-- centers each line */
    justify-content: center; /* <-- centers vertically if needed */
    gap: 0.4em;

    /* Gradient fill */
    background: linear-gradient(to bottom, #fe6a00 0%, #000000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    /* Depth */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.45);

    /* Center the whole block */
    margin-left: auto;
    margin-right: auto;
}

.sfc-gradient-text .line {
    display: flex;
    justify-content: center; /* <-- ensures each row is centered */
    gap: 0.25em;
}

.sfc-gradient-text span {
    display: inline-block;
    transition: transform 0.35s cubic-bezier(.34,1.56,.64,1),
                text-shadow 0.25s ease;
}

.sfc-gradient-text span:hover {
    transform: scale(1.3);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.55);
}

.social-link {
  display: inline-block;
  cursor: pointer;
}

.icon {
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
}

.social-link:hover .icon {
  transform: scale(1.1);
}
/* ===========================
   FLOATING NEON LOGO LINK
   =========================== */

.footer-floating-logo {
    display: block;
    width: 180px;
    margin: 0 auto -2rem;
    position: relative;
    z-index: 20;
    text-align: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-floating-logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 12px var(--neon-blue))
            drop-shadow(0 0 22px var(--neon-purple));
}

/* Hover neon pulse */
.footer-floating-logo:hover {
    transform: translateY(-6px) scale(1.04);
}

.footer-floating-logo:hover img {
    filter: drop-shadow(0 0 16px var(--neon-yellow))
            drop-shadow(0 0 28px var(--neon-pink))
            drop-shadow(0 0 40px var(--neon-blue));
}
.footer-floating-logo {
    text-decoration: none !important;
}

.footer-floating-logo img {
    text-decoration: none !important;
}
.footer-floating-logo,
.footer-floating-logo:link,
.footer-floating-logo:visited,
.footer-floating-logo:hover,
.footer-floating-logo:active {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}
@media (max-width: 768px) {

    .menu-list {
        display: flex !important;
        flex-direction: column !important;   /* vertical */
        justify-content: center;
        align-items: center;
        gap: 15px;
        padding: 15px 0;
    }

    .menu-list li {
        list-style: none;
        width: 100% !important;
        display: flex !important;
        justify-content: center;
    }

    .ball-menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: auto;
    }

    .menu-ball {
        width: 60px;
        height: 60px;
    }
}
/* Very small screens: shrink menu balls */
@media (max-width: 480px) {
    .menu-ball {
        width: 45px !important;
        height: 45px !important;
    }

    .ball-menu-item {
        gap: 4px; /* tighter spacing between ball + label */
    }

    .menu-list {
        gap: 12px !important; /* reduce spacing between items */
    }
}
