/* RØMIBET Landing — Main Stylesheet */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.page {
    position: relative;
    width: 100%;
    max-width: 420px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
}

/* Hero background image */
.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;   /* anchor to top — keeps characters in frame */
    opacity: 0.75;
    pointer-events: none;
}

/* Dark gradient overlay */
.dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55)  0%,
        rgba(0, 0, 0, 0.20) 35%,
        rgba(0, 0, 0, 0.70) 100%
    );
}

/* Content wrapper */
.all {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo */
.logo {
    width: 240px;
    max-width: 70%;
    margin-bottom: 28px;
    filter: drop-shadow(0 2px 16px rgba(255, 215, 0, 0.3));
}

/* Animated gold headline */
h1 {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    background: linear-gradient(
        90deg,
        #a16207,
        #eab308,
        #fde047,
        #fffbeb,
        #fde047,
        #eab308,
        #a16207
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    filter: drop-shadow(0 0 12px rgba(250, 204, 21, 0.5));
    margin-bottom: 8px;
}

@keyframes shine {
    0%   { background-position: 300% 0; }
    100% { background-position: -300% 0; }
}

/* Subtitle */
.sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
}

/* CTA button */
.btn {
    display: block;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    filter: drop-shadow(0 4px 20px rgba(251, 191, 36, 0.4));
    transition: transform 0.2s;
}

.btn:hover  { transform: scale(1.04); }
.btn:active { transform: scale(0.97); }

.btn img {
    width: 280px;
    height: auto;
    display: block;
}

/* How it works */
.how {
    margin-top: 36px;
    width: 100%;
}

.how h3 {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
    margin-bottom: 14px;
}

.how p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}
