:root {
    --primary-color: #6C63FF;
    --primary-dark: #554FD8;
    --secondary-color: #FF6584;
    --accent-color: #36D1DC;
    --dark-bg: #0A0A14;
    --dark-card: #12121F;
    --dark-surface: #1A1A2E;
    --light-text: #F0F0F0;
    --light-secondary: #B8B8C7;
    --gradient-primary: linear-gradient(135deg, #6C63FF 0%, #36D1DC 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6584 0%, #FFB347 100%);
    --gradient-dark: linear-gradient(135deg, #12121F 0%, #1A1A2E 100%);
    --gradient-accent: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.2);
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(108, 99, 255, 0.3);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 101, 132, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(54, 209, 220, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 20, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 12px;
    color: var(--light-secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: var(--transition-fast);
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(108, 99, 255, 0.1);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--light-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.stat-number:hover {
    transform: scale(1.1);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(108, 99, 255, 0.5);
}

.stat-label {
    font-size: 14px;
    color: var(--light-secondary);
    margin-top: 5px;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-elements {
    position: relative;
    width: 400px;
    height: 400px;
}

.element {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.element:hover {
    box-shadow: var(--shadow-glow);
    border-color: rgba(108, 99, 255, 0.3);
}

.element.music:hover {
    transform: scale(1.1) rotate(5deg);
}

.element.video:hover {
    transform: scale(1.1) rotate(5deg);
}

.element.ai:hover {
    transform: translateX(-50%) scale(1.1);
}

.element.music {
    background: var(--gradient-primary);
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.element.video {
    background: var(--gradient-secondary);
    top: 50px;
    right: 50px;
    animation-delay: 2s;
}

.element.ai {
    background: var(--gradient-accent);
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

.element.ai:hover {
    transform: translateX(-50%) scale(1.1);
    animation: none;
    box-shadow: var(--shadow-glow);
    border-color: rgba(108, 99, 255, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Products Section */
.products {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--light-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--dark-card);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    transition: var(--transition-slow);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition-slow);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(108, 99, 255, 0.3);
}

.product-card:hover::after {
    left: 100%;
}

.product-card:hover::before {
    height: 8px;
}

.video-card::before {
    background: var(--gradient-secondary);
}

.product-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.product-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.25);
    padding: 8px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    filter: brightness(1.3) contrast(1.3) saturate(1.2);
}

.product-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 255, 255, 0.6);
    filter: brightness(1.5) contrast(1.5) saturate(1.3);
}

.product-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.product-description {
    color: var(--light-secondary);
    margin-bottom: 24px;
}

.product-features {
    list-style: none;
    margin-bottom: 32px;
}

.product-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.video-card .product-features li::before {
    color: var(--secondary-color);
}

.product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
    background-size: 200% 200%;
    background-position: left center;
}

.product-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.product-button.secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 101, 132, 0.3);
}

.product-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.product-button.primary:hover {
    background-position: right center;
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
}

.product-button.secondary:hover {
    background-position: right center;
    box-shadow: 0 8px 25px rgba(255, 101, 132, 0.4);
}

.arrow {
    margin-left: 10px;
    transition: var(--transition);
}

.product-button:hover .arrow {
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 24px;
    color: var(--light-secondary);
    font-size: 18px;
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.value {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.1), transparent);
    transition: var(--transition-slow);
}

.value:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md), 0 0 20px rgba(108, 99, 255, 0.2);
}

.value:hover::before {
    left: 100%;
}

.value-icon {
    font-size: 32px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.value:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-color);
}

.value-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.value h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.value p {
    font-size: 14px;
    color: var(--light-secondary);
}

.about-visual {
    flex: 1;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-item {
    background: var(--gradient-dark);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(54, 209, 220, 0.1), transparent);
    transition: var(--transition-slow);
}

.tech-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-md), 0 0 15px rgba(54, 209, 220, 0.2);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(18, 18, 31, 0.8) 100%);
}

.tech-item:hover::before {
    left: 100%;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    position: relative;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    z-index: -1;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: var(--light-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    min-width: 220px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    background-size: 200% 200%;
    background-position: left center;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--primary-color);
    background: linear-gradient(45deg, transparent 30%, rgba(108, 99, 255, 0.1) 50%, transparent 70%);
    background-size: 200% 200%;
    background-position: left center;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.cta-button.primary:hover {
    background-position: right center;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.5);
}

.cta-button.secondary:hover {
    background-position: right center;
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-surface);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand h3 {
    font-size: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--light-secondary);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light-text);
}

.footer-section a {
    color: var(--light-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--light-secondary);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 60px;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-content {
        flex-direction: column;
    }

    .values {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 20px;
    }

    .values {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .floating-elements {
        width: 300px;
        height: 300px;
    }

    .element {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Additional Animations and Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Loading animations */
.hero-content, .hero-visual, .products, .about, .cta {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content {
    animation-delay: 0.2s;
}

.hero-visual {
    animation-delay: 0.4s;
}

.products {
    animation-delay: 0.6s;
}

.about {
    animation-delay: 0.8s;
}

.cta {
    animation-delay: 1s;
}

/* Subtle pulse effect for important elements */
.element:hover {
    animation: pulse 2s infinite;
}

/* Shimmer effect for buttons */
.product-button:hover, .cta-button:hover {
    animation: shimmer 1.5s infinite;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}