* {
    box-sizing: border-box;
}

body {
    margin: 0;
    height: 100vh;
    overflow: hidden;
    font-family: Segoe UI, sans-serif;
    background:
        radial-gradient(circle at 20% 20%, #7c3aed55, transparent 35%),
        radial-gradient(circle at 80% 70%, #9333ea55, transparent 40%),
        linear-gradient(135deg, #050505, #160022, #000);
    color: white;
}


/* abstract blobs */
body::before,
body::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
}

body::before {
    width: 400px;
    height: 400px;
    background: #8b5cf6;
    left: -100px;
    top: -100px;
    opacity: .35;
}

body::after {
    width: 500px;
    height: 500px;
    background: #4c1d95;
    right: -150px;
    bottom: -150px;
    opacity: .3;
}


.container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 80px;
    gap: 100px;

    @media screen and (max-width:900px) {
        padding-left: 30px;
        padding-top: 30px;
        gap: 30px;
        transition: 500ms 300ms;
    }

    @media screen and (max-width:700px) {
        padding-left: 30px;
        padding-top: 30px;
        align-items: flex-start;
    }


}


.phone {
    width: 362px;
    height: 782px;

    flex-shrink: 0;

    border-radius: 32px;
    overflow: hidden;

    background: #000;
    border: 1px solid #ffffff22;

    box-shadow:
        0 0 80px #9333ea55,
        inset 0 0 30px #ffffff10;
}


iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.info {
    max-width: 400px;
}


h1 {
    font-size: 48px;
    margin: 0;
    background: linear-gradient(90deg, #c084fc, #fff);
    -webkit-background-clip: text;
    color: transparent;
}


p {
    color: #bbb;
    font-size: 18px;
    line-height: 1.7;
}


button,
[role="button"] {
    margin-top: 25px;
    padding: 14px 30px;

    border-radius: 30px;
    border: none;

    background: linear-gradient(90deg, #9333ea, #4f46e5);
    color: white;

    cursor: pointer;
    font-size: 16px;

    &.green-button {
        background: linear-gradient(90deg, #6bab27, #21781d);
    }

    &.default-button {
        background: linear-gradient(90deg, #4b5563, #1f2937);
    }
}

button-combination {
    display: flex;


    button,
    [role="button"] {
        border-radius: 0 0 0 0;
        display: flex;
        position: relative;
        margin: 0 -4px;
        clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);

        &:first-child {
            border-radius: 30px 0 0 30px;
            clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
        }

        &:last-child {
            border-radius: 0 30px 30px 0;
            clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%);
        }
    }
}

.desktop-only {
    display: block;

    @media screen and (max-width:700px) {
        display: none;
    }
}

.mobile-only {
    display: none;

    @media screen and (max-width:700px) {
        display: block;
    }
}

action-container {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
}

.flag-decoration {
    justify-content: space-between;
    position: relative;


    &:before {
        content: "";
        width: 40px;
        position: absolute;
        height: 30px;
        background-image: var(--bg-img);
        background-repeat: no-repeat;
        background-position: center center;
        z-index: -1;
        right: 0;
        margin: -10px -5px;

        filter: grayscale(70%);


    }

    &:hover:before {
        transition: 500ms;
        filter: none;
        transform: scale(1.3);
        opacity: 0.7;
    }

    &.r-side:before {
        right: unset;
        left: 0;
        margin: -10px -5px;
    }
}

.mobile-mode-only {

    @media screen and (min-width:700px) {
        display: none !important;
    }
}

.desktop-mode-only {

    @media screen and (max-width:700px) {
        display: none !important;
    }
}