:root {
    --tg-body-font-family: 'Inter', serif;
    --tg-heading-font-family: 'Inter', serif;
    --tg-icon-font-family: "Font Awesome 5 Free";
    --tg-body-font-size: 16px;
    --tg-body-line-height: 1.62;
    --tg-heading-line-height: 1.2;
    --tg-body-color: #9E9E9E;
    --tg-heading-color: #ffffff;
    --tg-theme-primary: #4b59f5;
    --tg-theme-secondary: #0bf;
    --tg-color-white-default: #ffffff;
    --tg-color-blue-default: #703bff;
    --tg-color-blue-default-2: #865FFC;
    --tg-color-dark-blue: #162561;
    --tg-color-light-blue: #3e4af1;
    --tg-color-gray-1: #777;
    --tg-color-dark: #0C0C0C;
    --tg-color-dark-2: #000000;
    --tg-color-dark-3: #262626;
    --tg-border-1: #363636;
    --tg-fw-extra-bold: 800;
    --tg-fw-bold: 700;
    --tg-fw-semi-bold: 600;
    --tg-fw-medium: 500;
    --tg-fw-regular: 400;
    --tg-fw-light: 300;
}

.hero-landing {
    height: 100vh;
    width: 100%;
    position: relative;
    /* background: url(../images/area_bg.jpg) no-repeat center center; */
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--e-global-color-ad33687);
    text-transform: uppercase;
    /* font-family: "Montserrat", Sans-serif; */
    /* font-size: 5rem; */
    /* line-height: 1.1em; */
}




/* Background Animation */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #020316 70%);
}

#bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    background: url(../images/area_bg.jpg);
    background-position: center top;
    background-size: cover;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        background: url(../images/area_bg.jpg);
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    #bgVideo {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
}

/* Fallback for devices that don't support video autoplay */
@media (prefers-reduced-motion: reduce) {
    #bgVideo {
        display: none;
    }

    .hero-section {
        background: url(../images/area_bg.jpg);
        background-size: cover;
        background-position: center;
    }
}

.hero-bg-img {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url(../images/area_bg.jpg); */
    background-position: center top;
    background-size: cover;
    /* margin-top: 120px; */
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Floating Image */
.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-image {
    width: 520px;
    height: 520px;
    position: relative;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Placeholder for when no image is provided */
.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
    max-width: 1400px;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
    color: white;
}

nav a.active {
    color: #7c3aed;
}

.try-now-btn {
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.try-now-btn:hover {
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0 5%;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.content-left {
    flex: 1;
    max-width: 600px;
    min-width: 300px;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #a78bfa;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge::before {
    content: '▶';
    margin-right: 8px;
    color: #7c3aed;
}

h1 {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 40px;
}

h1 .highlight {
    color: #9ca3af;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.tg-btn {
    user-select: none;
    -moz-user-select: none;
    box-shadow: 0 -14px 48px 0 rgba(40, 51, 111, 0.69), 0 16px 24px 0 rgba(0, 0, 0, 0.25);
    background: linear-gradient(180deg, var(--tg-color-blue-default-2) 0%, var(--tg-color-dark-blue) 100%);
    color: var(--tg-color-white-default);
    cursor: pointer;
    font-size: 16px;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    vertical-align: middle;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -o-border-radius: 16px;
    -ms-border-radius: 16px;
    border-radius: 16px;
    white-space: nowrap;
    overflow: hidden;
    padding: 2px 2px;
    border: none;
    position: relative;
    height: 60px;
    display: inline-flex;
}

.btn-primary {
    box-shadow: 0 -14px 48px 0 rgba(40, 51, 111, 0.69), 0 16px 24px 0 rgba(0, 0, 0, 0.25);
    background: linear-gradient(180deg, var(--tg-color-blue-default-2) 0%, var(--tg-color-dark-blue) 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 3D Object */
.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.geometric-object {
    width: 400px;
    height: 400px;
    position: relative;
    animation: rotate3d 20s infinite linear;
}

@keyframes rotate3d {
    0% {
        transform: rotateX(20deg) rotateY(0deg) rotateZ(10deg);
    }

    100% {
        transform: rotateX(20deg) rotateY(360deg) rotateZ(10deg);
    }
}

.torus {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #374151, #1f2937);
    border-radius: 50%;
    position: relative;
    box-shadow:
        0 0 50px rgba(124, 58, 237, 0.3),
        inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.torus::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: #0a0a0a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}

.torus::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(59, 130, 246, 0.4));
    border-radius: 50%;
    filter: blur(15px);
}

/* Flowing dots effect */
.flow-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.flow-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(124, 58, 237, 0.6);
    border-radius: 50%;
    animation: flowPath 8s infinite linear;
}

@keyframes flowPath {
    0% {
        transform: rotate(0deg) translateX(200px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: rotate(360deg) translateX(200px) rotate(-360deg);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .main-content {
        gap: 40px;
    }

    h1 {
        font-size: 60px;
    }

    .geometric-object {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 1024px) {
    header {
        padding: 15px 3%;
    }

    nav {
        gap: 25px;
    }

    nav a {
        font-size: 14px;
    }

    h1 {
        font-size: 52px;
    }

    .geometric-object {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }

    nav {
        display: none;
    }

    .try-now-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .main-content {
        flex-direction: column;
        text-align: center;
        padding: 120px 5% 40px;
        gap: 40px;
    }

    .content-left {
        max-width: 100%;
    }

    h1 {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }

    .geometric-object {
        width: 280px;
        height: 280px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px 4%;
    }

    .logo {
        font-size: 20px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .try-now-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .main-content {
        padding: 100px 4% 30px;
    }

    h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .geometric-object {
        width: 240px;
        height: 240px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 320px) {
    h1 {
        font-size: 32px;
    }

    .geometric-object {
        width: 200px;
        height: 200px;
    }
}