/* one-time use page */
@import url('https://fonts.cdnfonts.com/css/tt-bluescreens-trial');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 3.44rem;
    position: relative;
    overflow-x: hidden;
}

/* Background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 2px,
            transparent 2px,
            transparent 40px);
    z-index: -1;
}

/* Logo container */
.rmg-logo {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

.rmg-logo svg {
    width: 280px;
    height: auto;
    max-width: 90vw;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
    width: clamp(10rem, 8.5rem + 3.75vw, 17.5rem);
}

/* Main banner */
.slogan {
    background: linear-gradient(135deg, #224287 0%, #1a3567 100%);
    border-radius: 15px;
    padding: 1.94rem 2.87rem;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(34, 66, 135, 0.3);
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 100%;
    text-align: center;
    font-family: TT Bluescreens Trl Cnd;
    font-weight: 800;
    line-height: 100%; 
    letter-spacing: 0.06rem;
    text-transform: uppercase;
    overflow: visible;
    font-size: clamp(3.75rem, 1.625rem + 5.3125vw, 8rem);
}

.glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.text {
    color: white;
    font-weight: bold;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-right: 3rem;
}


.no-break {
    white-space: nowrap;
}

.text-highlight {
    color: #F4313F;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.star {
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(244, 49, 63, 0.6));
}

.star svg {
    animation: rotate 4s linear infinite; 
}

.coin {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -45%);
}

.coin img {
    width: clamp(10.1875rem, 7.7813rem + 6.0156vw, 15rem);
    aspect-ratio: 1/1;
}

.eagle-coin {
    border-radius: 50%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    width: auto;
}

.text-description {
    font-size: clamp(0.875rem, 0.6875rem + 0.4688vw, 1.25rem);
    color: #224287;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Copyright */
.copyright {
    font-size: 0.75rem;
    color: #666;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

@media (max-width: 1024px) {
    .text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-right: 0;
        margin-top: 5rem;
        margin-bottom: 1rem;
        position: relative;
    }

    .no-break {
        white-space: normal;
    }

    .coin {
        top: 0;
        right: 50%;
        transform: translate(50%, -30%);
    }

    .star {
        position: absolute;
        bottom: 0;
        transform: translate(50%, 10%);
    }
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}


/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .eagle-coin {
        content: url('./assets/coin2048.png');
    }
}