* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #00ff88;
    --primary-teal: #00d4ff;
    --primary-blue: #0066ff;
    --dark-bg: #0a0e27;
    --dark-surface: #141b3d;
    --text-primary: #ffffff;
    --text-secondary: #b0b8d1;
    --gradient-1: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-teal) 100%);
    --gradient-2: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-blue) 100%);
    --gradient-full: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-teal) 50%, var(--primary-blue) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-teal);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 18s;
    background: var(--primary-green);
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 22s;
    background: var(--primary-blue);
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 19s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
    animation-duration: 21s;
    background: var(--primary-green);
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(50px) scale(1);
        opacity: 0;
    }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Animated Logo Section */
.animated-logo-section {
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    animation: fadeInDown 1s ease-out;
}

.logo-3d-container {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.logo-3d-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    animation: logo3DRotate 20s linear infinite;
}

.logo-3d {
    width: 100%;
    height: auto;
    max-width: 300px;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5)) drop-shadow(0 0 60px rgba(0, 255, 136, 0.3));
    animation: logoGlow 3s ease-in-out infinite;
    transform-style: preserve-3d;
}

.logo-3d-fallback {
    display: none;
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
}

.logo-3d-container:not(:has(.logo-3d[src*="PIXELX360.jpg"]:not([src=""]))) .logo-3d-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-3d-container:not(:has(.logo-3d[src*="PIXELX360.jpg"]:not([src=""]))) .logo-3d {
    display: none;
}

.logo-3d-text {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 3px;
    z-index: 3;
    position: relative;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    animation: textPulse 2s ease-in-out infinite;
}

.pixelx-3d {
    color: var(--text-primary);
    display: inline-block;
    animation: textFloat 3s ease-in-out infinite;
}

.three-sixty-3d {
    background: var(--gradient-full);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientShift 3s ease infinite, textFloat 3s ease-in-out infinite 0.5s;
    background-size: 200% 200%;
}

.logo-3d-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-radius: 50%;
    opacity: 0.3;
}

.ring-1 {
    width: 250px;
    height: 250px;
    border-color: var(--primary-teal);
    animation: orbitRotate 15s linear infinite;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.ring-2 {
    width: 280px;
    height: 280px;
    border-color: var(--primary-green);
    animation: orbitRotate 20s linear infinite reverse;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.ring-3 {
    width: 310px;
    height: 310px;
    border-color: var(--primary-blue);
    animation: orbitRotate 25s linear infinite;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.logo-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-teal);
    box-shadow: 0 0 10px currentColor;
    animation: particleOrbit 8s linear infinite;
}

.particle-dot:nth-child(1) {
    top: 10%;
    left: 50%;
    background: var(--primary-green);
    animation-duration: 6s;
    animation-delay: 0s;
}

.particle-dot:nth-child(2) {
    top: 50%;
    right: 10%;
    background: var(--primary-teal);
    animation-duration: 7s;
    animation-delay: 1s;
}

.particle-dot:nth-child(3) {
    bottom: 10%;
    left: 50%;
    background: var(--primary-blue);
    animation-duration: 8s;
    animation-delay: 2s;
}

.particle-dot:nth-child(4) {
    top: 50%;
    left: 10%;
    background: var(--primary-green);
    animation-duration: 6.5s;
    animation-delay: 0.5s;
}

.particle-dot:nth-child(5) {
    top: 20%;
    right: 20%;
    background: var(--primary-teal);
    animation-duration: 7.5s;
    animation-delay: 1.5s;
}

.particle-dot:nth-child(6) {
    bottom: 20%;
    right: 20%;
    background: var(--primary-blue);
    animation-duration: 8.5s;
    animation-delay: 2.5s;
}

.particle-dot:nth-child(7) {
    top: 30%;
    left: 20%;
    background: var(--primary-green);
    animation-duration: 6.8s;
    animation-delay: 0.8s;
}

.particle-dot:nth-child(8) {
    bottom: 30%;
    left: 20%;
    background: var(--primary-teal);
    animation-duration: 7.8s;
    animation-delay: 1.8s;
}

@keyframes logo3DRotate {
    0% {
        transform: rotateY(0deg) rotateX(10deg);
    }
    25% {
        transform: rotateY(90deg) rotateX(10deg);
    }
    50% {
        transform: rotateY(180deg) rotateX(10deg);
    }
    75% {
        transform: rotateY(270deg) rotateX(10deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(10deg);
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5)) drop-shadow(0 0 60px rgba(0, 255, 136, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(0, 212, 255, 0.8)) drop-shadow(0 0 100px rgba(0, 255, 136, 0.6));
    }
}

@keyframes orbitRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes particleOrbit {
    0% {
        transform: rotate(0deg) translateX(150px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: rotate(180deg) translateX(150px) rotate(-180deg) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(150px) rotate(-360deg) scale(1);
        opacity: 0.8;
    }
}

@keyframes textPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes textFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(2deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Coming Soon Section */
.coming-soon-section {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.coming-soon-badge {
    position: relative;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    border-radius: 50px;
    overflow: hidden;
    animation: badgeFloat 3s ease-in-out infinite;
}

.coming-soon-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-full);
    opacity: 0.3;
    transition: left 0.5s ease;
}

.coming-soon-badge:hover::before {
    left: 100%;
}

.badge-text {
    position: relative;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    background: var(--gradient-full);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    z-index: 1;
    animation: textShimmer 2s ease-in-out infinite;
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: var(--gradient-full);
    opacity: 0;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes textShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Content */
.content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.highlight {
    background: var(--gradient-full);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animated {
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-card:nth-child(1).animated { animation-delay: 0.1s; }
.feature-card:nth-child(2).animated { animation-delay: 0.3s; }
.feature-card:nth-child(3).animated { animation-delay: 0.5s; }

.feature-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover .feature-glow {
    opacity: 1;
    animation: rotateGlow 3s linear infinite;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.feature-card:nth-child(1) { animation-delay: 0.5s; }
.feature-card:nth-child(2) { animation-delay: 0.7s; }
.feature-card:nth-child(3) { animation-delay: 0.9s; }

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-teal);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-card:nth-child(1) .feature-icon {
    animation-delay: 0s;
}

.feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
    animation-delay: 1s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.3) rotate(10deg);
    filter: grayscale(0);
    animation-play-state: paused;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

/* Notify Section */
.notify-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.notify-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.email-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--primary-teal);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 1rem;
    padding: 1rem 1.5rem;
    font-family: inherit;
}

.input-group input::placeholder {
    color: var(--text-secondary);
}

.submit-btn {
    background: var(--gradient-full);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    color: var(--dark-bg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.submit-btn:active {
    transform: scale(0.98);
}

.form-message {
    font-size: 0.9rem;
    min-height: 1.5rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.form-message.success {
    color: var(--primary-green);
}

.form-message.error {
    color: #ff4444;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-full);
    border-color: transparent;
    color: var(--dark-bg);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    animation: fadeIn 1s ease-out 1.4s both;
}

.footer-attribution {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.footer-attribution a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-attribution a:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.stat-item.animated {
    animation: fadeInUp 0.8s ease-out forwards;
}

.stat-item:nth-child(1).animated { animation-delay: 0.2s; }
.stat-item:nth-child(2).animated { animation-delay: 0.4s; }
.stat-item:nth-child(3).animated { animation-delay: 0.6s; }

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-full);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
    animation: numberPulse 2s ease-in-out infinite;
}

.stat-number::after {
    content: '+';
    color: var(--primary-teal);
    margin-left: 0.2rem;
}

.stat-item:nth-child(2) .stat-number::after {
    content: '%';
}

.stat-item:nth-child(3) .stat-number::after {
    content: '/7';
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Title Animation */
.main-title .title-line {
    display: inline-block;
    opacity: 0;
    animation: titleSlideIn 0.8s ease-out forwards;
}

.main-title .title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.main-title .title-line:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Subtitle Animation */
.subtitle {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* Enhanced Input Animation */
.input-group {
    animation: inputSlideIn 0.8s ease-out 1.4s both;
}

@keyframes inputSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Social Links Animation */
.social-links {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.6s forwards;
}

.social-link {
    animation: socialBounce 0.5s ease-out both;
}

.social-link:nth-child(1) { animation-delay: 1.8s; }
.social-link:nth-child(2) { animation-delay: 2s; }
.social-link:nth-child(3) { animation-delay: 2.2s; }
.social-link:nth-child(4) { animation-delay: 2.4s; }

@keyframes socialBounce {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Scroll Reveal Animation */
[data-animate] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

[data-animate].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .container {
        padding: 1.5rem;
    }
    
    .coming-soon-section {
        margin-bottom: 2rem;
        gap: 1.5rem;
    }
    
    .coming-soon-badge {
        padding: 0.75rem 2rem;
    }
    
    .badge-text {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .logo-3d-container {
        width: 280px;
        height: 280px;
    }

    .logo-3d-wrapper {
        width: 250px;
        height: 250px;
    }

    .logo-3d {
        max-width: 250px;
    }

    .logo-3d-fallback {
        width: 250px;
        height: 250px;
    }

    .logo-3d-text {
        font-size: 2.5rem;
    }

    .ring-1 {
        width: 200px;
        height: 200px;
    }

    .ring-2 {
        width: 230px;
        height: 230px;
    }

    .ring-3 {
        width: 260px;
        height: 260px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .input-group {
        flex-direction: column;
        border-radius: 20px;
        padding: 0.5rem;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }

    .social-links {
        flex-wrap: wrap;
    }
}

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

    .subtitle {
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

