/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --card-bg: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-2: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    --gradient-3: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.4);
    --card-border: 1px solid rgba(255, 255, 255, 0.1);
    --card-shine: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0) 60%);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(-45deg, #0f172a, #1e1b4b, #312e81, #020617);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Custom cursor disabled - using default cursor
body.custom-cursor {
    cursor: ;
}

body.custom-cursor * {
    cursor: none !important;
} */


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    will-change: transform, left, top;
    transition: all 0.1s ease;
    background: transparent;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    opacity: 1;
    visibility: visible;
    display: block;
}

.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    background: transparent;
    will-change: transform, left, top;
    transition: all 0.1s ease;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    opacity: 1;
    visibility: visible;
    display: block;
}

.cursor.hover {
    width: 30px;
    height: 30px;
    border-color: white;
    background: rgba(255, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

.cursor-follower.hover {
    width: 40px;
    height: 40px;
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(255, 0, 0, 0.5);
}

.cursor-ripple {
    position: fixed;
    border-radius: 50%;
    border: 2px solid white;
    pointer-events: none;
    z-index: 99997;
    transform: translate(-50%, -50%);
    will-change: transform, opacity;
    animation: rippleExpand 0.6s ease-out forwards;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

@keyframes rippleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

/* Canvas removed/hidden */
#webgl-canvas {
    display: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* background: rgba(15, 23, 42, 0.8); */
    backdrop-filter: blur(1px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: var(--shadow-md);

    border-bottom: 1px solid rgba(252, 252, 252, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-dot {
    color: var(--accent-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

/* .free class is defined later in the file */

.free {
    padding: 5px 20px;
    margin-top: -5px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.free::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.free::before {
    width: 300px;
    height: 300px;
}

.free {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow:
        0 10px 30px rgba(99, 102, 241, 0.5),
        0 5px 15px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.free:hover {
    transform: translateY(-5px) translateZ(20px) scale(1.05);
    box-shadow:
        0 15px 40px rgba(99, 102, 241, 0.7),
        0 8px 20px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 6rem;
    overflow: hidden;
    background-image: url(./download.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::after {
    content: "";
    position: absolute !important;
    top: 0%;
    left: 0%;
    background-color: #02061753;
    height: 100vh;
    width: 100%;
    z-index: 1 !important;
    backdrop-filter: blur(2px);
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.greeting {
    font-size: 1.2rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.offer {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    background-color: chocolate;
    display: inline-block;
    padding: 5px 8px;
    transform: skew(344deg, 360deg);
}

.offer:hover {
    transform: skew(0deg, 0deg);
    border-radius: 5px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.name {
    /* background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    position: relative;
    display: inline-block;
    color: white;
}

.typing-container {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    color: whitesmoke;
}

.typing-cursor {
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow:
        0 10px 30px rgba(99, 102, 241, 0.5),
        0 5px 15px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-5px) translateZ(20px) scale(1.05);
    box-shadow:
        0 15px 40px rgba(99, 102, 241, 0.7),
        0 8px 20px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.1) 0%,
            rgba(139, 92, 246, 0.05) 100%);
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    box-shadow:
        0 8px 20px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    transform: translateY(-5px) translateZ(20px) scale(1.05);
    box-shadow:
        0 15px 40px rgba(99, 102, 241, 0.6),
        0 8px 20px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Hero 3D Container */
.hero-3d-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg,
            rgba(30, 41, 59, 0.9) 0%,
            rgba(15, 23, 42, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
}

.floating-card:hover {
    transform: translateY(-15px) translateZ(30px) scale(1.1) rotateY(5deg);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 15px 40px rgba(99, 102, 241, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

/* 3D Tilt Effect Classes */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.tilt-content {
    transform: translateZ(30px);
}

.tilt-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%,
            rgba(255, 255, 255, 0.3),
            transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 10;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    max-width: 700px;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(99, 102, 241, 0.3),
        inset 0 0 20px rgba(99, 102, 241, 0.1);
    margin: 0 auto;
    padding: 8px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 15px;
    position: relative;
}

.slide {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
    padding: 0 8px;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.1) 0%,
            rgba(139, 92, 246, 0.1) 50%,
            rgba(236, 72, 153, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.slide img {
    width: 100% !important;
    height: 100% !important;
    object-position: center;
    object-fit: cover;
    border-radius: 15px;
    filter: brightness(0.9) contrast(1.1);
    display: block;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 1.2s backwards;
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.3));
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    position: relative;
    background: linear-gradient(180deg,
            rgba(99, 102, 241, 0.1) 0%,
            rgba(139, 92, 246, 0.05) 100%);
    box-shadow:
        0 4px 12px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
    box-shadow:
        0 2px 6px rgba(99, 102, 241, 0.6),
        0 0 10px rgba(99, 102, 241, 0.4);
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.scroll-indicator span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Section Styles */
section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    margin: 0 auto;
    border-radius: 2px;
}

/* Overview Section */
.overview {
    background: rgba(15, 23, 42, 0.5);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    /* background: linear-gradient(135deg,
            rgba(30, 41, 59, 0.8) 0%,
            rgba(15, 23, 42, 0.6) 100%); */
    background: linear-gradient(135deg,
            rgba(66, 42, 216, 0.8) 0%,
            rgba(89, 176, 92, 0.6) 100%);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(99, 102, 241, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    text-align: center;
}

.feature:hover {
    transform: translateY(-15px) translateZ(30px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(99, 102, 241, 0.4),
        0 10px 30px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    display: inline-block;
    position: relative;
    animation: iconFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.icon-3d {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.feature:hover .icon-3d {
    transform: scale(1.2) rotateY(15deg) rotateX(10deg);
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.category-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle,
            rgba(99, 102, 241, 0.3) 0%,
            transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    animation: iconGlow 3s ease-in-out infinite;
}

/* Removed iconPulse animation as it's replaced by iconFloat */

@keyframes iconGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Products Section */
.products {
    background: rgba(15, 23, 42, 0.5);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(135deg,
            rgba(30, 41, 59, 0.8) 0%,
            rgba(15, 23, 42, 0.6) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(99, 102, 241, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    position: relative;
    background: rgba(30, 41, 59, 0.7);
}

.border {
    border: 2px solid #e8b904;
}

.border:hover {
    transform: translateY(-15px) translateZ(30px) scale(1.02);
    box-shadow:
        0 25px 70px rgba(235, 193, 8, 0.5),
        0 15px 40px rgba(233, 223, 255, 0.4),
        inset 0 1px 0 rgba(247, 250, 95, 0.1) !important;
}

.product-card:hover {
    transform: translateY(-15px) translateZ(30px) scale(1.02);
    box-shadow:
        0 25px 70px rgba(99, 102, 241, 0.5),
        0 15px 40px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.5);
}

.video-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: 5;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px 10px 0 0;
}

.product-card h3 {
    padding: 1rem 1rem 0.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.product-card p {
    padding: 0 1rem 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.duration {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.buy-btn {
    display: block;
    width: calc(100% - 2rem);
    margin: 1rem;
    padding: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 12px rgba(99, 102, 241, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.buy-btn:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    transform: translateY(-3px);
    box-shadow:
        0 8px 20px rgba(99, 102, 241, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* About Section */
.about {
    background: rgba(15, 23, 42, 0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(99, 102, 241, 0.4),
        0 10px 30px rgba(139, 92, 246, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
}

.image-placeholder img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;

}

.code-symbol {
    font-size: 8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 10px 20px rgba(99, 102, 241, 0.5)) drop-shadow(0 20px 40px rgba(139, 92, 246, 0.3)) drop-shadow(0 5px 10px rgba(255, 255, 255, 0.2));
    animation: rotate3D 10s ease-in-out infinite;
    transform-style: preserve-3d;
    position: relative;
}

.code-symbol::before {
    content: "🛒";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.3) 0%,
            rgba(139, 92, 246, 0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.6;
    z-index: -1;
}

@keyframes rotate3D {
    0% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(90deg) scale(1.1) rotateY(180deg);
    }

    50% {
        transform: rotate(180deg) scale(1);
    }

    75% {
        transform: rotate(270deg) scale(1.1) rotateY(180deg);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: -10%;
    animation: float 4s ease-in-out infinite;
}

.shape-2 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    right: -5%;
    animation: float 5s ease-in-out infinite 1s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: -15%;
    animation: float 6s ease-in-out infinite 2s;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.15) 0%,
            rgba(139, 92, 246, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 8px 20px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
}

.stat-item:hover {
    transform: translateY(-8px) translateZ(20px) scale(1.05);
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.2) 0%,
            rgba(139, 92, 246, 0.15) 100%);
    box-shadow:
        0 15px 40px rgba(99, 102, 241, 0.4),
        0 8px 20px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.support {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.2) 0%,
            rgba(139, 92, 246, 0.15) 100%);
    border-radius: 15px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    box-shadow:
        0 8px 16px rgba(99, 102, 241, 0.2),
        0 4px 8px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.6)) drop-shadow(0 2px 4px rgba(139, 92, 246, 0.4));
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-icon::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    transform: rotate(45deg);
    animation: iconShine 3s ease-in-out infinite;
}

.contact-icon::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.1) 0%,
            rgba(139, 92, 246, 0.05) 100%);
    border-radius: 13px;
    z-index: -1;
}

.contact-item:hover .contact-icon {
    transform: translateY(-5px) translateZ(20px) rotateY(10deg);
    box-shadow:
        0 12px 24px rgba(99, 102, 241, 0.4),
        0 6px 12px rgba(139, 92, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.contact-item:hover .contact-icon svg {
    filter: drop-shadow(0 6px 12px rgba(99, 102, 241, 0.8)) drop-shadow(0 3px 6px rgba(139, 92, 246, 0.6));
    transform: scale(1.1) rotateZ(-5deg);
}

@keyframes iconShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-details a,
.contact-details p {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-basis: 100%;
    /* gap: 1rem; */
}

.social-box {
    display: flex;
    justify-content: center;
    flex-basis: 50%;
    align-items: center;
}

.social-link {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.15) 0%,
            rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(99, 102, 241, 0.25);
    border-radius: 12px;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 8px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
}

.social-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.3) 0%,
            transparent 70%);
    transform: translate(-50%, -50%);
    transition:
        width 0.4s ease,
        height 0.4s ease;
}

.social-link svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.3));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-link:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    transform: translateY(-8px) translateZ(20px) rotateY(15deg) scale(1.05);
    box-shadow:
        0 12px 30px rgba(99, 102, 241, 0.5),
        0 6px 15px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover::after {
    width: 100px;
    height: 100px;
    opacity: 0;
}

.social-link:hover svg {
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.4));
    transform: scale(1.1) rotateZ(-5deg);
}

/* Contact Form */
.contact-form-container {
    /* background: linear-gradient(135deg,
            rgba(30, 41, 59, 0.8) 0%,
            rgba(15, 23, 42, 0.6) 100%); */
    backdrop-filter: blur(20px);
    /* padding: 3rem; */
    border-radius: 20px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    display: flex;
    /* justify-content: center;
    align-items: center; */
    /* gap: 1.5rem; */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    background: rgba(15, 23, 42, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-3d-container {
        height: 400px;
    }

    .hero::after {
        height: 100%;
    }

    .hero-title {
        font-size: 4rem;
    }

    .social-links {
        flex-basis: 50%;

        flex-wrap: nowrap;
    }

    .social-box {
        margin: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .free {
        border-radius: 10px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        background-image: url(./download.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-position-x: -235px;
        background-attachment: fixed;
    }

    .hero-title {
        font-size: 3rem;
    }

    .typing-container {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-3d-container {
        display: none;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .social-links {
        flex-basis: auto;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .social-box {
        flex-basis: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 5rem 0;
    }

    .hero {
        background-position-x: -370px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Animations for scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Smooth hover effects */
.hover-effect {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

/* Mobile - hide custom cursor */
@media (max-width: 768px) {

    .cursor,
    .cursor-follower,
    .cursor-ripple {
        display: none !important;
    }

    body.custom-cursor,
    body.custom-cursor * {
        cursor: auto !important;
    }
}

/* Contact Popup */
.contact-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-popup.active {
    opacity: 1;
}

.contact-popup.active .popup-overlay {
    animation: fadeIn 0.3s ease;
}

.contact-popup.active .popup-content {
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.popup-content {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 30, 60, 0.95), rgba(20, 20, 40, 0.95));
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(99, 102, 241, 0.2);
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.popup-title {
    font-size: 2rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-align: center;
}

.popup-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 2rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: currentColor;
}

.contact-option.discord {
    color: #5865F2;
}

.contact-option.whatsapp {
    color: #25D366;
}

.contact-option.telegram {
    color: #0088cc;
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: currentColor;
    border-radius: 12px;
    flex-shrink: 0;
    overflow: hidden;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.contact-info h3 {
    color: white;
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* Free panel */
/* Selection Popup Specific Styles */
.selection-popup .popup-content {
    max-width: 500px;
}

#selectionProductTitle {
    color: #ec4899 !important;
    text-shadow: 0 0 10px rgba(236, 0, 118, 0.3);
}

.selection-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.selection-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.selection-option:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

.selection-info h4 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.1rem;
}

.selection-info p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.selection-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}
