* {
    font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --light-bg: #f8f9fa;
    --dark-text: #212529;
}

body {
    font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-image: url('/assets/gom-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
}

h1 {
    color: #cdee73;
    font-size: 7rem !important;
    /* 2px black outline using text-stroke */
    -webkit-text-stroke: 1px #000;
    text-stroke: 1px #000;
    /* Multiple shadows for a thicker black outline fallback */
    text-shadow:
        -2px -2px 0 #000,  
         2px -2px 0 #000,
        -2px  2px 0 #000,
         2px  2px 0 #000,
         0   -2px 0 #000,
         0    2px 0 #000,
        -2px  0   0 #000,
         2px  0   0 #000,
        /* Layer main neon animation shadow, colors controlled below */
        0 0 14px #39ff14,
        0 0 24px #00eaff;
    /* Neon shadow animation */
    animation: h1NeonShadow 2.5s infinite alternate;
}

.lead {
    color: #fafafa;
    border-radius: 1rem;
    padding: .5rem 1rem;
}

/** 
 * Enhance the container inside .hero-content for readability and depth.
 */
.hero-content > .container {
    padding: 1rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.15); 
    box-shadow: 0 4px 24px 0 rgba(255, 255, 255, 0.5), 0 1.5px 7px 0 rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}


@keyframes h1NeonShadow {
    0% {
        text-shadow:
            -2px -2px 0 #000,
             2px -2px 0 #000,
            -2px  2px 0 #000,
             2px  2px 0 #000,
             0   -2px 0 #000,
             0    2px 0 #000,
            -2px  0   0 #000,
             2px  0   0 #000,
            0 0 14px #39ff14,
            0 0 24px #00eaff;
    }
    25% {
        text-shadow:
            -2px -2px 0 #000,
             2px -2px 0 #000,
            -2px  2px 0 #000,
             2px  2px 0 #000,
             0   -2px 0 #000,
             0    2px 0 #000,
            -2px  0   0 #000,
             2px  0   0 #000,
            0 0 18px #ff00e0,
            0 0 28px #ffe600;
    }
    50% {
        text-shadow:
            -2px -2px 0 #000,
             2px -2px 0 #000,
            -2px  2px 0 #000,
             2px  2px 0 #000,
             0   -2px 0 #000,
             0    2px 0 #000,
            -2px  0   0 #000,
             2px  0   0 #000,
            0 0 20px #00fff0,
            0 0 30px #ff2400;
    }
    75% {
        text-shadow:
            -2px -2px 0 #000,
             2px -2px 0 #000,
            -2px  2px 0 #000,
             2px  2px 0 #000,
             0   -2px 0 #000,
             0    2px 0 #000,
            -2px  0   0 #000,
             2px  0   0 #000,
            0 0 22px #ff2aee,
            0 0 32px #14ffec;
    }
    100% {
        text-shadow:
            -2px -2px 0 #000,
             2px -2px 0 #000,
            -2px  2px 0 #000,
             2px  2px 0 #000,
             0   -2px 0 #000,
             0    2px 0 #000,
            -2px  0   0 #000,
             2px  0   0 #000,
            0 0 24px #2cff1a,
            0 0 36px #00eaff;
    }
}

/* Hero section styling */
.hero-section {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.button-link {
    color: #8436dd;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.5s ease;
    transition: font-size 0.5s ease-in-out;
}

.button-link:hover {
    text-decoration: none;
    color: #d8344a;
}

/* Custom button styles for .btn */
.btn {
    border-radius: 8px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 1.5px 3px rgba(0,0,0,0.10);
    background: #ffffffde;
    /* Neon gradient border using pseudo-element for rounded corners */
    border: none;
    position: relative;
    z-index: 1;
    margin: 1rem auto;
    padding: 0.5rem 1rem;
    cursor: pointer;
    isolation: isolate;
    animation: btnWobbleChillExpand 3.5s ease-in-out infinite alternate;
    transition: box-shadow 1.5s ease-out, font-size 0.5s ease-in-out;
}

.btn::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 8px;
    background: linear-gradient(90deg, #00fff0, #ff2aee, #2cff1a, #14ffec, #ff2aee, #00fff0);
    z-index: -2;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: #fafafa;
    z-index: -1;
}

.btn:hover, .btn:focus {
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.17), 
        0 0.8px 3px rgba(0,0,0,0.18),
        /* Smaller and brighter explosion colors */
        0 0 35px 7px rgba(255, 76, 0, 0.7),
        0 0 40px 9px rgba(255, 250, 0, 0.6),
        0 0 48px 10px rgba(0, 255, 240, 0.65),
        0 0 30px 6px rgba(255, 92, 248, 0.7),
        0 0 38px 8px rgba(74, 255, 66, 0.6),
        0 0 28px 5px rgba(255, 0, 224, 0.7),
        0 0 42px 8px rgba(60, 255, 246, 0.6),
        0 0 27px 6px rgba(255, 255, 0, 0.6),
        0 0 34px 7px rgba(152, 94, 251, 0.58),
        0 0 40px 8px rgba(236, 127, 76, 0.6);
    transform: translateY(-2px) rotate(-2deg) scale(1.05);
    animation: btnWobbleExpand 1.25s ease-in-out infinite alternate;
    cursor: pointer;
}

@keyframes btnWobbleExpand {
    0% { 
        transform: scale(1.04) rotate(-3deg);
    }
    25% { 
        transform: scale(0.98) rotate(3deg);
    }
    50% { 
        transform: scale(1.05) rotate(-2deg);
    }
    75% {
        transform: scale(1.04) rotate(4deg);
    }
    100% { 
        transform: scale(1.07) rotate(-3deg);
    }
}

@keyframes btnWobbleChillExpand {
    0% { 
        transform: scale(1.01) rotate(-1deg);
    }
    25% { 
        transform: scale(0.99) rotate(1deg);
    }
    50% { 
        transform: scale(1.01) rotate(-1deg);
    }
    75% {
        transform: scale(0.99) rotate(1deg);
    }
    100% { 
        transform: scale(1.00) rotate(-1deg);
    }
}

/* Utility classes */
.section-padding {
    padding: 4rem 0;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 2s ease-in;
}

@media (max-width: 700px) {
    h1 {
        font-size: 3rem !important;
    }

    .button-link {
        font-size: 1.5rem;
    }

    .hero-section {
        margin-left: 2rem;
        margin-right: 2rem;
    }
}

@media (min-width: 701px) {
    .button-link {
        padding: 0.5rem;
        font-size: 1.5rem;
    }
    .button-link:hover {
        font-size: 2.5rem;
        line-height: 2.5;
    }
    .btn {
        min-width: 15vw;
    }
}