* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    list-style: none;
    scroll-behavior: smooth;
}

:root[data-theme="dark"] {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
}

:root[data-theme="light"] {
    --bg-primary: #FFF8F0;
    --bg-secondary: #FFEDE0;
    --text-primary: #000000;
    --text-secondary: rgba(0, 0, 0, 0.7);
    --text-tertiary: rgba(0, 0, 0, 0.5);
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

main {
    padding: 150px 5vw 0 5vw;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
}

.main-sect,
.pluses,
.gallery,
.reviews,
.pricing,
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.main-sect {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 60px 20px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--main-color);
    border: 1px solid var(--primary-light);
    border-radius: 20px;
    color: white;
    font-family: 'medium', sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
}

.hero-badge i {
    font-size: 16px;
}

.hero-title {
    color: var(--text-primary, white);
    font-family: 'semi', sans-serif;
    font-size: 56px;
    font-weight: normal;
    line-height: 1.2;
    margin: 0;
    transition: color 0.3s ease;
}

.hero-description {
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    font-family: 'medium', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0;
    transition: color 0.3s ease;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'medium', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid;
}

.hero-btn-primary {
    background: var(--main-color);
    border-color: var(--primary-light);
    color: white;
}

.hero-btn-primary:hover {
    background: var(--primary-dark);
}

.hero-btn-secondary {
    background: rgba(16, 16, 16, 0.85);
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.hero-btn-secondary:hover {
    background: rgba(16, 16, 16, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
}

.social .button {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    font-size: 18px;
    background: var(--button-back);
    color: rgb(147, 147, 147);
    outline: none;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: 0.15s ease-in-out;
}

.social .button:hover {
    color: var(--text-color);
    background: var(--main-color);
}

.social .button .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.social .button img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.social .button i {
    font-size: 22px;
}

.social {
    display: flex;
    gap: 12px;
}

/* ????? */

.pluses {
    padding: 100px 0px;
    text-align: center;
    position: relative;
    /* max-width inherited from parent group selector (1200px) */
    background: transparent;
}

.pluses .text h1,
.gallery .text h1,
.reviews .text h1 {
    color: var(--text-primary, #ffffff);
    font-family: 'semi';
    font-size: 30px;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

:root[data-theme="light"] .pluses .text h1,
:root[data-theme="light"] .gallery .text h1,
:root[data-theme="light"] .reviews .text h1 {
    color: var(--text-primary, #000000);
}

.pluses .boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: linear-gradient(180deg, rgba(26, 26, 30, 0.7) 0%, rgba(15, 15, 20, 0.5) 100%);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(var(--main-color-rgb), 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

:root[data-theme="light"] .feature-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 248, 240, 0.8) 100%);
    border: 1px solid rgba(var(--main-color-rgb), 0.3);
    box-shadow: 0 10px 30px -10px rgba(var(--main-color-rgb), 0.15);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--main-color-rgb), 0.5);
    box-shadow: 0 20px 40px -5px var(--card-border);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-graphic {
    position: relative;
    height: 280px;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px;
}

.optimization-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.speed-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    border-radius: 50%;
}

.speed-particles span {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--main-color), transparent);
    opacity: 0;
    animation: speedStreak 1.5s infinite linear;
}

/* Random positioning for particles */
.speed-particles span:nth-child(1) {
    left: 20%;
    height: 40px;
    animation-delay: 0s;
    top: -40px;
}

.speed-particles span:nth-child(2) {
    left: 40%;
    height: 60px;
    animation-delay: 0.3s;
    top: -60px;
}

.speed-particles span:nth-child(3) {
    left: 60%;
    height: 30px;
    animation-delay: 0.7s;
    top: -30px;
}

.speed-particles span:nth-child(4) {
    left: 80%;
    height: 50px;
    animation-delay: 0.1s;
    top: -50px;
}

.speed-particles span:nth-child(5) {
    left: 30%;
    height: 35px;
    animation-delay: 0.9s;
    top: -35px;
}

.speed-particles span:nth-child(6) {
    left: 70%;
    height: 45px;
    animation-delay: 0.5s;
    top: -45px;
}

@keyframes speedStreak {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translateY(250px);
        opacity: 0;
    }
}

.circle-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.3) 0%, rgba(var(--main-color-rgb), 0.1) 100%);
    border: 2px solid rgba(var(--main-color-rgb), 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow:
        0 0 20px rgba(var(--main-color-rgb), 0.4),
        0 0 40px var(--card-border),
        inset 0 0 20px rgba(var(--main-color-rgb), 0.1);
    animation: rocketGlow 2s infinite ease-in-out;
}

/* Rocket trail particles */
.circle-inner::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(var(--main-color-rgb), 0.6), transparent);
    border-radius: 50%;
    filter: blur(8px);
    animation: trail 1.5s infinite;
}

.circle-inner::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(var(--main-color-rgb), 0.5), transparent 70%);
    animation: trailPulse 1s infinite;
}

@keyframes rocketGlow {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(var(--main-color-rgb), 0.4),
            0 0 40px var(--card-border);
    }

    50% {
        box-shadow:
            0 0 30px rgba(var(--main-color-rgb), 0.6),
            0 0 60px rgba(var(--main-color-rgb), 0.3);
    }
}

@keyframes trail {

    0%,
    100% {
        opacity: 0.3;
        height: 30px;
    }

    50% {
        opacity: 0.6;
        height: 50px;
    }
}

@keyframes trailPulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateX(-50%) scale(1.3);
        opacity: 0.8;
    }
}

.circle-inner i {
    font-size: 48px;
    color: var(--main-color);
}

.circle-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 2px solid var(--card-border);
    border-radius: 50%;
    animation: ring-rotate 20s linear infinite;
}

.ring-1 {
    width: 120px;
    height: 120px;
}

.ring-2 {
    width: 150px;
    height: 150px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.ring-3 {
    width: 180px;
    height: 180px;
    animation-duration: 30s;
}

.circle-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--main-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
}

.dot-1 {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-90px);
}

.dot-2 {
    transform: translate(-50%, -50%) rotate(120deg) translateY(-90px);
}

.dot-3 {
    transform: translate(-50%, -50%) rotate(240deg) translateY(-90px);
}

.binary-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(var(--main-color-rgb), 0.05) 2px,
            rgba(var(--main-color-rgb), 0.05) 4px);
    opacity: 0.3;
    z-index: 0;
}

.visualization-graphic {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.minecraft-figure {
    position: relative;
    width: 120px;
    height: 160px;
    margin: 0 auto;
}

.figure-head {
    width: 40px;
    height: 40px;
    background: rgba(var(--main-color-rgb), 0.4);
    border: 2px solid var(--main-color);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.figure-body {
    width: 40px;
    height: 60px;
    background: rgba(var(--main-color-rgb), 0.4);
    border: 2px solid var(--main-color);
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.figure-arm {
    width: 18px;
    /* Wider */
    height: 50px;
    /* Longer */
    background: rgba(var(--main-color-rgb), 0.4);
    border: 2px solid var(--main-color);
    position: absolute;
    top: 40px;
    /* Shoulders */
}

.arm-left {
    left: 22px;
    /* Close to body */
    transform-origin: top right;
    /* Pivot from shoulder */
    transform: rotate(20deg);
    /* Outwards */
}

.arm-right {
    right: 22px;
    /* Close to body */
    transform-origin: top left;
    /* Pivot from shoulder */
    transform: rotate(-20deg);
    /* Outwards */
}

.figure-leg {
    width: 20px;
    /* Wider */
    height: 55px;
    /* Longer */
    background: rgba(var(--main-color-rgb), 0.4);
    border: 2px solid var(--main-color);
    position: absolute;
    top: 100px;
}

.leg-left {
    left: 40px;
    /* Under body */
}

.leg-right {
    right: 40px;
    /* Under body */
}

.figure-heart {
    position: absolute;
    top: -33px;
    /* Aligned with HP bar */
    left: 95px;
    /* Immediately to right of HP bar */
    color: var(--main-color);
    font-size: 20px;
    animation: heartPulse 1.5s infinite ease-in-out;
}

@keyframes heartPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.hp-bar {
    position: absolute;
    top: -25px;
    /* Above head */
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    /* Wider */
    height: 6px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--main-color);
    border-radius: 3px;
    overflow: hidden;
}

.hp-fill {
    width: 80%;
    height: 100%;
    background: #4cd137;
    /* Green for health */
    box-shadow: 0 0 5px #4cd137;
}

.figure-sword {
    position: absolute;
    bottom: -23px;
    /* Lower more (4px) */
    left: -21px;
    /* Left more (6px) */
    transform: rotate(-120deg);
    /* Pointing Down-Left steeper */
    font-size: 40px;
    /* Bigger */
    color: var(--main-color);
    z-index: 5;
    filter: drop-shadow(0 0 10px rgba(var(--main-color-rgb), 0.8));
}

.crossed-swords {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind shield */
    pointer-events: none;
}

.crossed-swords .sword-1 {
    position: absolute;
    left: 55px;
    /* Closer */
    top: 50px;
    /* Top aligned */
    transform: rotate(140deg);
    /* Pointing at center */
    font-size: 70px;
    /* Bigger */
    color: var(--main-color);
    filter: drop-shadow(0 0 10px rgba(var(--main-color-rgb), 0.4));
    opacity: 0.8;
}

.crossed-swords .sword-2 {
    position: absolute;
    right: 55px;
    /* Closer */
    top: 50px;
    /* Top aligned */
    transform: scaleX(-1) rotate(140deg);
    /* Mirror */
    font-size: 70px;
    /* Bigger */
    color: var(--main-color);
    filter: drop-shadow(0 0 10px rgba(var(--main-color-rgb), 0.4));
    opacity: 0.8;
}

.bypass-graphic {
    position: relative;
    width: 280px;
    /* Widened to fit swords */
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.shield-icon {
    font-size: 110px;
    /* Smaller */
    color: var(--main-color);
    z-index: 2;
    /* In front */
    position: relative;
    /* Essential for z-index */
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    filter: drop-shadow(0 0 15px rgba(var(--main-color-rgb), 0.5));
    /* Strong glow for shield */
}

.bypass-rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bypass-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(var(--main-color-rgb), 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.bypass-ring:nth-child(1) {
    width: 120px;
    height: 120px;
}

.bypass-ring:nth-child(2) {
    width: 150px;
    height: 150px;
    animation-delay: 0.3s;
}

.bypass-ring:nth-child(3) {
    width: 180px;
    height: 180px;
    animation-delay: 0.6s;
}

.user-friendly-graphic {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.settings-icon {
    font-size: 80px;
    color: var(--main-color);
    z-index: 2;
    animation: rotate 10s linear infinite;
}

.settings-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.settings-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--main-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
}

.settings-dot:nth-child(1) {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-80px);
}

.settings-dot:nth-child(2) {
    transform: translate(-50%, -50%) rotate(120deg) translateY(-80px);
}

.settings-dot:nth-child(3) {
    transform: translate(-50%, -50%) rotate(240deg) translateY(-80px);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center !important;
    text-align: center !important;
}

.feature-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.feature-title i {
    font-size: 24px;
    color: var(--main-color);
}

.feature-title h2 {
    color: var(--text-primary, #ffffff);
    font-family: 'semi';
    font-size: 28px;
    margin: 0;
    text-transform: capitalize;
}

:root[data-theme="light"] .feature-title h2 {
    color: var(--text-primary, #000000);
}

.feature-card p {
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    font-family: 'medium';
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

:root[data-theme="light"] .feature-card p {
    color: var(--text-secondary, rgba(0, 0, 0, 0.7));
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes ring-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@media (max-width: 768px) {
    .pluses .boxes {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-graphic {
        height: 200px;
    }
}

/* Gallery Section */
.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.gallery::before {
    content: "gallery";
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    font-family: 'semi';
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

:root[data-theme="light"] .gallery::before {
    color: rgba(0, 0, 0, 0.03);
}

.gallery .text h1 {
    color: var(--text-primary, #ffffff);
    font-family: 'semi';
    font-size: 30px;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 15px;
    transition: all 0.6s ease;
    position: relative;
}

:root[data-theme="light"] .gallery .text h1 {
    color: var(--text-primary, #000000);
}

.gallery .text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--main-color);
    transform: translateX(-50%);
    transition: width 0.6s ease;
}

.gallery:hover .text h1::after {
    width: 100px;
}

.gallery .text p {
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    font-family: 'medium';
    font-size: 16px;
    margin-bottom: 40px;
}

:root[data-theme="light"] .gallery .text p {
    color: var(--text-secondary, rgba(0, 0, 0, 0.7));
}

.gallery-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    background: var(--button-back);
    border: 1px solid var(--border);
    backdrop-filter: blur(5px);
    width: 100%;
    max-width: 100%;
    transition: all 0.3s ease;
}

.gallery-container:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-slide {
    display: none;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.gallery-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.gallery-slide.next {
    transform: translateX(100%);
    opacity: 0;
}

.gallery-image {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
    height: auto;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.gallery-slide.active .gallery-image img {
    transform: scale(1);
}

.gallery-image:hover img {
    transform: scale(1.05);
}

.slide-description {
    padding: 30px;
    text-align: center;
}

.slide-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary, #ffffff);
    margin-bottom: 10px;
    font-family: 'medium';
}

:root[data-theme="light"] .slide-description h3 {
    color: var(--text-primary, #000000);
}

.slide-description p {
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    line-height: 1.6;
    font-family: 'medium';
    font-size: 16px;
}

:root[data-theme="light"] .slide-description p {
    color: var(--text-secondary, rgba(0, 0, 0, 0.7));
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    position: relative;
}

.gallery-btn {
    background: var(--button-back);
    border: 1px solid var(--border);
    color: var(--ot-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.5rem;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.gallery-btn:hover {
    background: var(--main-color);
    color: white;
    border-color: var(--main-color);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(var(--main-color-rgb), 0.3), 0 0 20px var(--card-border);
}

.gallery-btn:active {
    transform: scale(0.95);
}

.gallery-btn i {
    transition: transform 0.3s ease;
}

.gallery-btn:hover i {
    transform: scale(1.2);
}

.gallery-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.gallery-btn:disabled:hover {
    background: var(--button-back);
    color: var(--ot-color);
    border-color: var(--border);
    transform: none;
    box-shadow: none;
}

.gallery-btn:disabled i {
    transform: none;
}

/* ?????????????? ????? ??? ????????? */
.gallery-btn .ph-arrow-left,
.gallery-btn .ph-arrow-right {
    font-weight: bold;
    font-size: 1.2em;
}

/* ???????? ??? ??????? */
.gallery-btn:active i {
    transform: scale(0.9);
}

/* ?????? ???????? ??? ????????? */
.gallery-btn:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, var(--card-border) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ?????? ????? ??? ????? */
.gallery-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(var(--main-color-rgb), 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.gallery-btn:active::after {
    width: 100px;
    height: 100px;
    opacity: 0;
}

/* ????????? ??????????? */
.gallery-btn.prev-btn::after {
    content: '?';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ot-color);
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-btn.next-btn::after {
    content: '?';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ot-color);
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-btn:hover::after {
    opacity: 1;
}

/* ????????? ???????????? ???????????? */
.gallery-controls::before {
    content: '8';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--ot-color);
    font-size: 0.8rem;
    opacity: 0.5;
    font-weight: bold;
}

/* ?????????????? ????? ??? ???????????? */
.gallery {
    overflow: hidden;
    width: 100%;
}

.gallery-slide {
    position: relative;
    width: 100%;
}

.gallery-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dot.active {
    background: var(--main-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(var(--main-color-rgb), 0.5);
    animation: pulse 2s infinite;
}

.dot:hover {
    background: var(--main-color);
    opacity: 0.7;
    transform: scale(1.3);
}

/* ?????? */

.reviews::before {
    content: "video";
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    font-family: 'semi';
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

:root[data-theme="light"] .reviews::before {
    color: rgba(0, 0, 0, 0.03);
}

.reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.reviews .text h1 {
    color: var(--text-color);
    font-family: 'semi';
    font-size: 30px;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto;
}

.reviews .boxes {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.reviews .carousel {
    display: flex;
    gap: 20px;
    width: 100%;
    min-width: 0;
    padding-left: 0;
    box-sizing: border-box;
    animation: scroll 25s linear infinite;
}

.reviews .box {
    flex: 0 0 400px;
    min-width: 400px;
    padding: 25px;
    border-radius: 25px;
    background: var(--button-back);
    border: 1px solid var(--border);
    text-align: left;
    backdrop-filter: blur(5px);
}

.reviews .top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviews .top .ava {
    flex-shrink: 0;
}

.reviews .top .ava img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    object-fit: cover;
}

.reviews .top .info {
    flex: 1;
}

.reviews .top h2 {
    color: var(--text-primary, #ffffff);
    font-family: 'medium';
    font-size: 20px;
    margin: 0 0 5px 0;
}

:root[data-theme="light"] .reviews .top h2 {
    color: var(--text-primary, #000000);
}

.reviews .top p {
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    font-family: 'medium';
    font-size: 14px;
    margin: 0;
}

:root[data-theme="light"] .reviews .top p {
    color: var(--text-secondary, rgba(0, 0, 0, 0.7));
}

.reviews .bottom {
    margin-top: 10px;
}

.reviews .bottom p {
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    font-family: 'medium';
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

:root[data-theme="light"] .reviews .bottom p {
    color: var(--text-secondary, rgba(0, 0, 0, 0.7));
}

.reviews .video-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    color: var(--text-primary, #ffffff);
    font-family: 'medium';
    font-weight: normal;
    font-size: 30px;
    margin-bottom: 40px;
}

:root[data-theme="light"] .reviews .video-button {
    color: var(--text-primary, #000000);
}

.video-container {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto !important;
    display: block;
    text-align: center;
    background: var(--button-back);
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 10px;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.video-container iframe {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    height: 40vw;
    min-height: 200px;
    max-height: 500px;
    border-radius: 15px;
    background: #000;
    margin: 0 auto !important;
    display: block;
}

.reviews .video-button .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
}

.reviews .video-button .icon i {
    font-size: inherit;
}

/* ?????? */

.pricing {
    padding: 100px 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: "pricing";
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    font-family: 'semi';
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

:root[data-theme="light"] .pricing::before {
    color: rgba(0, 0, 0, 0.03);
}

:root[data-theme="light"] .pricing::before {
    color: rgba(0, 0, 0, 0.03);
}

.pricing .text h1 {
    color: var(--text-color);
    font-family: 'semi';
    font-size: 36px;
    margin: 0;
}

.pricing .box {
    flex: 1;
    max-width: 350px;
    min-width: 300px;
    padding: 0;
    border-radius: 25px;
    background: var(--button-back);
    border: 1px solid var(--border);
    text-align: left;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.pricing .upper {
    text-align: left;
    margin-bottom: 0;
    padding: 26px 26px 20px 26px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.pricing .upper h2:first-child {
    font-family: 'medium';
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    font-weight: normal;
    font-size: 18px;
    margin: 0 0 10px 0;
}

:root[data-theme="light"] .pricing .upper h2:first-child {
    color: var(--text-secondary, rgba(0, 0, 0, 0.7));
}

.pricing .upper h1 {
    color: var(--text-primary, #ffffff);
    font-family: 'semi';
    font-size: 36px;
    margin: 0 0 10px 0;
}

:root[data-theme="light"] .pricing .upper h1 {
    color: var(--text-primary, #000000);
}

.pricing .upper h1 .period {
    font-size: 14px;
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    font-family: 'medium';
}

:root[data-theme="light"] .pricing .upper h1 .period {
    color: var(--text-secondary, rgba(0, 0, 0, 0.7));
}

.pricing .upper h2:last-child {
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    font-family: 'medium';
    font-weight: normal;
    font-size: 18px;
    margin: 0;
}

:root[data-theme="light"] .pricing .upper h2:last-child {
    color: var(--text-secondary, rgba(0, 0, 0, 0.7));
}

.pricing .plus {
    margin: 16px 26px 30px 26px;
}

.pricing .plus p {
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    font-family: 'medium';
    font-size: 16px;
    margin: 12px 0;
}

:root[data-theme="light"] .pricing .plus p {
    color: var(--text-secondary, rgba(0, 0, 0, 0.7));
}

.pricing .button-container {
    text-align: center;
    padding: 0 26px 16px;
}

.pricing .purchase-btn {
    display: inline-block;
    padding: 13px 0;
    width: 100%;
    background: var(--button-back);
    color: rgb(147, 147, 147);
    border: 1px solid var(--border);
    outline: none;
    border-radius: 14px;
    font-family: 'medium';
    font-size: 18px;
    transition: 0.15s ease-in-out;
}

.pricing .purchase-btn:hover {
    background: var(--main-color);
    color: var(--text-color) !important;
}

/* ???????? ??? ??????? */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-400px * 5 - 30px * 4));
    }
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    box-sizing: border-box;
}

.profile-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.profile-card {
    background: var(--button-back);
    border: 1px solid var(--border);
    border-radius: 25px;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: visible;
    margin-bottom: 20px;
}

.profile-header {
    position: relative;
    height: 200px;
    border-radius: 25px;
}

.profile-header .avatar {
    position: absolute;
    top: -30px;
    left: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-header .username {
    font-size: 1.4rem;
    font-weight: 600;
    vertical-align: middle;
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {

    .main-sect,
    .pluses,
    .gallery,
    .reviews,
    .pricing,
    .footer-content {
        max-width: 100vw;
        padding: 0 2vw;
    }

    .main-sect {
        flex-direction: column;
        gap: 24px;
        min-height: 0;
        align-items: center;
    }

    .content,
    .image {
        max-width: 100vw;
        margin: 0 auto;
    }

    .gallery-slider {
        max-width: 100vw;
        overflow: hidden;
    }

    .gallery-controls {
        gap: 20px;
    }

    .gallery-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .video-container {
        max-width: 100vw;
        padding: 4px;
    }

    .reviews .carousel {
        gap: 10px;
    }

    .pluses .boxes,
    .pricing .boxes {
        gap: 10px;
    }

    .footer-content {
        max-width: 100vw;
        gap: 10px;
    }
}

@media (max-width: 600px) {

    .main-sect,
    .pluses,
    .gallery,
    .reviews,
    .pricing,
    .footer-content {
        max-width: 100vw;
        padding: 0 2vw;
    }

    .main-sect {
        flex-direction: column;
        gap: 12px;
        min-height: 0;
        padding: 0;
        align-items: center;
    }

    .content,
    .image {
        max-width: 100vw;
        min-width: 0;
        padding: 0;
        margin: 0 auto;
    }

    .gallery-slider {
        max-width: 100vw;
        overflow: hidden;
    }

    .gallery-controls {
        flex-direction: column;
        gap: 15px;
    }

    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .slide-description {
        padding: 20px;
    }

    .slide-description h3 {
        font-size: 1.3rem;
    }

    .video-container {
        max-width: 100vw;
        padding: 2px;
    }

    .reviews .carousel {
        gap: 4px;
    }

    .pluses .boxes,
    .pricing .boxes {
        gap: 4px;
    }

    .footer-content {
        max-width: 100vw;
        gap: 4px;
    }
}

@media (max-width: 900px) {
    main {
        padding-top: 32px;
    }

    .main-sect {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        max-width: 98vw;
    }

    .content {
        text-align: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .image {
        justify-content: center;
        padding-right: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .content,
    .image {
        max-width: 98vw;
        margin: 0 auto;
    }

    .image img {
        max-width: 90vw;
    }

    .pluses .boxes {
        flex-wrap: wrap;
        overflow-x: unset;
        max-width: 100vw;
        gap: 12px;
    }

    .feature-card {
        min-width: 260px;
        max-width: 320px;
        flex: 0 0 260px;
    }
}/ *   S t a t i s t i c s   S e c t i o n   * / 
/* Statistics Section */
.statistics {
    padding: 80px 0;
    width: 100%;
    position: relative;
    z-index: 2;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(180deg, rgba(26, 26, 30, 0.4) 0%, rgba(15, 15, 20, 0.2) 100%);
    border: 1px solid rgba(var(--main-color-rgb), 0.1);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--main-color-rgb), 0.3);
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    font-family: 'bold', sans-serif;
    background: linear-gradient(135deg, #fff 0%, var(--main-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'medium', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    width: 100%;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: 'semi', sans-serif;
}

.section-title p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(var(--main-color-rgb), 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(var(--main-color-rgb), 0.3);
    background: rgba(26, 26, 30, 0.6);
}

.faq-item.active {
    border-color: var(--main-color);
    background: rgba(26, 26, 30, 0.8);
    box-shadow: 0 10px 30px -10px rgba(var(--main-color-rgb), 0.15);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    font-family: 'medium', sans-serif;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--main-color);
    font-size: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    transition: max-height 0.5s ease-in-out;
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

/* Light Theme Adaptations */
:root[data-theme="light"] .stat-item {
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--card-border);
}

:root[data-theme="light"] .stat-number {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--main-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

:root[data-theme="light"] .stat-label {
    color: rgba(0, 0, 0, 0.7);
}

:root[data-theme="light"] .section-title h2 {
    color: #000000;
}

:root[data-theme="light"] .section-title p {
    color: rgba(0, 0, 0, 0.7);
}

:root[data-theme="light"] .faq-item {
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--card-border);
}

:root[data-theme="light"] .faq-item:hover {
    background: rgba(255, 255, 255, 0.9);
}

:root[data-theme="light"] .faq-item.active {
    background: #fff;
    border-color: var(--main-color);
}

:root[data-theme="light"] .faq-question {
    color: #000000;
}

:root[data-theme="light"] .faq-answer p {
    color: rgba(0, 0, 0, 0.7);
}




