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

html {
    font-size: 0.625em;
    -ms-high-contrast-adjust: none;
    -ms-overflow-style: scrollbar;
}

html.uiv3.edge {
    font-size: 62.5%;
    -ms-content-zooming: none;
    touch-action: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Web", sans-serif;
    background-color: #f7f7f7;
    font-size: 1.4rem;
    line-height: 1.2857;
    margin: 0;
    padding: 0;
    color: #252424;
}

#rootViewV2 {
    margin: 0;
    background-color: #f7f7f7;
    min-height: 100vh;
    display: flex;
}

.modernViewContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    flex: 1;
    justify-content: center;
    align-content: center;
}

.modernViewContainer #container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 2.4rem;
    flex: 1;
    justify-content: center;
}

.modernLifeSimplifiedView {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 2.4rem;
}

.modernLifeSimplifiedView .mainLayoutLifeSimplifiedView {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 2.4rem;
    width: 42rem;
}

.modernLifeSimplifiedView .mainActionsContent {
    display: flex;
    flex-direction: column;
    border: 0.05rem solid rgba(0, 0, 0, 0.15);
    background: #fff;
    border-radius: 1.2rem;
    align-self: stretch;
    align-items: stretch;
}

.modernLifeSimplifiedView .banner {
    display: flex;
    flex-direction: column;
    min-height: 13rem;
}

.modernLifeSimplifiedView .headerContainer {
    justify-content: center;
    display: flex;
    background: #fff;
    height: 4.9rem;
    margin-bottom: 0;
    transition: height 0.4s ease-in;
}

.modernLifeSimplifiedView .logoContainer {
    position: relative;
    width: 9.8rem;
    height: 9.8rem;
    top: 4.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.12), 0 0.2rem 0.4rem rgba(0, 0, 0, 0.14);
    border-radius: 0.8rem;
    transition: opacity 0.2s 0.2s ease-in;
}

.modernLifeSimplifiedView .logoContainer .logo {
    width: 5.145rem;
    height: auto;
    align-self: center;
    max-width: 100%;
    display: block;
}

.modernLifeSimplifiedView .contentContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3.2rem;
    background: #fff;
    border-radius: 1.2rem;
    color: #616161;
    text-align: center;
}

.modernLifeSimplifiedView .contentContainer .title {
    max-width: 27rem;
    color: #242424;
    font-size: 2rem;
    line-height: 2.8rem;
    font-weight: bold;
    padding-bottom: 0.375rem;
    margin: 0;
}

.modernLifeSimplifiedView .contentContainer .description {
    font-size: 1.6rem;
    line-height: 2.2rem;
    font-weight: 400;
}

.modernLifeSimplifiedView .actionsContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0rem 3.2rem 3.2rem 3.2rem;
    gap: 3.2rem;
    background: #fff;
    align-self: stretch;
    border-radius: 1.2rem;
}

.modernLifeSimplifiedView .buttonsContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0.8rem;
    align-self: stretch;
}

.btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    border-radius: 0.4rem;
    padding: 1.05rem 0 1.05rem 0;
    cursor: pointer;
    border-width: 0.1rem;
    position: relative;
    border: 0.1rem solid transparent;
}

.btn .text {
    text-align: center;
}

.btn h3 {
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.9rem;
    margin: 0;
}

.btn.primary {
    background-color: #6264a7;
    box-shadow: rgba(0, 0, 0, 0.25) 0 0.2rem 0.4rem -0.075rem;
    border-color: rgba(0, 0, 0, 0);
    transition: background-color 0.5s ease-in;
}

.btn.primary h3 {
    color: #fff;
    transition: color 0.5s ease-in;
}

.btn.primary:hover {
    box-shadow: 0 0.06rem 0.18rem 0 rgba(0, 0, 0, 0.11), 0 0.32rem 0.72rem 0 rgba(0, 0, 0, 0.13);
    background-color: #585a96;
    transition: background-color 0.5s ease-in;
}

.btn.primary:hover:active {
    background-color: #464775;
    transition: background-color 0.5s ease-in;
}

.btn.secondary {
    color: #242424;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0.2rem 0.4rem -0.075rem;
    background-color: rgba(0, 0, 0, 0);
    border: 0.1rem solid #e1dfdd;
    flex: 1 1 0;
    transition: color 0.5s ease-in;
}

.btn.secondary h3 {
    color: #252423;
    transition: background-color 0.5s ease-in;
}

.btn.secondary a {
    color: #5b5fc7;
    font-weight: normal;
    outline: none;
}

.btn.secondary:hover {
    border-color: #c8c6c4;
    background-color: #f5f5f5;
}

.btn.secondary:hover:active {
    background-color: #e0e0e0;
}

.secondaryActionsContent {
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.secondaryAction {
    background-color: rgba(0, 0, 0, 0);
    color: #242424;
    font-size: 1.4rem;
    line-height: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.secondaryAction p {
    margin: 0;
}

.secondaryAction .text {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.secondaryAction a {
    color: #5b5fc7;
    font-weight: normal;
    outline: none;
    transition: color 0.5s ease-in;
    text-decoration: underline;
}

.secondaryAction .img {
    opacity: 1;
    width: 2.4rem;
    height: 2.4rem;
    margin-bottom: 0;
    align-self: center;
}

.disclaimer {
    margin-top: 4rem;
    margin-bottom: 2.4rem;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    padding: 0;
    gap: 1.6rem;
}

.disclaimer .view {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 0;
    gap: 2.4rem;
    flex-wrap: wrap;
}

.disclaimer .view .disclaimerTextWithLogo {
    color: #616161;
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.disclaimer .view .disclaimerTextWithLogo .hideText {
    display: none;
}

.disclaimer .view .disclaimerTextWithLogo img {
    width: 1.2rem;
    height: 1.2rem;
}

.disclaimer a {
    color: #605e5c;
    transition: color 0.4s ease-in;
    margin: 0;
    text-decoration: none;
    font-size: 1.4rem;
    line-height: 2rem;
}

.disclaimer a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 600px) {
    .disclaimer .view .hideText {
        display: none;
    }
}

@media screen and (min-width: 1001px) and (max-width: 1600px) {
    html.uiv3 {
        font-size: 10px;
    }
}

@media screen and (min-width: 601px) and (max-width: 1000px) {
    html.uiv3 {
        font-size: 9px;
    }
}

@media screen and (max-width: 600px) {
    html.uiv3 {
        font-size: 8px;
    }
}


/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 1.2rem;
    padding: 4rem;
    max-width: 42rem;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.12), 0 0.2rem 0.4rem rgba(0, 0, 0, 0.14);
}

.modal-icon {
    margin-bottom: 2.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-icon img {
    width: 6.4rem;
    height: 6.4rem;
    border-radius: 0.8rem;
    box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.12), 0 0.2rem 0.4rem rgba(0, 0, 0, 0.14);
    background: #fff;
    padding: 0.8rem;
}

.modal-content h2 {
    font-size: 2rem;
    line-height: 2.8rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
    color: #242424;
}

.modal-content p {
    font-size: 1.6rem;
    line-height: 2.2rem;
    color: #616161;
    margin-bottom: 3.2rem;
    font-weight: 400;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-self: stretch;
}

.modal-actions .btn {
    width: 100%;
    padding: 1.05rem 0;
}

.modal-actions .btn h3 {
    font-size: 1.4rem;
    line-height: 1.9rem;
    font-weight: 600;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .modal-content {
        padding: 3.2rem 2.4rem;
    }

    .modal-content h2 {
        font-size: 1.8rem;
        line-height: 2.4rem;
    }

    .modal-content p {
        font-size: 1.4rem;
        line-height: 2rem;
    }
}

/* Blocked OS Message Styles */
.blocked-message {
    background: white;
    border-radius: 1.2rem;
    padding: 4.8rem 4rem;
    box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.12), 0 0.2rem 0.4rem rgba(0, 0, 0, 0.14);
    max-width: 42rem;
    width: 100%;
    text-align: center;
}

.blocked-message h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
    color: #d13438;
    line-height: 1.33;
}

.blocked-message p {
    font-size: 1.5rem;
    color: #605e5c;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .modal-content {
        padding: 3.2rem 2.4rem;
    }

    .modal-content h2 {
        font-size: 2rem;
    }

    .disclaimer {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .disclaimer .view {
        flex-direction: column;
        gap: 0.8rem;
    }
}
