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

#main_logo {
    height: 50px;
    margin-top: 7.5px;
}

#tutorial_card {
    width: 325px;
    height: 75px;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: row;
    margin: 70px auto 100px auto;
    margin-top: 70px;
    text-decoration: none;
    transition: 0.5s;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.383);
    border-radius: 11px;
}

#slogan {
    font-weight: bold;
    margin: 0 15px 40px 15px;
    font-size: 26px;
}

strong {
    font-weight: 500;
}

#picture_tutorial_card {
    width: 75%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    border-radius: 10px 0 0 10px;
}

#picture_tutorial_card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Černý overlay s 50% průhledností */
    transition: 0.5s;
    border-radius: 10px 0 0 10px;

}

#tutorial_card:hover #picture_tutorial_card::before {
    background-color: rgba(0, 0, 0, 0);
}

#tutorial_card:hover #picture_tutorial_card article {
    opacity: 0;
}

#tutorial_card div {
    height: 100%;
}

#picture_tutorial_card article {
    position: relative;
    height: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: 0.5s;
    opacity: .9;
}

#picture_tutorial_card article img {
    height: 100%;
}

#tutorial_card h3 {
    font-size: 14px;
    margin-bottom: 5px;
    color: black;
}

#tutorial_card p {
    font-size: 10px;
    color: rgb(139, 139, 139);
}

#content_tutorial_card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 15px;
}

#tutorial_card div img {
    height: 100%;
}

#menu_button {
    height: 30px;
    margin-right: 10px;
}

#menu_button img {
    height: 30px;
}

header {
    display: flex;
    justify-content: right;
    align-items: center;
    height: 50px;
    position: relative;
    z-index: 2;
}

.business_text_contact {
    /* color: rgba(255, 255, 255, 0.386); */
    color: white;
    font-weight: 100;
    font-size: 10px;
}


.business_text_contact a {
    margin-top: 2px;
    color: white;
}

.business_text_contact a:hover {
    color: white;
}

#root_div_a a {
    text-decoration: none;
    color: black;
    padding: 4px 4px;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    line-height: 16px;
}

hr {
    height: 0.65px;
    background-color: rgba(0, 0, 0, 0.083);
    border: 0;
}

#root_div_a {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 45px;
    right: 50%;
    background-color: white;
    border-radius: 5px;
    padding: 0 17.5px;
    box-shadow: 0px 0px 5px 0.1px rgb(61, 61, 61);
    width: 100%;
    transform: translateX(50%);
    pointer-events: none;
    opacity: 0;
    z-index: 2;
}

#root_div_a div {
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.icon_root {
    height: 12px;
    margin-left: 11px;
}

html, body {
    min-height: 100%;
}

body {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to bottom, #83d2ab, #000);
    /* background: linear-gradient(
  to bottom,
  #83d2ab 0%,
  #1a3d2f 50%,
  #000 100%
); */
}

.grid-horizontal {
    content: "";
    position: fixed;
    top: var(--grid-y, 0);
    left: 0;
    width: 100%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 100px,
            rgba(131, 210, 171, 0.03) 100px,
            rgba(131, 210, 171, 0.03) 102px
        );
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.grid-vertical {
    content: "";
    position: fixed;
    top: var(--grid-y, 0);
    left: 0;
    width: 100%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(131, 210, 171, 0.03) 100px,
            rgba(131, 210, 171, 0.03) 102px
        );
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 300%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-stat {
    position: absolute;
    color: rgba(131, 210, 171, 0.08);
    font-size: 120px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    white-space: nowrap;
    will-change: transform;
}

.bg-stat:nth-child(1) {
    top: 8%;
    left: 3%;
    transform: rotate(-15deg);
}

.bg-stat:nth-child(2) {
    top: 25%;
    right: 5%;
    transform: rotate(20deg);
}

.bg-stat:nth-child(3) {
    top: 70%;
    left: 8%;
    transform: rotate(-10deg);
}

.bg-stat:nth-child(4) {
    top: 80%;
    right: 12%;
    transform: rotate(15deg);
}

.bg-stat:nth-child(5) {
    top: 35%;
    left: 55%;
    transform: rotate(-25deg);
}

.bg-stat:nth-child(6) {
    top: 15%;
    right: 30%;
    transform: rotate(12deg);
    font-size: 80px;
}

.bg-stat:nth-child(7) {
    top: 60%;
    left: 35%;
    transform: rotate(-18deg);
    font-size: 100px;
}

.bg-stat:nth-child(8) {
    top: 85%;
    right: 5%;
    transform: rotate(22deg);
}

.bg-stat:nth-child(9) {
    top: 110%;
    left: 5%;
    transform: rotate(-12deg);
    font-size: 90px;
}

/* .bg-stat:nth-child(10) {
    top: 15%;
    right: 40%;
    transform: rotate(18deg);
}

.bg-stat:nth-child(11) {
    top: 155%;
    left: 20%;
    transform: rotate(-20deg);
    font-size: 110px;
}

.bg-stat:nth-child(12) {
    top: 180%;
    right: 8%;
    transform: rotate(15deg);
}

.bg-stat:nth-child(13) {
    top: 205%;
    left: 55%;
    transform: rotate(-10deg);
    font-size: 85px;
}

.bg-stat:nth-child(14) {
    top: 230%;
    right: 25%;
    transform: rotate(25deg);
} */

.bg-circle {
    position: absolute;
    border: 2px solid rgba(131, 210, 171, 0.1);
    border-radius: 50%;
    will-change: transform;
}

/* .bg-circle:nth-child(15) { */
.bg-circle:nth-child(10) {
    width: 300px;
    height: 300px;
    top: 12%;
    right: 2%;
}

.bg-circle:nth-child(11) {
    width: 200px;
    height: 200px;
    top: 42%;
    left: 3%;
}

.bg-circle:nth-child(12) {
    width: 250px;
    height: 250px;
    top: 68%;
    right: 8%;
}

.bg-circle:nth-child(13) {
    width: 150px;
    height: 150px;
    top: 22%;
    left: 65%;
}

.bg-circle:nth-child(14) {
    width: 180px;
    height: 180px;
    top: 48%;
    right: 35%;
}

.bg-circle:nth-child(15) {
    width: 220px;
    height: 220px;
    top: 100%;
    left: 8%;
}

.bg-circle:nth-child(16) {
    width: 160px;
    height: 160px;
    top: 125%;
    right: 5%;
}

.bg-circle:nth-child(17) {
    width: 280px;
    height: 280px;
    top: 145%;
    left: 2%;
}

.bg-circle:nth-child(18) {
    width: 190px;
    height: 190px;
    top: 165%;
    right: 30%;
}

.bg-circle:nth-child(19) {
    width: 210px;
    height: 210px;
    top: 190%;
    left: 50%;
}

.bg-circle:nth-child(20) {
    width: 170px;
    height: 170px;
    top: 215%;
    right: 12%;
}

.bg-circle:nth-child(21) {
    width: 240px;
    height: 240px;
    top: 240%;
    left: 15%;
}

.bg-chart {
    position: absolute;
    opacity: 0.4;
    will-change: transform;
}

.bg-bar-chart {
    width: 200px;
    height: 120px;
    top: 29%;
    left: 12%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 8px;
    padding: 10px;
    transform: rotate(-10deg);
}

.bg-bar-chart .bar {
    flex: 1;
    background: linear-gradient(to top, rgba(131, 210, 171, 0.2), rgba(131, 210, 171, 0.05));
    border-radius: 4px 4px 0 0;
    min-width: 12px;
}

.bg-line-chart {
    width: 250px;
    height: 150px;
    top: 45%;
    right: 12%;
    transform: rotate(15deg);
}

.bg-line-chart svg {
    width: 100%;
    height: 100%;
}

.bg-pie-chart {
    width: 150px;
    height: 150px;
    top: 12%;
    left: 8%;
    transform: rotate(-20deg);
}

.bg-pie-chart svg {
    width: 100%;
    height: 100%;
}

.bg-bar-chart-2 {
    width: 180px;
    height: 100px;
    top: 147%;
    right: 28%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 6px;
    padding: 8px;
    transform: rotate(12deg);
}

.bg-bar-chart-2 .bar {
    flex: 1;
    background: linear-gradient(to top, rgba(131, 210, 171, 0.18), rgba(131, 210, 171, 0.04));
    border-radius: 3px 3px 0 0;
    min-width: 10px;
}

.bg-bar-chart-3 {
    width: 220px;
    height: 130px;
    top: 95%;
    left: 58%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 7px;
    padding: 10px;
    transform: rotate(-8deg);
}

.bg-bar-chart-3 .bar {
    flex: 1;
    background: linear-gradient(to top, rgba(131, 210, 171, 0.19), rgba(131, 210, 171, 0.05));
    border-radius: 4px 4px 0 0;
    min-width: 11px;
}

.bg-line-chart-2 {
    width: 230px;
    height: 140px;
    top: 118%;
    right: 3%;
    transform: rotate(-12deg);
}

.bg-line-chart-2 svg {
    width: 100%;
    height: 100%;
}

.bg-pie-chart-2 {
    width: 140px;
    height: 140px;
    top: 140%;
    left: 10%;
    transform: rotate(18deg);
}

.bg-pie-chart-2 svg {
    width: 100%;
    height: 100%;
}

.bg-bar-chart-4 {
    width: 190px;
    height: 110px;
    top: 160%;
    right: 38%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 6px;
    padding: 9px;
    transform: rotate(10deg);
}

.bg-bar-chart-4 .bar {
    flex: 1;
    background: linear-gradient(to top, rgba(131, 210, 171, 0.16), rgba(131, 210, 171, 0.03));
    border-radius: 3px 3px 0 0;
    min-width: 10px;
}

.bg-line-chart-3 {
    width: 240px;
    height: 145px;
    top: 175%;
    left: 3%;
    transform: rotate(-15deg);
}

.bg-line-chart-3 svg {
    width: 100%;
    height: 100%;
}

.bg-pie-chart-3 {
    width: 160px;
    height: 160px;
    top: 195%;
    right: 8%;
    transform: rotate(-22deg);
}

.bg-pie-chart-3 svg {
    width: 100%;
    height: 100%;
}

main, footer {
    position: relative;
    z-index: 1;
}

#app_name {
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 700;
    color: black;

}

h1 {
    margin-bottom: 30px;
    font-size: 25px;
}

#email_input, #my_code_input {
    width: 350px;
    height: 35px;
    border-radius: 10px;
    padding: 0 10px;
    font-size: 18px;
    border-color: black;
}

#my_code_input {
    letter-spacing: 15px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#submit_button {
    background-color: black;
    color: white;
    padding: 5px 20px;
    border-radius: 5px;
    font-weight: 700;
}

ul {
    margin-top: 30px;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.social_ul li {
    width: 80px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.social_ul li.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.social_ul li a {
    height: 100%;
    display: flex;
    align-items: center;
}

.social_button {
    width: 40px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.15));
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

.social_ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(131, 210, 171, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.15s ease;
    pointer-events: none;
    border-radius: 50%;
    z-index: -1;
}

.social_ul li:hover::after {
    opacity: 1;
}

.social_ul li:hover {
    transform: scale(1.05) translateY(-4px);
}

.social_button:hover {
    width: 42.5px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

#tiktok_button {
    padding: 3px;
}

#error_text {
    margin-top: 10px;
    margin-bottom: 3px;
    font-size: 11px;
    color: rgb(255, 70, 70);
}

#back {
    position: absolute;
    left: 20px;
    top: 20px;
    text-decoration: none;
    color: black;
    letter-spacing: 1.5px;
    font-weight: 750;
    border: 2.5px solid black;
    border-radius: 5px;
    padding: 2px 5px;
}

#verified_h2 {
    color: white;
    font-size: 20px;
}

#check_logo {
    height: 80px;
}

#ver_code_h2 {
    font-size: 18px;
    margin-bottom: 2.5px;
}

#check_text {
    margin-bottom: 17.5px;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.499);
}

.get_the_app_button {
    height: 45px;
    margin: 0 10px;
    will-change: transform;
    filter: blur(0);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.get_the_app_button.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.get_the_app_button img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

.get_the_app_button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(131, 210, 171, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    border-radius: 50%;
    z-index: -1;
}

.get_the_app_button:hover::after {
    opacity: 1;
}

.get_the_app_button:hover {
    transform: scale(1.02) translateY(-4px);
}

.get_the_app_button:hover img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* section functions */

#section_div {
    margin-top: 80px;
}

.mobile_div {
    flex: 2;
}

.mobile_div_content {
    flex: 3;
}

.mobile_article {
    margin: 0 25%;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile_article.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.mobile_article img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    position: relative;
}

.mobile_article::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(131, 210, 171, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 50%;
    z-index: -1;
}

.mobile_article:hover::after {
    opacity: 1;
}

.mobile_article:hover img {
    transform: scale(1.05) translateY(-10px);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

.mobile_multiple_article {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile_multiple_article.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.mobile_multiple_article img {
    width: 100%;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 18px;
    position: relative;
}

.mobile_multiple_article::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(131, 210, 171, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 50%;
    z-index: -1;
}

.mobile_multiple_article:hover::after {
    opacity: 1;
}

.mobile_multiple_article:hover img {
    transform: scale(1.08) translateY(-8px);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.35));
}

.mobile_article_content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 30px;
    padding-top: 15%;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile_article_content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.multiple_mobile_article_content {
    padding-top: 25%;
}

.mobile_article_content h2 {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile_article_content:hover h2 {
    transform: translateY(-2px);
}

.mobile_article_content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.mobile_article_content ul{
    display: flex;
    flex-direction: column;
    align-items: start;
    transform: translateX(90%);
    width: 50%;
    margin-top: 20px;
}

.mobile_article_content ul li{
    list-style-type: none;
    font-size: 15px;
    text-align: left;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.mobile_article_content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #83d2ab;
    font-weight: bold;
    font-size: 16px;
}

.mobile_article_content ul li:hover {
    color: white;
    transform: translateX(5px);
}

.events_div_photos {
    display: flex;
    flex-direction: row;
    line-height: 100%;
    align-items: stretch;
    justify-content: center;
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.events_div_photos.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.mobile_multiple_article:nth-child(2){
    z-index: 2;
}

.mobile_multiple_article:first-child {
    transform: rotate(-5deg);
    left: 50px;
}

.mobile_multiple_article:last-child {
    transform: rotate(5deg);
    right: 50px;
}

.information_function_type {
    position: relative;
    overflow: hidden;
}

.information_function_type::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(131, 210, 171, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 20px;
}

.information_function_type:hover::before {
    opacity: 1;
}

/* limit graficka vlastnost */
.limit_border {
    max-width: 1100px;
    margin: 0 auto;
}

.premium_section {
    margin: 80px auto 60px;
    padding: 28px 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    color: white;
    text-align: left;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(6px);
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium_section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.premium_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.6), transparent);
    border-radius: 16px 16px 0 0;
}

.premium_header_wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.premium_section.animate-in .premium_header_wrapper {
    opacity: 1;
    transform: translateY(0);
}

.premium_crown {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.4));
    animation: crownGlow 2s ease-in-out infinite;
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

.premium_section.animate-in .premium_crown {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

@keyframes crownGlow {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.4));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.6));
        transform: scale(1.05);
    }
}

.premium_heading {
    font-size: 20px;
    margin-bottom: 0;
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium_subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 20px;
    max-width: 720px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.premium_section.animate-in .premium_subtext {
    opacity: 1;
    transform: translateY(0);
}

.premium_features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.premium_card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 14px 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium_card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.premium_card:nth-child(1).animate-in {
    transition-delay: 0.4s;
}

.premium_card:nth-child(2).animate-in {
    transition-delay: 0.5s;
}

.premium_card:nth-child(3).animate-in {
    transition-delay: 0.6s;
}

.premium_card_icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.15) 100%);
    border: 1.5px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.15);
    transition: all 0.15s ease 0s !important;
    opacity: 0;
    transform: scale(0.8) translateY(10px);
}

.premium_card.animate-in .premium_card_icon {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium_card:nth-child(1).animate-in .premium_card_icon {
    transition-delay: 0.5s;
}

.premium_card:nth-child(2).animate-in .premium_card_icon {
    transition-delay: 0.6s;
}

.premium_card:nth-child(3).animate-in .premium_card_icon {
    transition-delay: 0.7s;
}

.premium_card:not(:hover) .premium_card_icon {
    transition: all 0.15s ease 0s !important;
}

.premium_card:hover .premium_card_icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 165, 0, 0.25) 100%);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.25);
    transform: translateY(-2px) scale(1.05);
    transition: all 0.2s ease 0s !important;
}

.premium_icon_img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.premium_card:hover .premium_icon_img {
    filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.5));
    transform: scale(1.1);
}

.premium_card h4 {
    font-size: 15px;
    margin-bottom: 6px;
    color: white;
}

.premium_card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
}

.get_the_app_div_main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.information_function_type{
    display: flex;
    flex-direction: row;
    color: white;
    margin-top: 20px;
    margin-bottom: 20px;
    flex: 1;
    padding: 40px 20px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.get_the_app_div {
    height: 100%;
}

.get_the_app_div article {
    height: 100%;
    display: flex;
}

.text_where_avaiable {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
}

.get_where_text {
    font-size: 9px;
    color: rgba(0, 0, 0, 0.533);
}
.the_platform_get {
    font-size: 16px;
}

/* footer */

footer {
    padding: 20px 0 10px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
    background-color: #1c422f;
    /* height: 150px; */
    color: black;
}

#main_footer_div {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: start;
}

.footer_part h3 {
    color: white;
    font-size: 14px;
    text-align: left;
    margin-bottom: 10px;
}

.footer_part {
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    color: white;
}

.footer_part div {
    display: flex;
    flex-direction: column;
    margin-left: 2px;
    align-items: start;
    justify-content: center;
}


.footer_part a, p {
    color: white;
    text-decoration: none;
    font-size: 10px;
    margin-bottom: 3px;
}

.app_user_stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 60px;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.app_user_stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(131, 210, 171, 0.5), transparent);
}

.app_user_stats.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.app_user_stats div p {
    color: rgba(20, 34, 31, 0.9);
    font-weight: 500;
}

.app_user_stats div .value {
    font-size: 34px;
    font-weight: 800;
    background-image: linear-gradient(135deg, #ffffff 0%, #f5fff9 25%, #c9f3de 60%, #83d2ab 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 0 10px rgba(131, 210, 171, 0.5),
        0 0 18px rgba(131, 210, 171, 0.35),
        0 4px 12px rgba(0, 0, 0, 0.45);
    letter-spacing: 0.8px;
    transition: all 0.25s ease;
    position: relative;
}

.app_user_stats div .description {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(15, 30, 25, 0.7);
}

.content_stats > div {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.content_stats > div.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.content_stats > div:nth-child(1).animate-in {
    transition-delay: 0.1s;
}

.content_stats > div:nth-child(2).animate-in {
    transition-delay: 0.2s;
}

.content_stats > div:nth-child(3).animate-in {
    transition-delay: 0.3s;
}


.app_user_stats h2 {
    margin-bottom: 32px;
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}

@media(max-width: 450px){
    #email_input, #my_code_input {
        width: 250px;
    }
}

@media(min-width: 700px){
    #root_div_a {
        top: 50px;
        right: 20px;
        transform: none;
        width: 200px;
        border-radius: 10px;
        padding: 0 12.5px;
    }

    #root_div_a div {
        height: 34px;
    }

    #section_div {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: 1fr;
    }

    .content_stats {
        display: grid;
        grid-template-columns: 1fr max-content 1fr;
        gap: 75px;
        width: 100%;
        align-items: center;
    }

    .content_stats > div:first-child {
        justify-self: end;
    }

    .content_stats > div:nth-child(2) {
        justify-self: center;
    }

    .content_stats > div:last-child {
        justify-self: start;
    }

    .content_stats > div {
        position: relative;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .content_stats > div.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .content_stats > div:nth-child(1).animate-in {
        transition-delay: 0.1s;
    }

    .content_stats > div:nth-child(2).animate-in {
        transition-delay: 0.2s;
    }

    .content_stats > div:nth-child(3).animate-in {
        transition-delay: 0.3s;
    }


    .content_stats > div:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 25%;
        right: -37.5px;
        width: 1px;
        height: 50%;
        background-color: rgba(0, 0, 0, 0.2);
    }
}

@media(max-width: 1100px){
    .app_user_stats {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media(max-width: 700px){
    #root_div_a {
        position: fixed !important;
        z-index: 10000 !important;
    }
    
    .bg-stat {
        font-size: 60px !important;
    }
    
    .bg-circle {
        width: 120px !important;
        height: 120px !important;
    }
    
    /* Skryj některé kruhy na mobilu, aby to nebylo nahuštěné */
    .bg-circle:nth-child(13),
    .bg-circle:nth-child(14),
    .bg-circle:nth-child(16),
    .bg-circle:nth-child(18),
    .bg-circle:nth-child(19),
    .bg-circle:nth-child(20),
    .bg-circle:nth-child(21) {
        display: none !important;
    }
    
    /* Uprav pozice zbývajících kruhů pro lepší rozmístění */
    .bg-circle:nth-child(10) {
        width: 140px !important;
        height: 140px !important;
        top: 15% !important;
        right: -5% !important;
    }
    
    .bg-circle:nth-child(11) {
        width: 100px !important;
        height: 100px !important;
        top: 45% !important;
        left: -3% !important;
    }
    
    .bg-circle:nth-child(12) {
        width: 130px !important;
        height: 130px !important;
        top: 70% !important;
        right: -5% !important;
    }
    
    .bg-circle:nth-child(15) {
        width: 110px !important;
        height: 110px !important;
        top: 105% !important;
        left: -3% !important;
    }
    
    .bg-circle:nth-child(17) {
        width: 140px !important;
        height: 140px !important;
        top: 150% !important;
        left: -5% !important;
    }
    
    .bg-chart {
        opacity: 0.2 !important;
    }
    
    .bg-bar-chart,
    .bg-bar-chart-2 {
        width: 120px !important;
        height: 80px !important;
    }
    
    .bg-line-chart {
        width: 150px !important;
        height: 90px !important;
    }
    
    .bg-pie-chart {
        width: 100px !important;
        height: 100px !important;
    }
    
    .bg-bar-chart-3,
    .bg-bar-chart-4 {
        width: 100px !important;
        height: 60px !important;
    }
    
    .bg-line-chart-2,
    .bg-line-chart-3 {
        width: 120px !important;
        height: 70px !important;
    }
    
    .bg-pie-chart-2,
    .bg-pie-chart-3 {
        width: 80px !important;
        height: 80px !important;
    }

    /* Lepší čitelnost statistik na mobilu */
    .app_user_stats div .description {
        color: rgba(255, 255, 255, 0.9);
    }

    .app_user_stats {
        margin-top: 60px;
        margin-bottom: 40px;
        padding: 40px 20px;
        margin-left: 15px;
        margin-right: 15px;
    }

    .app_user_stats div {
        margin-bottom: 20px;
    }

    .information_function_type {
        flex-direction: column;
        margin-bottom: 100px;
        padding: 30px 15px;
    }

    .mobile_div {
        order: 2;
        margin-top: 60px;
    }

    .mobile_div_content {
        order: 1;
    }

    .mobile_article_content {
        padding: 0 20px;
        padding-top: 10%;
    }

    .mobile_article_content h2 {
        font-size: 26px;
    }

    .mobile_article_content p {
        font-size: 14px;
    }

    .mobile_multiple_article:first-child {
        transform: rotate(-5deg);
        left: 20px;
    }

    .mobile_multiple_article:last-child {
        transform: rotate(5deg);
        right: 20px;
    }

    .get_the_app_button {
        margin-bottom: 15px;
        width: 140px;
        height: auto;
    }

    #main_footer_div {
        flex-direction: column;
        align-items: start;
        padding: 0 10%;
    }

    .footer_part {
        margin-bottom: 15px;
    }

    .footer_part:first-child {
        order: 3;
    }

    .get_the_app_div_main {
        flex-direction: column;
    }

    .premium_header_wrapper {
        gap: 10px;
    }

    .premium_crown {
        width: 24px;
        height: 24px;
    }

    .premium_heading {
        font-size: 18px;
    }

    .premium_section {
        padding: 22px 18px;
        margin: 60px 15px 40px;
    }

    .premium_card_icon {
        width: 42px;
        height: 42px;
        margin-bottom: 10px;
    }

    .premium_icon_img {
        width: 24px;
        height: 24px;
    }
}