:root {
    --vr--primary-bg: #fff;
    --vr--accent-bg: #7418a9;
    --vr--heading-color: #1d1d1d;
    --vr--text-color: #1d1d1d;
    --vr--btn-color: #359136;
    --vr--btn-shadow: 0 0 0 4px #3eab4080;
    --vr--header-shadow: 0 1px 3px 0 #0000001a, 0 2px 8px 0 #0000001a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.pink{
    color: #fb35b5;
}
.orange{
    color: #ff710a;
}

.green{
    color: #359136;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: var(--vr--text-color);
    overflow-x: hidden;
    line-height: 1.5;
}

h1,h2,h3{
    line-height: 1.2;
    font-weight: 600!important;
}

.vr--container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}


.vr--header-wrapper {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translate(-50%,0);
    max-width: 1160px;
    width: 98%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    box-shadow: var(--vr--header-shadow);
    transition: all 0.3s ease;
}

.vr--header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.vr--logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--vr--heading-color);
    text-decoration: none;
}

.vr--logo span {
    color: #fb35b5;
}

.vr--nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.vr--nav-link {
    text-decoration: none;
    color: var(--vr--text-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.vr--nav-link:hover {
    color: #7418a9;
}

.vr--nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7418a9;
    transition: width 0.3s;
}

.vr--nav-link:hover:after {
    width: 100%;
}

.vr--btn-primary {
    display: inline-block;
    background: var(--vr--btn-color);
    color: white;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--vr--btn-shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vr--btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(62, 171, 64, 0.4);
}

.vr--mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


.vr--hero-section {
    background: linear-gradient(rgba(116, 24, 169, 0.8), rgba(116, 24, 169, 0.8)), url('../images/main.jpg') center top/cover no-repeat;
    color: white;
    padding: 180px 0 100px;
    border-radius: 0 0 130px 130px;
}

.vr--hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.vr--hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.vr--hero-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.vr--hero-subtext {
    font-size: 14px;
    margin-top: 20px;
    opacity: 0.8;
}


.vr--stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px auto;
    max-width: 900px;
}

.vr--stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.vr--stat-number {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 5px;
}

.vr--stat-label{
    font-weight: 300;
    font-size: 15px;
}

.vr--stars {
    color: #FFD700;
    margin-bottom: 10px;
}


.vr--video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.vr--demo-video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    line-height: 0;
}


.vr--about-section {
    padding: 100px 0;
    text-align: center;
}

.vr--about-content {
    max-width: 800px;
    margin: 0 auto 50px;
}

.vr--section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.vr--about-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
}

.vr--feature-content img{
    display: block;
    width: 30px;
    margin-bottom: 16px;
}

.vr--features-chess {
    padding: 100px 0 60px 0;
}

.vr--feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.vr--feature-item:nth-child(even) .vr--feature-image {
    order: 2;
}

.vr--feature-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.vr--feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fb35b5, #0d90ef);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.vr--feature-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.slick-dots{
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: grid-template-columns;
    margin-top: 20px;
}

.slick-dots li{
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.slick-dots li.slick-active{
    background: #ccc;
}

.slick-dots li button{
    display: none;
}

.vr--more-feature.animated{
    text-align: center;
}

.vr--more-feature.animated .vr--feature-title{
    font-size: 22px;
    padding: 0 20px;
    box-sizing: border-box;
}

.vr--cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #f8f9ff, #ffffff);
    border-radius: 40px;
    margin: 40px auto;
    max-width: 1300px;
    width: 98%;
}


.vr--more-features {
    padding: 100px 0;
}

.vr--features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.vr--more-feature img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.vr--more-feature:hover img {
    transform: translateY(-10px);
}


.vr--testimonials {
    padding: 100px 0;
    background: #f8f9ff;
}

.vr--testimonial-slide {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.vr--testimonial-slide .vr--feature-title{
    font-size: 18px;
    font-weight: 600;
}

.vr--testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.vr--testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}


.vr--faq-section {
    padding: 100px 0 60px 0;
}

.vr--faq-list{
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.vr--faq-item {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}



.vr--faq-question {
    padding: 25px 20px;
    background: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vr--faq-answer {
    padding: 15px 20px;
    display: none;
    transition: max-height 0.3s ease;
    background: #f8f9ff;
}

.vr--faq-item.active .vr--faq-answer{
    display: block;
}


.vr--footer {
    border-top: 1px solid #ddd;
    padding: 40px 0 30px;
}

.vr--footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    font-size: 13px;

}

.vr--footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    text-align: center;
}

.vr--footer-links a{
    text-decoration: none;
    color: #111;
}




@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
.vr--mobile-nav{
    display: none;
}


@media (max-width: 992px) {
    .vr--nav-list {
        display: none;
    }

    .vr--mobile-toggle {
        display: block;
    }
    .vr--header-inner{
        height: 65px;
    }
    .vr--hero-section{
        padding-top: 160px;
    }

    .vr--mobile-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: var(--vr--header-shadow);
        display: none;
        border-radius: 20px;
    }

    .vr--mobile-nav.active {
        display: block;
    }

    .vr--mobile-nav-list {
        list-style: none;
    }

    .vr--mobile-nav-link {
        display: block;
        padding: 15px 0;
        text-decoration: none;
        color: var(--vr--text-color);
        font-weight: 500;
        border-bottom: 1px solid #eee;
    }

    .vr--stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vr--features-grid {
        grid-template-columns: 1fr;
    }

    .vr--feature-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }


}

@media (max-width: 768px) {
    .vr--hero-title {
        font-size: 36px;
    }
    .vr--hero-section{
        border-radius: 0 0 30px 30px;
        padding-bottom: 30px;
    }
    

    .vr--stats-grid{
        gap: 12px;
    }

    .vr--section-title {
        font-size: 32px;
    }
    .vr--demo-video{
        height: auto;
    }
}

@media(max-width: 767px){
    .vr--feature-image{
        order: 1;
    }
    .vr--features-chess{
        padding-top: 0px;
        padding-bottom: 0;
    }
    .vr--feature-content{
        order: 2;
    }
    .vr--feature-item{
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
    }
    .vr--feature-item:nth-child(even) .vr--feature-image{
        order: 1;
    }
    .vr--cta-section{
        padding: 50px 0;
    }
    .vr--testimonial-slide{
        padding: 25px;
    }
    .vr--testimonials{
        padding: 60px 0;
    }
    .vr--testimonials .vr--section-title{
        margin-bottom: 20px!important;
    }
    .vr--footer-content {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }
    .vr--footer-links{
        justify-content: flex-start;
    }
    .vr--footer-content{
        gap: 25px;
    }
    .vr--section-title{
        font-size: 30px;
    }
    .vr--hero-text{
        font-size: 16px;
    }
}