/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-black: #0B0B0B;
    --pure-white: #FFFFFF;
    --infinity-blue: #3A86FF;
    --purple-energy: #8338EC;
    --blue-glow: rgba(58, 134, 255, 0.3);
    --purple-glow: rgba(131, 56, 236, 0.3);
    --dark-gray: #1A1A1A;
    --medium-gray: #2A2A2A;
    --light-gray: #F5F5F5;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --section-spacing: 120px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--deep-black);
    color: var(--pure-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--infinity-blue) 50%, var(--purple-energy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    color: var(--pure-white);
}

h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.8;
}

.lead {
    font-size: 1.3rem;
    font-weight: 400;
}

.highlight {
    color: var(--infinity-blue);
    font-weight: 600;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: var(--section-spacing) 0;
    position: relative;
}

/* Enhanced Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}

/* Floating Circles */
.floating-circles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circle {
    position: absolute;
    border-radius: 50%;
    animation: circleFloat 25s infinite ease-in-out;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 5%;
    border: 1px solid rgba(58, 134, 255, 0.1);
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 10%;
    border: 1px solid rgba(131, 56, 236, 0.1);
    animation-delay: 5s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    border: 1px solid rgba(58, 134, 255, 0.15);
    animation-delay: 10s;
}

.circle-4 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 20%;
    border: 1px solid rgba(131, 56, 236, 0.15);
    animation-delay: 15s;
}

.circle-5 {
    width: 250px;
    height: 250px;
    bottom: 40%;
    left: 70%;
    border: 1px solid rgba(58, 134, 255, 0.1);
    animation-delay: 20s;
}

/* Infinity Grid */
.infinity-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--infinity-blue), transparent);
    width: 100%;
    height: 1px;
    animation: gridPulse 30s infinite linear;
}

.grid-line:nth-child(1) {
    top: 20%;
    animation-delay: 0s;
}

.grid-line:nth-child(2) {
    top: 40%;
    animation-delay: 10s;
}

.grid-line:nth-child(3) {
    top: 60%;
    animation-delay: 20s;
}

.grid-line:nth-child(4) {
    top: 80%;
    animation-delay: 30s;
}

/* Energy Ribbons */
.energy-ribbons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ribbon {
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--infinity-blue), var(--purple-energy), transparent);
    opacity: 0.1;
    animation: ribbonFlow 40s infinite linear;
}

.ribbon-1 {
    top: 25%;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.ribbon-2 {
    top: 50%;
    transform: rotate(-10deg);
    animation-delay: 13s;
}

.ribbon-3 {
    top: 75%;
    transform: rotate(5deg);
    animation-delay: 27s;
}

/* Sparkle Field */
.sparkle-field {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, var(--infinity-blue), transparent),
        radial-gradient(1px 1px at 40px 70px, var(--purple-energy), transparent),
        radial-gradient(1px 1px at 60px 20px, var(--infinity-blue), transparent),
        radial-gradient(1px 1px at 80px 50px, var(--purple-energy), transparent),
        radial-gradient(1px 1px at 90px 80px, var(--infinity-blue), transparent);
    background-size: 100px 100px;
    animation: sparkleDrift 100s infinite linear;
}

/* Domain Overlay */
.domain-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(58, 134, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(131, 56, 236, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(58, 134, 255, 0.02) 0%, transparent 50%);
    animation: overlayPulse 60s infinite alternate ease-in-out;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--deep-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* Enhanced Hollow Purple Orb */
.hollow-purple-orb {
    position: relative;
    width: 200px;
    height: 200px;
    animation: orbFloat 4s ease-in-out infinite;
}

.orb-core {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--purple-energy) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbPulse 2s ease-in-out infinite;
    filter: blur(1px);
}

.orb-rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid transparent;
    border-radius: 50%;
    animation: ringExpand 3s ease-out infinite;
}

.ring-1 {
    width: 120%;
    height: 120%;
    border-color: var(--purple-energy);
    animation-delay: 0s;
    filter: blur(0.5px);
}

.ring-2 {
    width: 140%;
    height: 140%;
    border-color: var(--infinity-blue);
    animation-delay: 0.5s;
    filter: blur(1px);
}

.ring-3 {
    width: 160%;
    height: 160%;
    border-color: var(--purple-energy);
    opacity: 0.5;
    animation-delay: 1s;
    filter: blur(1.5px);
}

.orb-glow {
    position: absolute;
    width: 250%;
    height: 250%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--purple-energy) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(30px);
    animation: glowPulse 3s ease-in-out infinite;
}

.orb-sparks {
    position: absolute;
    width: 100%;
    height: 100%;
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--infinity-blue);
    border-radius: 50%;
    animation: sparkFly 2s infinite linear;
}

.spark:nth-child(1) {
    top: 10%;
    left: 50%;
    animation-delay: 0s;
}

.spark:nth-child(2) {
    top: 50%;
    left: 10%;
    animation-delay: 0.5s;
}

.spark:nth-child(3) {
    top: 90%;
    left: 50%;
    animation-delay: 1s;
}

.spark:nth-child(4) {
    top: 50%;
    left: 90%;
    animation-delay: 1.5s;
}

.spark:nth-child(5) {
    top: 20%;
    left: 20%;
    animation-delay: 2s;
}

.loading-text-container {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
    margin-top: 30px;
}

.loading-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--infinity-blue);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.typing-cursor {
    color: var(--infinity-blue);
    font-size: 2rem;
    animation: blink 1s infinite;
}

.loading-progress {
    width: 400px;
    margin-top: 20px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: progressShine 2s infinite linear;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--infinity-blue), var(--purple-energy));
    animation: progressLoad 2s ease-in-out forwards;
    position: relative;
    z-index: 1;
}

.progress-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(58, 134, 255, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    background-color: rgba(11, 11, 11, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    color: var(--infinity-blue);
    animation: rotateSlow 20s linear infinite;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--pure-white);
    text-transform: uppercase;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link-text {
    position: relative;
    z-index: 2;
}

.link-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--infinity-blue), var(--purple-energy));
    transition: var(--transition);
}

.nav-link:hover .link-underline,
.nav-link.active .link-underline {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--infinity-blue);
}

.nav-subscribe {
    background: linear-gradient(135deg, var(--infinity-blue), var(--purple-energy));
    color: var(--pure-white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(58, 134, 255, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
}

.menu-bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--pure-white);
    margin: 6px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    background: radial-gradient(ellipse at center, rgba(58, 134, 255, 0.1) 0%, transparent 70%);
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: var(--infinity-blue);
    border-radius: 50%;
    opacity: 0.5;
    animation: particleFloat 15s infinite linear;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 12px 35px;
    background-color: rgba(58, 134, 255, 0.1);
    border: 1px solid rgba(58, 134, 255, 0.3);
    border-radius: 30px;
    margin-bottom: 40px;
    animation: badgeGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: badgeShine 3s infinite;
}

.hero-badge span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--infinity-blue);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 30px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.5s;
}

.title-line:nth-child(2) {
    animation-delay: 0.8s;
}

.hero-subtitle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 60px;
    margin-bottom: 50px;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-subtitle-container .typing-cursor {
    font-size: 2.5rem;
    color: var(--infinity-blue);
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    overflow: hidden;
}

.btn-hero {
    min-width: 250px;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.btn-main {
    font-size: 1.1rem;
}

.btn-sub {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

.btn-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.btn:hover .btn-hover-effect {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--infinity-blue), var(--purple-energy));
    color: var(--pure-white);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(58, 134, 255, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--pure-white);
    border: 2px solid var(--infinity-blue);
}

.btn-secondary:hover {
    background-color: rgba(58, 134, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.2);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--infinity-blue);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(58, 134, 255, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--infinity-blue), transparent);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--infinity-blue);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    position: relative;
    overflow: hidden;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(58, 134, 255, 0.2), transparent);
    animation: mouseShine 3s infinite;
}

.wheel {
    width: 4px;
    height: 10px;
    background-color: var(--infinity-blue);
    border-radius: 2px;
    animation: mouseScroll 2s infinite;
    position: relative;
    z-index: 1;
}

.arrow-down {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--infinity-blue);
    border-bottom: 2px solid var(--infinity-blue);
    transform: rotate(45deg);
    animation: arrowBounce 2s infinite;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(58, 134, 255, 0.1);
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--infinity-blue);
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.section-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: labelShine 4s infinite;
}

.section-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--infinity-blue), var(--purple-energy));
    margin: 20px auto;
    border-radius: 2px;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background: var(--pure-white);
    animation: dividerMove 3s infinite linear;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background-color: rgba(11, 11, 11, 0.8);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(58, 134, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.9));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    border: 1px solid rgba(58, 134, 255, 0.2);
}

.card-glare {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: glareMove 8s linear infinite;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-icon {
    font-size: 3.5rem;
    color: var(--infinity-blue);
    margin-bottom: 20px;
    animation: iconFloat 3s ease-in-out infinite;
}

.card-orb {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 20px;
    right: 20px;
}

.orb-spin {
    width: 100%;
    height: 100%;
    border: 2px dashed var(--infinity-blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: spin 20s linear infinite;
}

.visual-orb {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
}

.orb-inner {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--purple-energy) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloat 4s ease-in-out infinite;
    filter: blur(1px);
}

.orb-spark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: var(--infinity-blue);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
    filter: blur(1px);
}

.about-features {
    margin: 40px 0;
}

.feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(42, 42, 42, 0.6));
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(58, 134, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    border-color: var(--infinity-blue);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--infinity-blue), var(--purple-energy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.feature-content h4 {
    color: var(--infinity-blue);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.feature-content p {
    position: relative;
    z-index: 1;
}

.about-mission blockquote {
    padding: 35px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(42, 42, 42, 0.7));
    border-radius: var(--border-radius);
    border-left: 4px solid var(--infinity-blue);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.about-mission blockquote::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(58, 134, 255, 0.2);
    font-family: serif;
    line-height: 1;
}

.about-mission blockquote p {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.about-mission blockquote cite {
    font-style: normal;
    color: var(--infinity-blue);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Videos Section */
.videos-section {
    background-color: rgba(11, 11, 11, 0.9);
    position: relative;
}

.videos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(58, 134, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.video-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.8));
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(58, 134, 255, 0.1);
}

.video-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(58, 134, 255, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(58, 134, 255, 0.3);
    border-color: rgba(58, 134, 255, 0.3);
}

.video-card:hover::before {
    opacity: 1;
}

.video-thumbnail {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--infinity-blue), var(--purple-energy));
    overflow: hidden;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: var(--infinity-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    font-size: 1.5rem;
    color: var(--pure-white);
    z-index: 2;
    box-shadow: 0 0 30px rgba(58, 134, 255, 0.5);
}

.video-card:hover .video-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
    z-index: 2;
}

.video-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.video-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--pure-white);
    min-height: 60px;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.video-btn {
    width: 100%;
    padding: 14px;
    background-color: transparent;
    border: 2px solid var(--infinity-blue);
    color: var(--infinity-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.video-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(58, 134, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.video-btn:hover {
    background-color: var(--infinity-blue);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(58, 134, 255, 0.3);
}

.video-btn:hover::before {
    left: 100%;
}

/* Shorts Section */
.shorts-section {
    background-color: rgba(11, 11, 11, 0.95);
    position: relative;
}

.shorts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 70%, rgba(131, 56, 236, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.shorts-container {
    position: relative;
    margin: 60px 0;
}

.shorts-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 30px 10px;
    cursor: grab;
}

.shorts-scroll::-webkit-scrollbar {
    display: none;
}

.shorts-scroll:active {
    cursor: grabbing;
}

.short-card {
    flex: 0 0 300px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.8));
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateX(50px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(131, 56, 236, 0.1);
}

.short-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.short-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(131, 56, 236, 0.3);
    border-color: rgba(131, 56, 236, 0.3);
}

.short-thumbnail {
    height: 500px;
    background: linear-gradient(135deg, var(--purple-energy), var(--infinity-blue));
    position: relative;
    overflow: hidden;
}

.short-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.short-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.short-card:hover .short-thumbnail img {
    transform: scale(1.1);
}

.short-play {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--purple-energy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--pure-white);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
    box-shadow: 0 0 20px rgba(131, 56, 236, 0.5);
}

.short-card:hover .short-play {
    opacity: 1;
    transform: scale(1.1);
}

.short-content {
    padding: 20px;
}

.short-title {
    font-size: 1.1rem;
    color: var(--pure-white);
    margin-bottom: 15px;
}

.short-btn {
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border: 2px solid var(--purple-energy);
    color: var(--purple-energy);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.short-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(131, 56, 236, 0.2), transparent);
    transition: left 0.6s ease;
}

.short-btn:hover {
    background-color: var(--purple-energy);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(131, 56, 236, 0.3);
}

.short-btn:hover::before {
    left: 100%;
}

.scroll-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

.scroll-btn {
    pointer-events: all;
    width: 50px;
    height: 50px;
    background-color: var(--dark-gray);
    border: 2px solid var(--infinity-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
    color: var(--infinity-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-btn:hover {
    background-color: var(--infinity-blue);
    color: var(--pure-white);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(58, 134, 255, 0.3);
}

/* Contact Section */
.contact-section {
    background-color: rgba(11, 11, 11, 0.8);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(58, 134, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    padding: 30px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(42, 42, 42, 0.7));
    border-radius: var(--border-radius);
    border-left: 4px solid var(--infinity-blue);
    transition: var(--transition);
    border: 1px solid rgba(58, 134, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(58, 134, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateX(10px);
    border-color: rgba(58, 134, 255, 0.3);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.2);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--infinity-blue), var(--purple-energy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.info-card h3 {
    color: var(--infinity-blue);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.info-card p {
    position: relative;
    z-index: 1;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--infinity-blue);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.info-link:hover {
    color: var(--purple-energy);
    gap: 15px;
}

.contact-form {
    padding: 40px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.8));
    border-radius: var(--border-radius);
    border: 1px solid rgba(58, 134, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    color: var(--infinity-blue);
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    resize: vertical;
}

.form-group textarea {
    min-height: 120px;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    pointer-events: none;
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    outline: none;
    border-bottom-color: var(--infinity-blue);
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--infinity-blue);
    font-weight: 600;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--infinity-blue), var(--purple-energy));
    transition: var(--transition);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--infinity-blue), var(--purple-energy));
    color: var(--pure-white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(58, 134, 255, 0.4);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover .btn-glow {
    left: 100%;
}

/* Footer */
.footer-top {
    background-color: #000;
    padding: 80px 0;
    border-top: 1px solid rgba(58, 134, 255, 0.1);
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(58, 134, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background-color: var(--dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    text-decoration: none;
    font-size: 1.3rem;
    transition: var(--transition);
    border: 1px solid rgba(58, 134, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--infinity-blue), var(--purple-energy));
    opacity: 0;
    transition: var(--transition);
}

.social-link i {
    position: relative;
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: transparent;
}

.social-link:hover::before {
    opacity: 1;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    color: var(--infinity-blue);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 15px;
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.link-group a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--infinity-blue);
    opacity: 0;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--infinity-blue);
    transform: translateX(10px);
}

.link-group a:hover::before {
    opacity: 1;
}

.footer-bottom {
    background-color: #000;
    padding: 30px 0;
    border-top: 1px solid rgba(58, 134, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-quote {
    text-align: center;
    position: relative;
}

.footer-quote p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--infinity-blue);
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(58, 134, 255, 0.3);
}

.quote-author {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Floating Social */
.social-float {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
    align-items: flex-end;
}

.social-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--dark-gray);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--infinity-blue);
    opacity: 0;
    transition: var(--transition);
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid rgba(58, 134, 255, 0.2);
}

.social-float:hover .social-tooltip {
    opacity: 1;
    right: 80px;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--infinity-blue), var(--purple-energy));
    opacity: 0;
    transition: var(--transition);
}

.social-icon i {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
}

.social-label {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--dark-gray);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--pure-white);
    opacity: 0;
    transition: var(--transition);
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid rgba(58, 134, 255, 0.2);
    font-weight: 600;
}

.social-icon:hover .social-label {
    opacity: 1;
    right: 85px;
}

.youtube {
    background-color: #FF0000;
}

.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.whatsapp {
    background-color: #25D366;
}

.email {
    background-color: #EA4335;
}

.social-icon:hover {
    transform: translateX(-10px) scale(1.1);
    border-color: var(--pure-white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-icon:hover::before {
    opacity: 1;
}

/* Go to Top Button */
.go-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--infinity-blue), var(--purple-energy));
    border: none;
    border-radius: 50%;
    color: var(--pure-white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    box-shadow: 0 10px 20px rgba(58, 134, 255, 0.3);
    border: 2px solid transparent;
    overflow: hidden;
}

.go-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.go-top:hover::before {
    left: 100%;
}

.go-top.visible {
    opacity: 1;
    visibility: visible;
}

.go-top:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--pure-white);
    box-shadow: 0 15px 30px rgba(58, 134, 255, 0.4);
}

.go-top i {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.go-top-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Section Footer */
.section-footer {
    text-align: center;
    margin-top: 60px;
}

.btn-view-all {
    padding: 15px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.btn-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-view-all:hover::before {
    left: 100%;
}

/* Enhanced Animations */
@keyframes circleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(20px, -20px) rotate(120deg);
    }
    66% {
        transform: translate(-15px, 15px) rotate(240deg);
    }
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.05;
    }
    50% {
        opacity: 0.15;
    }
}

@keyframes ribbonFlow {
    0% {
        transform: translateX(-100%) rotate(15deg);
    }
    100% {
        transform: translateX(100%) rotate(15deg);
    }
}

@keyframes sparkleDrift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1000px 1000px;
    }
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

@keyframes orbPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
        filter: blur(1px);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
        filter: blur(2px);
    }
}

@keyframes ringExpand {
    0% {
        width: 0%;
        height: 0%;
        opacity: 1;
    }
    100% {
        width: 120%;
        height: 120%;
        opacity: 0;
    }
}

@keyframes sparkFly {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx, 100px), var(--ty, -100px));
        opacity: 0;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@keyframes progressLoad {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes rotateSlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(58, 134, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(58, 134, 255, 0.6);
    }
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }
    20%, 100% {
        left: 100%;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) translateX(var(--px, 0));
        opacity: 0;
    }
}

@keyframes mouseScroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

@keyframes mouseShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(10px);
    }
}

@keyframes labelShine {
    0% {
        left: -100%;
    }
    20%, 100% {
        left: 100%;
    }
}

@keyframes dividerMove {
    0% {
        left: -20px;
    }
    100% {
        left: 120px;
    }
}

@keyframes glareMove {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-visual {
        height: 400px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .nav-right {
        gap: 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(11, 11, 11, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 30px;
        border-bottom: 1px solid rgba(58, 134, 255, 0.2);
        backdrop-filter: blur(20px);
    }
    
    .menu-toggle {
        display: block;
    }
    
    .social-float {
        right: 20px;
    }
    
    .go-top {
        right: 20px;
        bottom: 20px;
    }
    
    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-float {
        flex-direction: row;
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        align-items: center;
    }
    
    .social-tooltip {
        display: none;
    }
    
    .social-label {
        display: none;
    }
    
    .social-icon:hover {
        transform: translateY(-10px) scale(1.1);
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-badge {
        padding: 8px 20px;
    }
    
    .hero-badge span {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 15px 30px;
    }
    
    .btn-hero {
        min-width: auto;
    }
    
    .loading-text {
        font-size: 1.2rem;
    }
    
    .hollow-purple-orb {
        width: 150px;
        height: 150px;
    }
    
    .short-card {
        flex: 0 0 280px;
    }
}