:root {
    --glow: rgba(56, 189, 248, 0.3);
}

body {
    overflow-x: hidden;
}

/* --- HEADER --- */
.landing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.btn-register {
    /* 1. Gör att vi kan styra layouten inuti länken */
    display: inline-flex;

    /* 2. Centrera texten perfekt */
    justify-content: center; /* Horisontellt */
    align-items: center;     /* Vertikalt */

    /* 3. Storlek och utseende */
    height: 35px;
    width: 100%; /* Eller en fast bredd om du vill */
    padding: 0 5px; /* Lite luft på sidorna om texten blir lång */
    margin-bottom: 7px;

    border: 2px solid var(--accent); /* Glöm inte sätta färg, t.ex. var(--border) eller #fff */
    border-radius: 8px;

    /* 4. Text-styling */
    color: var(--text-main); /* Se till att texten har rätt färg */
    font-weight: 700;
    font-size: 11px;
    text-decoration: none;

    /* 5. Övrigt */
    transition: all 0.2s;
    cursor: pointer;
    box-sizing: border-box; /* Gör att bordern räknas in i höjden */
}

.btn-login {
    /* 1. Gör att vi kan styra layouten inuti länken */
    display: inline-flex;

    /* 2. Centrera texten perfekt */
    justify-content: center; /* Horisontellt */
    align-items: center;     /* Vertikalt */

    /* 3. Storlek och utseende */
    height: 35px;
    width: 100%; /* Eller en fast bredd om du vill */
    padding: 0 5px; /* Lite luft på sidorna om texten blir lång */
    margin-bottom: 7px;

    border: 2px solid var(--text-main); /* Glöm inte sätta färg, t.ex. var(--border) eller #fff */
    border-radius: 8px;

    /* 4. Text-styling */
    color: var(--text-main); /* Se till att texten har rätt färg */
    font-weight: 700;
    font-size: 11px;
    text-decoration: none;

    /* 5. Övrigt */
    transition: all 0.2s;
    cursor: pointer;
    box-sizing: border-box; /* Gör att bordern räknas in i höjden */
}

.btn-header {
    width: 73px;
    text-align: center;
    align-items: center;
    align-self: center;
}

/* --- MAIN CONTENT --- */
.container {
    max-width: 600px;
    padding: 10px 20px 40px 20px;
    text-align: center;
}

/* Hero Text */
.hero-lead {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}
.arrow { color: var(--accent); margin: 0 4px; }

.hero-sub {
    font-size: 11px;
    font-style: italic;
    color: #ccc;
    margin-bottom: 20px;
}

.section-title {
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Icons Grid (Card, Numbers, Trophy) */
.steps-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 5px;
}
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 32%;
}
.step-icon { margin-bottom: 10px; color: #fff; }

.step-title {
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 4px;
}
.step-desc {
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.3;
}

/* Info Box (Bordered) */
.info-card {
    border: 1px solid #fff;
    border-radius: 4px;
    text-align: left;
    background: rgba(255,255,255,0.02);
    margin-bottom: 30px;
}
.upper-top-info-item {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 16px;
    font-size: 11px;
    line-height: 1.4;
}
.upper-info-item {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 16px;
    font-size: 11px;
    line-height: 1.4;
}
.upper-info-item:last-child { margin-bottom: 0; }

.upper-info-title {
    color: var(--accent);
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 2px;
    display: flex;
    align-items: baseline;
}
/* Asterisk bullet */
.upper-info-title::before {
    content: '*';
    color: #fff;
    margin-right: 6px;
    font-weight: 400;
}

.upper-info-text { color: #ddd; font-style: italic; padding-left: 14px; }

.lower-info-item {
    margin-bottom: 16px;
    font-size: 11px;
    line-height: 1.4;
    padding-left: 20px;
    padding-right: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.lower-info-item:last-child { margin-bottom: 0; }

.lower-bottom-info-item {
    margin-bottom: 16px;
    font-size: 11px;
    line-height: 1.4;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lower-info-title {
    color: var(--accent);
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 2px;
}
/* Asterisk bullet */
.lower-info-title::before {
    color: #fff;
    margin-right: 6px;
    font-weight: 400;
}

.lower-info-text {
    color: #ddd;
    font-style: italic;
}

/* Bottom separated section in info card */
.info-divider {
    height: 1px;
    background: #fff;
    margin: 15px 0;
}

/* Main CTA Button */
.cta-container {
    margin-top: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.btn-cta {
    background: linear-gradient(180deg, #FCD34D 0%, #F59E0B 100%);
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    padding: 16px 60px;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    text-shadow: -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000;
    box-shadow:
            0 0 20px 4px var(--glow-color),
            0 4px 0 rgb(96, 64, 2);
    transition: transform 0.1s;
    display: inline-block;
}
.btn-cta:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #B45309;
}

.footer-link {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}
.footer-link:hover { text-decoration: underline; }

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}
/* Mobile: 2x2 grid */

.game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-btn {
    background: linear-gradient(180deg, #FCD34D 0%, #F59E0B 100%);
    color: #fff;
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 1/0.9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--btn-emboss-with-glow);
    transition: transform 0.1s;
    position: relative;
    border: none;
}

.price-text {
    font-size: 20px;
    font-weight: 900;
    text-shadow: var(--btn-text-shadow);
    margin-bottom: 2px;
}
.win-text {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    text-shadow: var(--btn-second-text-shadow);
}

.game-status {
    margin-top: 8px;
    font-size: 10px;
    color: #fff;
    font-weight: 600;
}
.game-status span {
    color: var(--accent);
}

/* Divider */
.divider {
    height: 1px;
    background: #fff;
    margin: 20px 0;
    width: 100%;
}

.btn-div {
    margin-top: 30px;
}

/* Action Text */
.action-text {
    color: var(--accent);
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 4px;
}
.action-sub {
    color: var(--text-muted);
    font-size: 11px;
    font-style: italic;
    margin-bottom: 20px;
}
