@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
    /* Background Gradient */
    --color-body-gradient-start: #1c1c1c;
    --color-body-gradient-end: #3d3d3d;

    /* Text Colors */
    --color-text: #ffffff;
    --color-muted-text: rgba(255, 255, 255, 0.6);
    --color-text-shadow: rgba(0, 0, 0, 0.3);

    /* Loader / Accent Core */
    --color-loader-inner: #00a8cc;
    --color-loader-inner-rgba: rgba(0, 168, 204, 0.5);

    /* Gradient Text */
    --color-gradient-text-start: #ffffff;
    --color-gradient-text-end: #a4d4ff;

    /* Shine/Overlay */
    --color-shine-rgba1: rgba(255, 255, 255, 0.1);
    --color-shine-rgba2: rgba(255, 255, 255, 0.05);

    /* Accent Orbs - general neutral default */
    --color-orb-1: #1e3a5f; /* Navy */
    --color-orb-2: #00a8cc; /* Cyan */
    --color-orb-3: #00c1d4; /* Aqua */

    /* Link and Border Hues */
    --color-link: #a4d4ff;
    --color-border: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: linear-gradient(
        135deg,
        var(--color-body-gradient-start) 0%,
        var(--color-body-gradient-end) 100%
    );
    min-height: 100vh;
    color: var(--color-text);
    position: relative;
}

.gnrc__container {
    max-width: 728px;
    margin: 0 auto;
    overflow: hidden;
}

/* Glossy overlay effect */
body::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        var(--color-shine-rgba1) 0%,
        var(--color-shine-rgba2) 20%,
        transparent 70%
    );
    animation: shine 15s linear infinite;
    pointer-events: none;
}

@keyframes shine {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shine-button {
    from {
        transform: translateX(-100%) translateY(-100%);
    }
    to {
        transform: translateX(100%) translateY(100%);
    }
}

/* Modern loader with glow effect */
.loader {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 30px;
}
.loader::before,
.loader::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
}
.loader::before {
    width: 100%;
    height: 100%;
    background: var(--color-loader-inner-rgba);
    animation-delay: -0.5s;
}
.loader::after {
    width: 80%;
    height: 80%;
    background: var(--color-loader-inner);
    top: 10%;
    left: 10%;
    box-shadow: 0 0 20px var(--color-loader-inner),
        0 0 40px var(--color-loader-inner), 0 0 60px var(--color-loader-inner);
}
/* Modern loader with glow effect */

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

@keyframes fadeInOut {
    0%,
    100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Page fade-out animation */
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(20px);
    }
}

.content-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin: 0 auto;
    text-align: left;
}

.content-container h1 {
    line-height: 5rem;
    text-align: left;
}

.content-container h3 {
    line-height: 2.4rem;
    text-align: left;
}

.content-container p {
    line-height: 1.5rem;
    text-align: left;
}

footer {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    padding: 30px 10px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 100px;
}

.gnrc__ad-label {
    font-size: 10px;
    color: #fff;
    margin: 1px 0 1px 0;
}

@keyframes radiate {
    0% {
        filter: drop-shadow(0 0 2px #e53935) drop-shadow(0 0 5px #e53935)
            drop-shadow(0 0 2px #e53935);
    }
    50% {
        filter: drop-shadow(0 0 4px #e53935) drop-shadow(0 0 6px #e53935)
            drop-shadow(0 0 4px #e53935);
    }
    100% {
        filter: drop-shadow(0 0 2px #e53935) drop-shadow(0 0 5px #e53935)
            drop-shadow(0 0 2px #e53935);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.animate__pulse {
    -webkit-animation: pulse 1s ease-in-out infinite;
    animation: pulse 1s ease-in-out infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}
