#fw-section-custom-html-db5c7db8-b369-46c3-84bc-44c271a30a19 {

/* Base Styling for Body */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    font-family: "Inter", sans-serif;
}

/* Container for Buttons */
.button-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
}

/* Button Styling */
.shiny-cta {
    position: relative;
    display: inline-block;
    padding: 1.25rem 2.5rem;
    font-family: inherit;
    font-size: 1.125rem;
    line-height: 1.2;
    border: 2px solid transparent;
    border-radius: 10px;
    color: white;
    background: #111;
    text-align: center;
    cursor: pointer;
    outline: none;
    transition: all 0.4s ease-in-out;
    box-shadow: inset 0 0 0 1px #000;
    overflow: hidden;
    position: relative;
}

/* Span inside button */
.shiny-cta span {
    position: relative;
    z-index: 1;
}

/* Shiny Blue Line Effect (starts small) */
.shiny-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: #00bcd4; /* Cyan color for shiny line */
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1), left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Expanding Shiny Line on Hover */
.shiny-cta:hover::before {
    width: 100%;
    left: 0;
}

/* Glowing Background Effect */
.shiny-cta:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

/* Button Hover and Active Effect */
.shiny-cta:hover {
    background-color: #ff5722; /* Bright orange on hover */
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: #ff5722;
}

.shiny-cta:active {
    color: #fff;
}

/* Active Shiny Line Fade */
.shiny-cta:hover:before {
    opacity: 1;
}

/* Glowing Animation */
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/* Glowing Animation */
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

}