﻿body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    /* MOBILE BACKGROUND */

    background-image: url('../images/group 7438.jpg');
    background-repeat: no-repeat;
    /* background-position: center top; */
    background-size: cover;
    background-attachment: scroll;
}
 
.page-wrapper {
    max-width: 420px;
    margin: 0 auto;
    padding: 20px 20px 0px 20px;
/*    min-height: 100vh;*/
    display: flex;
    flex-direction: column;
    align-items: center;
}
.top-text {
    font-size: 10px;
    color: #cbd5e1;
    margin-bottom: 40px;
}
/* Header layout */
.topbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Burger + Lang switch */
.right-side {
    display: flex;
    align-items: center;
    gap: 10px;
}

.burger-menu {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

    .burger-menu span {
        width: 100%;
        height: 2.5px;
        background: #fff;
        border-radius: 2px;
    }

/* Desktop background */
@media (min-width: 1024px) {
    body {
        background-image: url('images/desktop-bg.jpg');
        background-size: cover;
        background-position: center;
    }

    .page-wrapper {
        max-width: 480px;
    }
}

.main-content {
  /*  padding: 20px;*/
    text-align: center;
}

.right-side {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-header {
    display: flex; /* flex row */
    justify-content: space-between; /* text left, icon right */
    align-items: flex-start; /* icon slightly above text baseline */
    width: 100%;
    margin-bottom: 15px; /* spacing below header */
    
}

.step-title {
    width: 70%;
    /*font-size: 15px;*/
    font-weight: 600;
    color: #fff;
    line-height: 1.3; /* matches screenshot spacing */
    margin: 0;
   /* flex: 1;*/ /* allow text to take available width */
}

.step-icon {
    width: 26px; /* icon size matches screenshot */
    height: 26px;
    opacity: 0.85; /* slightly transparent */
    margin-left: 10px; /* spacing from text */
}

/* BURGER MENU (matches screenshot) */
.burger-menu {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

    /* Lines */
    .burger-menu span {
        width: 100%;
        height: 2.5px;
        background: #ffffff;
        border-radius: 2px;
    }

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px 10px 0px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
    .logo img {
        width: 85px;
        height: 28px;
    }

.lang-switch button {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
 /*   padding: 4px 10px;*/
    margin-left: 5px;
    /*border-radius: 4px;*/
}
.lang-switch input[type=button] {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    /*   padding: 4px 10px;*/
    margin-left: 5px;
    /*border-radius: 4px;*/
}

    .lang-switch input[type=button] .active {
        background: #fff;
        color: #000;
    }
.lang-switch .active {
    background: #fff;
    color: #000;
}

/* ------------------ */
/* TEXT STYLES */
/* ------------------ */

.title-top {
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
}

.title-big {
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0;
}

.subtitle {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.challenge-title {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px;
}

/* ------------------ */
/* BOX SECTION */
/* ------------------ */

.box {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(4px);
}

.step-title {
    font-size: 12px;
    margin-bottom: 15px;
}

.phone-input {
    width: 90%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    margin-bottom: 8px;
}

.subscribe-btn {
    width: 100%;
    background: #1fb6ff;
    border: none;
    padding: 14px;
    color: #fff;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom:15px;
}
.desc {
    font-size:12px;
}
.trial-note,
.pin-note {
    font-size: 11px;
    margin-top: 10px;
    opacity: 0.9;
}

.exit-link {
    color: #fff;
    display: block;
    margin: 20px auto;
    font-size: 14px;
    font-weight: bold;
}

/* ------------------ */
/*  LIST */
/* ------------------ */
.list {
    font-size: 13px;
    text-align: left;
    margin-top: 20px;
    padding-left: 20px;
    opacity: 0.9;
}

/* ---------------------------------- */
/* DESKTOP VIEW (Change background)   */
/* ---------------------------------- */
@media (min-width: 1024px) {
    body {
         
        background-image: url('../images/desk.jpg');
        background-size: cover; /* Fill desktop screen */
        background-position: center;
        background-attachment: fixed;
    }

    .main-content {
        max-width: 450px;
        margin: auto;
    }
}
