@font-face{
    font-family: 'Manrope';
    src: url('/assets/Manrope-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

:root{
    --bg: #0B0D14;
    --bg2: #10141F;
    --text: #FFFFFF;
    --muted: #e5e7ec;
    --muted2: #d8dce4ad;
    --line: #FFFFFF14;

    --purple: #7C3AED;
    --pink: #EC4899;
    --blue: #3B82F6;
    --cyan: #06B6D4;
    --green: #22C55E;

    --shadow: 0 10px 20px #00000021;
    --shadow2: 0 10px 20px #D894CD1A;

    --radius: 24px;
    --radius2: 30px;
    --max: 1120px;
}

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

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Manrope', sans-serif;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at top left, #7C3AED24, transparent 24%),
        radial-gradient(circle at top right, #06B6D41A, transparent 18%),
        linear-gradient(180deg, #0A0C12 0%, #0D1018 44%, #0B0D14 100%);
}

body.videochat-open,
body.rules-modal-open{
    overflow: hidden;
}

a{
    color: inherit;
    text-decoration: none;
}

img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smallImage {
    max-width: 300px !important;
}

h4 {
    margin-top: 15px;
}

button{
    font: inherit;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
    text-align: left;
    margin-top: 15px;
}

ol {
    text-align: left;
    margin-top: 15px;
    margin-left: 17px;
}

li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
    padding-bottom: 10px;
}

li:last-child {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
    padding-bottom: 0;
}

.container{
    width: min(100% - 40px, var(--max));
    margin: 0 auto;
}

.site-header{
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: linear-gradient(90deg, #364b6e99 0%, #7A4C7F73 65%, #2C698173 85%, #838ea380 125%);
    border-bottom: 1px solid #B6D7FF42;
    box-shadow: 0 6px 24px #0000004F;
}

.header-inner{
    position: relative;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.logo-img{
    width: 68px;
    height: 68px;
    object-fit: contain;
    flex: 0 0 42px;
    display: block;
}

.logo-text{
    display: inline-flex;
    align-items: baseline;
    font-size: 1.75rem;
    letter-spacing: -0.03em;
    line-height: 1;
    text-transform: uppercase;
}

.logo-flick{
    color: #FFFFFF;
    font-weight: 800;
}

.logo-chat{
    color: #AEB8C8;
    font-weight: 200;
    padding-left: 5px;
}

.main-nav{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 1;
}

.main-nav a{
    position: relative;
    color: #E2E8F4;
    font-size: 0.98rem;
    transition: color .25s ease;
    white-space: nowrap;
    padding: 8px 0;
}

.main-nav a::after{
    content: "";
    position: absolute;
    left: -2px;
    bottom: -2px;
    width: calc(100% + 4px);
    height: 2px;
    border-radius: 999px;
    background: #FFFFFF;
    transform: scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
}

.main-nav a:hover{
    color: #FFFFFF;
}

.main-nav a:hover::after{
    transform: scaleX(1);
    opacity: 1;
}

.header-right{
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 3;
}

.online-box{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.05;
}

.online-top{
    display: flex;
    align-items: center;
    gap: 10px;
}

.online-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 #22C55E73;
    animation: onlinePulse 1.8s ease-out infinite;
    flex: 0 0 12px;
}

.online-box strong{
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF;
}

.online-box span{
    font-size: 0.76rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.adZoneBcontent {
    min-height: 50px;
}

@keyframes onlinePulse{
    0%{
        transform: scale(0.95);
        box-shadow: 0 0 0 0 #22C55E73;
    }
    70%{
        transform: scale(1.15);
        box-shadow: 0 0 0 10px #22C55E00;
    }
    100%{
        transform: scale(0.95);
        box-shadow: 0 0 0 0 #22C55E00;
    }
}

.menu-toggle{
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 14px;
    background: #FFFFFF0D;
    border: 1px solid #FFFFFF14;
}

.menu-toggle span{
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #FFFFFF;
    transition: .22s ease;
}

.menu-toggle.active span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity: 0;
}

.menu-toggle.active span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu{
    display: none;
    border-top: 1px solid #FFFFFF0D;
    background: #0A0C12F0;
}

.mobile-menu.active{
    display: block;
}

.mobile-menu-inner{
    width: min(100% - 40px, var(--max));
    margin: 0 auto;
    padding: 18px 0 22px;
}

.mobile-nav{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-nav a{
    color: #FFFFFF;
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid #FFFFFF0F;
}

.mobile-lang{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.mobile-lang a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: #FFFFFF0F;
    border: 1px solid #FFFFFF14;
    font-weight: 700;
}

.hero{
    position: relative;
    overflow: hidden;
    padding: 45px 10px 60px;
}

.hero-glow{
    position: fixed;
    border-radius: 999px;
    filter: blur(80px);
    opacity: .75;
    pointer-events: none;
}

.glow-one{
    width: 320px;
    height: 320px;
    left: -100px;
    top: 70px;
    background: #7C3AED4D;
}

.glow-two{
    width: 340px;
    height: 340px;
    right: -90px;
    top: 40px;
    background: #06B6D438;
}

.hero-grid{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.hero-copy h1{
    font-size: clamp(2.7rem, 3.5vw, 4.8rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    max-width: 620px;
}

.hero-text{
    margin-top: 20px;
    max-width: 560px;
    font-size: 1.08rem;
    line-height: 1.4;
    color: var(--muted);
}

.hero-cta{
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 76px;
    padding: 0 36px;
    border-radius: 20px;
    background: linear-gradient(0deg, #26B362 25%, #51EF93 100%);
    color: #FFFFFF;
    font-size: 1.75rem;
    text-transform: uppercase;
    text-shadow: 0 1px 2px #00000099;
    font-weight: 800;
    letter-spacing: -0.01em;
    box-shadow:
        0 20px 40px #7C3AED4D,
        0 8px 18px #00000038;
    transition: .22s ease;
}

.hero-cta:hover{
    transform: translateY(-2px) scale(1.01);
}

.hero-stats{
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 28px;
    margin-top: 34px;
    align-items: start;
}

.stat-item strong{
    display: block;
    font-size: 1.55rem;
    margin-bottom: 5px;
    color: #BFFFE3;
}

.stat-item span{
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

.hero-media{
    position: relative;
}

.photo-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.photo-card{
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    min-height: 280px;
    background: linear-gradient(135deg, #7C3AED29, #3B82F61F, #EC489929);
    box-shadow: var(--shadow);
    transition: transform .28s ease, box-shadow .28s ease;
    cursor: pointer;
}

.photo-card img{
    filter: brightness(.96) saturate(.98);
    opacity: .96;
    transform: scale(1);
    transition: transform .45s ease, filter .35s ease, opacity .35s ease;
    will-change: transform, filter, opacity;
}

.photo-card::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(180deg, #FFFFFF08 0%, #FFFFFF00 38%, #00000024 100%);
    opacity: .5;
    transition: opacity .35s ease;
}

.photo-card::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
    box-shadow:
        inset 0 0 0 1px #FFFFFF14,
        inset 0 -22px 28px #00000024;
    transition: box-shadow .35s ease;
}

.photo-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 20px 40px #0000004D;
}

.photo-card:hover img{
    transform: scale(1.04);
    opacity: 1;
    filter: brightness(1.05) saturate(1.04);
}

.photo-card:hover::before{
    opacity: .32;
}

.photo-card:hover::after{
    box-shadow:
        inset 0 0 0 1px #FFFFFF1F,
        inset 0 -22px 28px #0000001F,
        0 0 0 1px #74D8FF33,
        0 0 26px #7C3AED40;
}

.photo-card:focus-visible{
    outline: 2px solid #FFFFFF;
    outline-offset: 4px;
}

.photo-card.tall{
    min-height: 300px;
}

.live-badge,
.chat-badge{
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 35px;
    padding: 0 15px;
    border-radius: 30px;
    background: #000000CC;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 12px 24px #0000003D;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.photo-card:hover .live-badge,
.photo-card:hover .chat-badge{
    transform: translateY(-2px);
    box-shadow: 0 14px 26px #00000052;
    background: #000000E0;
}

.live-badge i{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px #22C55ECC;
    display: block;
}

.chat-badge i{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #EF4444;
    box-shadow: 0 0 10px #EF4444CC;
    display: block;
}

.features{
    padding: 12px 0 30px;
}

.features-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-box{
    padding: 26px;
    border-radius: 28px;
    background: linear-gradient(180deg, #82687F4F 50%, #FF8DE21C 100%);
    border-bottom: 1px solid #FFFFFF61;
    box-shadow: var(--shadow2);
}

.feature-head{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.feature-icon{
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    background: transparent;
    flex: 0 0 auto;
    line-height: 1;
}

.feature-box h2{
    font-size: 1.22rem;
    line-height: 1.15;
}

.feature-box p{
    color: var(--muted);
    line-height: 1.75;
}

.info-sections{
    padding: 28px 0 60px;
}

.info-sections .container{
    display: flex;
    flex-direction: column;
    gap: 58px;
}

.info-block{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.info-block.reverse .info-media{
    order: 2;
}

.info-block.reverse .info-content{
    order: 1;
}

.info-media{
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-media img{
    width: 100%;
    height: auto;
    object-fit: contain;
}

.info-content h2{
    font-size: clamp(2rem, 3vw, 3.35rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    max-width: 620px;
}

.info-content p{
    max-width: 620px;
    font-size: 1.03rem;
    line-height: 1.7;
    color: var(--muted);
}

.faq-section{
    padding: 0 0 30px;
}

.faq-heading{
    margin-bottom: 50px;
    text-align: center;
}

.faq-heading h2{
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.faq-heading p{
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-list{
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0 auto;
    align-items: start;
}

.faq-item{
    border-radius: 22px;
    background: linear-gradient(180deg, #FFFFFF0D 0%, #FFFFFF06 100%);
    border: 1px solid #FFFFFF12;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.faq-item:hover{
    transform: translateY(-2px);
    border-color: #FFFFFF22;
    box-shadow: 0 14px 28px #0000001F;
}

.faq-item.active{
    border-color: #B77DFF4D;
    box-shadow:
        0 16px 34px #00000024,
        0 0 0 1px #7C3AED26;
}

.faq-question{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    padding: 22px 22px 20px;
}

.faq-question h3{
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 800;
    color: #FFFFFF;
}

.faq-icon{
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #FFFFFF;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: transform .25s ease, opacity .25s ease;
}

.faq-icon::before{
    width: 16px;
    height: 2px;
}

.faq-icon::after{
    width: 2px;
    height: 16px;
}

.faq-item.active .faq-icon::after{
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(.2);
}

.faq-answer{
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .28s ease;
}

.faq-answer p{
    overflow: hidden;
    padding: 0 22px 0;
    color: var(--muted);
    line-height: 1.75;
}

.faq-item.active .faq-answer{
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p{
    padding: 0 22px 22px;
}

.site-footer{
    margin-top: 10px;
    padding: 35px 0 30px;
    background: linear-gradient(180deg, #FFFFFF08 0%, #FFFFFF04 100%);
    border-top: 1px solid #FFFFFF10;
}

.footer-top{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #FFFFFF12;
}

.footer-brand{
    max-width: 640px;
}

.footer-logo{
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.footer-text{
    max-width: 620px;
    font-size: 0.9rem;
    color: var(--muted2);
    line-height: 1.75;
}

.footer-socials{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.footer-social-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #FFFFFF0D;
    border: 1px solid #FFFFFF14;
    color: #E8EDF7;
    transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.footer-social-link:hover{
    transform: translateY(-2px);
    background: #FFFFFF14;
    border-color: #FFFFFF22;
    color: #FFFFFF;
}

.footer-social-link svg{
    width: 22px;
    height: 22px;
    fill: currentColor;
    display: block;
}

.footer-links-wrap{
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 24px 48px;
    justify-content: end;
    justify-items: center;
}

.footer-links-col{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col a{
    color: var(--muted2);
    font-size: 0.9rem;
    transition: color .22s ease, transform .22s ease;
}

.footer-links-col a:hover{
    color: #FFFFFF;
    transform: translateX(3px);
}

.footer-alternatives{
    padding: 26px 0 28px;
    border-bottom: 1px solid #FFFFFF12;
}

.footer-alternatives h2{
    font-size: 1.18rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.footer-alternatives-list{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-alternative-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 14px;
    background: #FFFFFF0D;
    border: 1px solid #FFFFFF14;
    color: #F2F5FA;
    font-size: 0.92rem;
    font-weight: 650;
    transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.footer-alternative-link:hover{
    transform: translateY(-2px);
    background: #FFFFFF14;
    border-color: #FFFFFF22;
    color: #FFFFFF;
}

.footer-bottom{
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-language{
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-language-label{
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--muted2);
}

.footer-language-select{
    position: relative;
}

.footer-language-select select{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 200px;
    height: 40px;
    padding: 0 40px 0 20px;
    border-radius: 10px;
    border: 1px solid #FFFFFF14;
    background: #FFFFFF10;
    color: #FFFFFF;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 400;
    outline: none;
    cursor: pointer;
}

.footer-language-select::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 8px;
    height: 8px;
    border-right: 3px solid #FFFFFF;
    border-bottom: 3px solid #FFFFFF;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
    opacity: .9;
}

.footer-copy{
    color: var(--muted2);
    font-size: 0.9rem;
    font-weight: 300;
    text-align: right;
}

.rules-overlay{
    position: fixed;
    inset: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.rules-overlay.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.rules-backdrop{
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, #7C3AED24, transparent 34%),
        #02040BD9;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.rules-modal{
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(100% - 34px, 520px);
    max-height: calc(100vh - 34px);
    transform: translate(-50%, -50%) scale(.96);
    border-radius: 26px;
    background: radial-gradient(circle at top left, #c237ff2e, transparent 34%), radial-gradient(circle at bottom right, #06B6D41A, transparent 34%), linear-gradient(180deg, #171326F7 0%, #090B14FA 100%);
    border: 1px solid #ac9fb88f;
    box-shadow: 0 0 0 1px #FFFFFF0D inset, 0 0 35px #000000, 0 20px 60px #64808054;
    overflow: hidden;
    transition: transform .28s ease;
}

.rules-overlay.active .rules-modal{
    transform: translate(-50%, -50%) scale(1);
}

.rules-modal::before{
    content: "";
    position: absolute;
    inset: -120px -120px auto auto;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: #55d8f766;
    filter: blur(70px);
    pointer-events: none;
}

.rules-modal::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow:
        inset 0 1px 0 #FFFFFF1A,
        inset 0 -1px 0 #00000066;
}

.rules-close{
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: #FFFFFF08;
    border: 1px solid #FFFFFF12;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.rules-close:hover{
    transform: scale(1.05);
    background: #FFFFFF12;
    border-color: #FFFFFF24;
}

.rules-close span{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #FFFFFF;
}

.rules-close span:nth-child(1){
    transform: translate(-50%, -50%) rotate(45deg);
}

.rules-close span:nth-child(2){
    transform: translate(-50%, -50%) rotate(-45deg);
}

.rules-modal-inner{
    position: relative;
    z-index: 2;
    padding: 48px 28px 30px;
    text-align: center;
}

.rules-modal h2{
    font-size: clamp(1.85rem, 3vw, 2.15rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.rules-modal p{
    color: var(--muted);
}

#rulesText{
    max-width: 360px;
    margin: 0 auto 24px;
    font-size: 1rem;
    line-height: 1.55;
}

.rules-list{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.rules-item{
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, #FFFFFF0F 0%, #FFFFFF08 100%);
    border: 1px solid #FFFFFF14;
    box-shadow: inset 0 1px 0 #FFFFFF0D;
}

.rules-item span:last-child{
    color: #FFFFFF;
    font-size: 0.95rem;
    line-height: 1.35;
    font-weight: 500;
}

.rules-icon{
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #B78CFF;
}

.rules-icon-check::before{
    content: "";
    width: 28px;
    height: 30px;
    border: 1px solid #bba6e5;
    border-radius: 10px;
    transform: perspective(20px) rotateX(4deg);
    box-shadow: 0 0 10px #ebdfff4d;
}

.rules-icon-check::after{
    content: "";
    position: absolute;
    width: 10px;
    height: 5px;
    border-left: 3px solid #BFFFE3;
    border-bottom: 3px solid #BFFFE3;
    transform: rotate(-45deg);
    top: 12px;
    left: 11px;
}

.rules-agree-text{
    font-size: 0.92rem;
    line-height: 1.5;
    color: #D9D2FF;
    margin-bottom: 16px;
}

.rules-start-btn{
    width: 100%;
    min-height: 62px;
    border-radius: 16px;
    background: linear-gradient(0deg, #26B362 25%, #51EF93 100%);
    color: #FFFFFF;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-shadow: 0 1px 2px #00000099;
    font-weight: 900;
    letter-spacing: -0.01em;
    box-shadow:
        0 18px 36px #16A34A33,
        0 8px 18px #00000038;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.rules-start-btn:hover{
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow:
        0 24px 44px #16A34A40,
        0 10px 22px #00000045;
}

.real-videochat-trigger{
    position: fixed;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.videochat-overlay{
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.videochat-overlay.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.videochat-backdrop{
    position: absolute;
    inset: 0;
    background: #030507E8;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.videochat-modal{
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #05070D;
    overflow: hidden;
}

.videochat-app{
    width: 100%;
    height: 100%;
}

.videochat-app > *{
    width: 100%;
    height: 100%;
}

.videochat-app iframe{
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    display: block !important;
}

.videochat-app #coomeet_container{
    width: 100% !important;
    height: 100% !important;
}

.videochat-close{
    position: absolute;
    top: -1px;
    right: 150px;
    width: 56px;
    height: 56px;
    border-radius: 0 0 20px 20px;
    background: #0B0F18D9;
    border: 1px solid #FFFFFF21;
    box-shadow: 0 2px 10px #00000033;
    z-index: 50;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.videochat-close:hover{
    transform: scale(1.06);
    background: #111827F0;
    border-color: #FFFFFF40;
}

.videochat-close span{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #FFFFFF;
}

.videochat-close span:nth-child(1){
    transform: translate(-50%, -50%) rotate(45deg);
}

.videochat-close span:nth-child(2){
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 1080px){
    .hero-grid{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-copy{
        max-width: 760px;
        text-align: center;
        margin: 0 auto;
    }

    .hero-copy h1{
        max-width: none;
        margin: 0 auto;
    }

    .hero-text{
        margin: 20px auto 0;
        max-width: 640px;
    }

    .hero-cta{
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats{
        justify-content: center;
        grid-template-columns: repeat(3, auto);
    }

    .info-block{
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .info-block.reverse .info-media,
    .info-block.reverse .info-content{
        order: initial;
    }

    .info-content{
        text-align: center;
    }

    .info-content h2,
    .info-content p{
        max-width: none;
    }
}

@media (max-width: 980px){
    .footer-top{
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-links-wrap{
        justify-content: start;
        justify-items: start;
    }
}

@media (max-width: 860px){
    .main-nav{
        display: none;
    }

    .menu-toggle{
        display: flex;
    }

    .hero-stats{
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .features-grid{
        grid-template-columns: 1fr;
    }

    .photo-card{
        min-height: 220px;
    }

    .feature-head{
        align-items: center;
    }
}

@media (max-width: 700px){
    .container,
    .mobile-menu-inner{
        width: min(100% - 22px, var(--max));
    }

    .header-inner{
        min-height: 74px;
    }

    .logo{
        gap: 10px;
    }

    .logo-img{
        width: 55px;
        height: 55px;
        flex: 0 0 38px;
    }

    .logo-text{
        font-size: 1.4rem;
    }

    .online-box{
        align-items: flex-end;
    }

    .online-top{
        gap: 8px;
    }

    .online-dot{
        width: 10px;
        height: 10px;
        flex: 0 0 10px;
    }

    .online-box strong{
        font-size: 1.1rem;
    }

    .online-box span{
        font-size: 0.64rem;
        letter-spacing: 0.06em;
    }

    .hero{
        padding: 35px 10px;
    }

    .hero-copy{
        text-align: center;
    }

    .hero-copy h1{
        font-size: 2.4rem;
        max-width: none;
        margin: 0 auto;
    }

    .hero-text{
        margin: 20px auto 0;
        max-width: 560px;
    }

    .hero-cta{
        width: 100%;
        min-width: 100%;
        min-height: 70px;
        font-size: 1.3rem !important;
    }

    .hero-stats{
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stat-item strong{
        font-size: 1.15rem;
    }

    .stat-item span{
        font-size: 0.78rem;
    }

    .photo-grid{
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        opacity: 0;
        transition: opacity 0.15s ease;
    }
    
    .photo-grid.random-ready{
        opacity: 1;
    }

    .photo-card{
        min-height: 150px;
        border-radius: 14px;
    }

    .photo-card.tall{
        min-height: 150px;
    }

    .photo-card:hover{
        transform: translateY(-2px);
    }

    .photo-card:hover img{
        transform: scale(1.02);
        opacity: 1;
        filter: brightness(1.05) saturate(1.04);
    }

    .live-badge,
    .chat-badge{
        left: 8px;
        bottom: 8px;
        height: 32px;
        padding: 0 10px;
        gap: 7px;
        font-size: 0.76rem;
    }

    .live-badge i,
    .chat-badge i{
        width: 8px;
        height: 8px;
    }

    .feature-box{
        padding: 22px;
    }

    .feature-head{
        gap: 10px;
        margin-bottom: 6px;
    }

    .feature-icon{
        font-size: 1.2rem;
    }

    .feature-box h2{
        font-size: 1.08rem;
    }

    .info-sections{
        padding-top: 18px;
        padding-bottom: 70px;
    }

    .info-sections .container{
        gap: 34px;
    }

    .info-content{
        text-align: center;
    }

    .info-content h2{
        font-size: 2rem;
        margin-bottom: 14px;
    }

    .info-content p{
        font-size: 0.98rem;
    }

    .faq-section{
        padding-bottom: 30px;
    }

    .faq-heading{
        margin-bottom: 35px;
    }

    .faq-heading h2{
        font-size: 1.9rem;
    }

    .faq-heading p{
        font-size: 0.95rem;
    }

    .faq-question{
        padding: 18px 16px;
    }

    .faq-question h3{
        font-size: 0.98rem;
    }

    .faq-item.active .faq-answer p{
        padding: 0 16px 18px;
    }

    .faq-answer p{
        padding: 0 16px 0;
    }

    .site-footer{
        padding: 36px 0 26px;
        text-align: center;
    }

    .footer-brand{
        max-width: 100%;
    }

    .footer-text{
        font-size: 1rem;
        line-height: 1.65;
        max-width: 100%;
    }

    .footer-socials{
        justify-content: center;
    }

    .footer-links-wrap{
        grid-template-columns: 1fr;
        gap: 18px;
        justify-items: center;
    }

    .footer-links-col{
        gap: 16px;
        align-items: center;
    }

    .footer-links-col a{
        font-size: 1rem;
    }

    .footer-alternatives{
        padding: 24px 0 24px;
        text-align: center;
    }

    .footer-alternatives h2{
        font-size: 1.15rem;
        margin-bottom: 14px;
    }

    .footer-alternatives-list{
        justify-content: center;
        gap: 10px;
    }

    .footer-alternative-link{
        min-height: 42px;
        padding: 0 16px;
        font-size: 0.9rem;
    }

    .footer-bottom{
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
    }

    .footer-language{
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 12px;
        flex-direction: column;
    }

    .footer-language-select{
        width: 100%;
    }

    .footer-language-select select{
        width: 100%;
        min-width: 100%;
        height: 56px;
        border-radius: 18px;
    }

    .footer-copy{
        text-align: center;
    }

    .rules-modal{
        width: min(100% - 24px, 500px);
        border-radius: 24px;
    }

    .rules-modal-inner{
        padding: 44px 18px 22px;
    }

    .rules-close{
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
    }

    .rules-modal h2{
        font-size: 1.75rem;
    }

    #rulesText{
        font-size: 0.94rem;
        margin-bottom: 18px;
    }

    .rules-item{
        min-height: 58px;
        gap: 12px;
        padding: 12px;
        border-radius: 13px;
    }

    .rules-item span:last-child{
        font-size: 0.9rem;
    }

    .rules-icon{
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .rules-start-btn{
        min-height: 58px;
        font-size: 1.03rem;
        border-radius: 15px;
    }

    .videochat-close{
        top: -1px;
        right: 125px;
        width: 50px;
        height: 50px;
    }

    .videochat-close span{
        width: 20px;
    }

    li {
        font-size: 1rem;
        line-height: 1.6;
    }

    .rules-icon-check::after{
        top: 11px;
        left: 9px;
    }
}

@media (max-width: 480px){
    .photo-grid{
        grid-template-columns: repeat(3, 1fr);
        gap: 7px;
    }

    .photo-card,
    .photo-card.tall{
        min-height: 120px;
        border-radius: 12px;
    }

    .hero-stats{
        gap: 10px;
    }

    .stat-item strong{
        font-size: 1.25rem;
    }

    .stat-item span{
        font-size: 0.8rem;
    }

    .live-badge,
    .chat-badge{
        left: 6px;
        bottom: 6px;
        height: 28px;
        padding: 0 8px;
        font-size: 0.68rem;
    }

    .online-box span{
        max-width: 82px;
        text-align: right;
        line-height: 1.2;
    }

    .info-content h2{
        font-size: 1.7rem;
    }

    .info-content p{
        font-size: 0.94rem;
        line-height: 1.65;
    }

    .faq-heading h2{
        font-size: 1.65rem;
    }

    .faq-question h3{
        font-size: 0.94rem;
    }

    .faq-answer p{
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .footer-logo{
        font-size: 1.5rem;
    }

    .footer-text{
        font-size: 0.95rem;
    }

    .footer-social-link{
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .footer-social-link svg{
        width: 20px;
        height: 20px;
    }

    .footer-alternatives-list{
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .footer-alternative-link{
        width: 100%;
        min-height: 48px;
        border-radius: 15px;
    }

    .footer-language-select select{
        font-size: 0.95rem;
        padding: 0 52px 0 18px;
    }

    .footer-copy{
        font-size: 0.95rem;
    }

    .rules-modal{
        width: min(100% - 18px, 460px);
        max-height: calc(100vh - 18px);
        border-radius: 22px;
    }

    .rules-modal-inner{
        padding: 42px 14px 18px;
    }

    .rules-modal h2{
        font-size: 1.55rem;
        margin-bottom: 10px;
    }

    #rulesText{
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .rules-list{
        gap: 8px;
        margin-bottom: 16px;
    }

    .rules-item{
        min-height: 54px;
    }

    .rules-item span:last-child{
        font-size: 0.84rem;
        line-height: 1.3;
    }

    .rules-agree-text{
        font-size: 0.84rem;
        margin-bottom: 13px;
    }

    .rules-start-btn{
        min-height: 54px;
        font-size: 0.95rem;
    }

    .videochat-close{
        top: -1px;
        right: 125px;
        width: 46px;
        height: 46px;
    }

    .videochat-close span{
        width: 18px;
    }
}