/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #000;
    color: #fff;
    overflow: hidden;
    height: 100vh;
    position: relative;
}

/* Container and Layout */
.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(ellipse at center, #2d1b3d 0%, #1a0f2e 30%, #0f0820 60%, #000510 100%);
}

/* Background Grid Overlay */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(138, 43, 226, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 43, 226, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Background Elements */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Data Cubes */
.data-cube {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid;
    transform-style: preserve-3d;
    animation: floatCube 6s ease-in-out infinite;
}

.cube-1 {
    top: 10%;
    left: 15%;
    border-color: #dda0dd;
    animation-delay: 0s;
}

.cube-2 {
    top: 20%;
    right: 20%;
    border-color: #da70d6;
    animation-delay: 1s;
}

.cube-3 {
    bottom: 30%;
    left: 10%;
    border-color: #9370db;
    animation-delay: 2s;
}

.cube-4 {
    bottom: 15%;
    right: 15%;
    border-color: #8a2be2;
    animation-delay: 3s;
}

.cube-5 {
    top: 50%;
    left: 5%;
    border-color: #ba55d3;
    animation-delay: 4s;
}

@keyframes floatCube {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
        box-shadow: 0 0 20px currentColor;
    }
    25% {
        transform: translateY(-20px) rotateX(90deg) rotateY(90deg);
        box-shadow: 0 0 40px currentColor;
    }
    50% {
        transform: translateY(-10px) rotateX(180deg) rotateY(180deg);
        box-shadow: 0 0 60px currentColor;
    }
    75% {
        transform: translateY(-30px) rotateX(270deg) rotateY(270deg);
        box-shadow: 0 0 40px currentColor;
    }
}

/* Network Nodes */
.network-node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dda0dd;
    box-shadow: 0 0 20px #dda0dd, 0 0 40px rgba(221, 160, 221, 0.3);
    animation: nodePulse 3s ease-in-out infinite;
}

.node-1 { top: 25%; left: 30%; animation-delay: 0s; }
.node-2 { top: 35%; right: 25%; animation-delay: 0.5s; }
.node-3 { bottom: 40%; left: 35%; animation-delay: 1s; }
.node-4 { bottom: 25%; right: 30%; animation-delay: 1.5s; }
.node-5 { top: 60%; left: 70%; animation-delay: 2s; }
.node-6 { top: 15%; right: 45%; animation-delay: 2.5s; }

@keyframes nodePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Data Streams */
.data-stream {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #dda0dd, #ba55d3, transparent);
    animation: streamFlow 2s linear infinite;
}

.stream-1 { top: 10%; left: 25%; }
.stream-2 { top: 20%; right: 35%; animation-delay: 0.5s; }
.stream-3 { bottom: 30%; left: 60%; animation-delay: 1s; }
.stream-4 { bottom: 10%; right: 50%; animation-delay: 1.5s; }

@keyframes streamFlow {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100px);
        opacity: 0;
    }
}

/* Tao Symbols */
.tao-symbol {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid;
    animation: taoRotate 8s linear infinite;
}

.tao-symbol::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.tao-symbol::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #000;
    transform: translate(-50%, -50%);
}

.tao-1 {
    top: 30%;
    left: 80%;
    border-color: #dda0dd;
    color: #dda0dd;
}

.tao-2 {
    bottom: 60%;
    left: 20%;
    border-color: #da70d6;
    color: #da70d6;
}

.tao-3 {
    top: 70%;
    right: 10%;
    border-color: #9370db;
    color: #9370db;
}

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

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Logo Container */
.logo-container {
    position: relative;
    margin-bottom: 60px;
}

/* Quantum Field */
.quantum-field {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    pointer-events: none;
}

.quantum-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #dda0dd;
    box-shadow: 0 0 15px #dda0dd, 0 0 30px rgba(221, 160, 221, 0.4);
    animation: quantumFloat 4s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 30%; right: 20%; animation-delay: 1s; }
.particle-3 { bottom: 30%; left: 30%; animation-delay: 2s; }
.particle-4 { bottom: 20%; right: 30%; animation-delay: 3s; }

@keyframes quantumFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

/* Main Title */
.main-title {
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    margin: 0;
    line-height: 0.9;
    position: relative;
    text-shadow: 
        0 0 25px #dda0dd,
        0 0 50px #ba55d3,
        0 0 75px #9370db;
    animation: titleGlow 3s ease-in-out infinite;
}

.title-line {
    display: block;
    background: linear-gradient(45deg, #dda0dd, #da70d6, #9370db, #8a2be2, #ba55d3);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 25px #dda0dd,
            0 0 50px #ba55d3,
            0 0 75px #9370db;
    }
    33% {
        text-shadow: 
            0 0 30px #da70d6,
            0 0 60px #8a2be2,
            0 0 90px #9370db;
    }
    66% {
        text-shadow: 
            0 0 35px #ba55d3,
            0 0 70px #dda0dd,
            0 0 105px #da70d6;
    }
}

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

/* Subtitle Container */
.subtitle-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}

.quantum-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dda0dd, #ba55d3, transparent);
    animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: #dda0dd;
    text-shadow: 0 0 15px #dda0dd, 0 0 30px rgba(221, 160, 221, 0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Coming Soon Container */
.coming-soon-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Status Indicator */
.status-indicator {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    border: 2px solid #dda0dd;
    border-radius: 50%;
    animation: pulseRing 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

.pulse-ring:nth-child(1) { animation-delay: 0s; }
.pulse-ring:nth-child(2) { animation-delay: 0.7s; }
.pulse-ring:nth-child(3) { animation-delay: 1.4s; }

@keyframes pulseRing {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }
    100% {
        width: 60px;
        height: 60px;
        opacity: 0;
    }
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #dda0dd;
    border-radius: 50%;
    box-shadow: 0 0 25px #dda0dd, 0 0 50px rgba(221, 160, 221, 0.4);
    z-index: 1;
}

/* Coming Soon Text */
.coming-soon-text {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #da70d6;
    text-shadow: 0 0 25px #da70d6, 0 0 50px rgba(218, 112, 214, 0.5);
    letter-spacing: 0.2em;
    animation: textFlicker 3s ease-in-out infinite;
}

@keyframes textFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.description {
    font-size: 1.1rem;
    color: #ba55d3;
    text-shadow: 0 0 15px #ba55d3, 0 0 30px rgba(186, 85, 211, 0.3);
    letter-spacing: 0.1em;
    max-width: 400px;
    line-height: 1.4;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.connection-line {
    stroke-width: 1;
    opacity: 0.6;
    animation: lineGlow 4s ease-in-out infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 1.3s; }
.line-3 { animation-delay: 2.6s; }

@keyframes lineGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Footer */
.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.footer-text {
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

/* Enhanced Responsive Design */

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
    .main-title {
        font-size: 6rem;
    }
    
    .coming-soon-text {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
    
    .description {
        font-size: 1.3rem;
        max-width: 600px;
    }
    
    .data-cube {
        width: 80px;
        height: 80px;
    }
    
    .quantum-field {
        width: 400px;
        height: 250px;
    }
}

/* Standard Desktop (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .main-title {
        font-size: 5.5rem;
    }
    
    .coming-soon-text {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .description {
        font-size: 1.2rem;
        max-width: 500px;
    }
}

/* Tablet Landscape (768px - 1023px) - Balanced Complexity */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Keep most elements but optimize spacing */
    .data-cube {
        width: 45px;
        height: 45px;
    }
    
    .gpu-cluster {
        transform: scale(0.85);
    }
    
    .neural-network {
        transform: scale(0.75);
    }
    
    .main-title {
        font-size: 4rem;
    }
    
    .coming-soon-text {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
        letter-spacing: 0.2em;
    }
    
    .description {
        font-size: 1.1rem;
        padding: 0 30px;
        max-width: 500px;
    }
    
    .quantum-field {
        width: 250px;
        height: 180px;
    }
    
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
        max-width: 500px;
    }
    
    .feature-item {
        padding: 18px 15px;
        min-height: 90px;
    }
    
    .grid-overlay {
        background-size: 40px 40px;
    }
}

/* Tablet Portrait (480px - 767px) - Balanced View */
@media (min-width: 480px) and (max-width: 767px) {
    /* Reduce background complexity but keep some elements */
    .data-cube {
        width: 35px;
        height: 35px;
    }
    
    .data-cube:nth-child(n+4) {
        display: none; /* Hide excess cubes */
    }
    
    .network-node:nth-child(n+5) {
        display: none; /* Keep only 4 nodes */
    }
    
    .data-stream:nth-child(n+3) {
        display: none; /* Keep only 2 streams */
    }
    
    .tao-symbol:nth-child(n+3) {
        display: none; /* Keep only 2 symbols */
    }
    
    .gpu-cluster {
        transform: scale(0.7);
    }
    
    .cluster-3 {
        display: none; /* Hide third cluster */
    }
    
    .neural-network {
        transform: scale(0.6);
    }
    
    /* Optimize main content */
    .main-content {
        padding: 25px 20px;
    }
    
    .main-title {
        font-size: 3.2rem;
    }
    
    .coming-soon-text {
        font-size: 1.6rem;
    }
    
    .subtitle {
        font-size: 1rem;
        letter-spacing: 0.15em;
        line-height: 1.3;
    }
    
    .description {
        font-size: 1.05rem;
        padding: 0 25px;
        max-width: 450px;
        line-height: 1.5;
    }
    
    .quantum-field {
        width: 180px;
        height: 140px;
    }
    
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        max-width: 400px;
    }
    
    .feature-item {
        padding: 15px 12px;
        min-height: 80px;
    }
    
    .feature-icon {
        width: 22px;
        height: 22px;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    .grid-overlay {
        background-size: 35px 35px;
        opacity: 0.2;
    }
    
    /* Reduce animation intensity */
    .container::after {
        opacity: 0.3;
    }
    
    .dreamy-particles::before {
        opacity: 0.4;
    }
}

/* Mobile (320px - 479px) - Clean & Organized */
@media (max-width: 479px) {
    /* Hide complex background elements for cleaner look */
    .data-cube {
        display: none;
    }
    
    .network-node {
        display: none;
    }
    
    .data-stream {
        display: none;
    }
    
    .tao-symbol {
        display: none;
    }
    
    .gpu-cluster {
        display: none;
    }
    
    .neural-network {
        display: none;
    }
    
    .connection-lines {
        display: none;
    }
    
    /* Simplify grid overlay */
    .grid-overlay {
        background-size: 40px 40px;
        opacity: 0.1;
    }
    
    /* Optimize main content layout */
    .main-content {
        padding: 20px 15px;
        gap: 25px;
    }
    
    .logo-container {
        margin-bottom: 30px;
    }
    
    .main-title {
        font-size: 2.8rem;
        line-height: 0.9;
        margin-bottom: 15px;
    }
    
    .subtitle-container {
        margin-top: 15px;
        gap: 15px;
    }
    
    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.15em;
        line-height: 1.3;
        max-width: 280px;
        word-wrap: break-word;
    }
    
    .quantum-divider {
        width: 25px;
        height: 1px;
    }
    
    /* Clean coming soon section */
    .coming-soon-container {
        gap: 20px;
        margin-top: 35px;
    }
    
    .coming-soon-text {
        font-size: 1.4rem;
        letter-spacing: 0.15em;
        margin-bottom: 10px;
    }
    
    .description {
        font-size: 1rem;
        padding: 0 20px;
        max-width: 300px;
        line-height: 1.5;
        text-align: center;
    }
    
    /* Streamlined features */
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 25px;
        max-width: 280px;
    }
    
    .feature-item {
        padding: 12px 8px;
        gap: 6px;
        border-radius: 6px;
        min-height: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .feature-icon {
        width: 20px;
        height: 20px;
        margin-bottom: 4px;
    }
    
    .feature-text {
        font-size: 0.85rem;
        line-height: 1.2;
        text-align: center;
    }
    
    /* Cleaner status indicator */
    .status-indicator {
        width: 50px;
        height: 50px;
    }
    
    .pulse-ring {
        max-width: 50px;
        max-height: 50px;
    }
    
    .status-dot {
        width: 10px;
        height: 10px;
    }
    
    /* Simplified quantum field */
    .quantum-field {
        width: 120px;
        height: 100px;
    }
    
    .quantum-particle {
        width: 3px;
        height: 3px;
    }
    
    /* Footer optimization */
    .footer {
        margin-top: 20px;
    }
    
    .footer-text {
        font-size: 0.8rem;
        padding: 0 20px;
        line-height: 1.3;
    }
    
    /* Container breathing effect - reduce intensity */
    .container {
        animation: none;
    }
    
    /* Reduce particle system intensity */
    .dreamy-particles::before {
        opacity: 0.3;
    }
    
    /* Simplify aurora effect */
    .container::after {
        opacity: 0.2;
    }
}

/* Performance Optimizations */
.data-cube,
.network-node,
.data-stream,
.tao-symbol,
.quantum-particle {
    will-change: transform;
}

.main-title,
.coming-soon-text {
    will-change: text-shadow;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #dda0dd, #ba55d3, #9370db);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #da70d6, #8a2be2, #dda0dd);
}

/* Lavender Dream Effects */
.lavender-glow {
    box-shadow: 
        0 0 20px #dda0dd,
        0 0 40px rgba(221, 160, 221, 0.6),
        0 0 60px rgba(221, 160, 221, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.dreamy-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.dreamy-particles::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, transparent 20%, rgba(221, 160, 221, 0.03) 21%, rgba(221, 160, 221, 0.03) 25%, transparent 26%),
                radial-gradient(circle, transparent 30%, rgba(186, 85, 211, 0.02) 31%, rgba(186, 85, 211, 0.02) 35%, transparent 36%);
    background-size: 50px 50px, 80px 80px;
    animation: dreamyFloat 20s linear infinite;
}

@keyframes dreamyFloat {
    0% { transform: rotate(0deg) translate(-50%, -50%); }
    100% { transform: rotate(360deg) translate(-50%, -50%); }
}

/* Enhanced lavender floating effect */
@keyframes lavenderFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        filter: hue-rotate(0deg) brightness(1) saturate(1);
        box-shadow: 0 0 15px currentColor;
    }
    25% {
        transform: translateY(-15px) rotate(90deg);
        filter: hue-rotate(15deg) brightness(1.3) saturate(1.2);
        box-shadow: 0 0 25px currentColor, 0 0 50px rgba(221, 160, 221, 0.3);
    }
    50% {
        transform: translateY(-8px) rotate(180deg);
        filter: hue-rotate(30deg) brightness(1.5) saturate(1.4);
        box-shadow: 0 0 35px currentColor, 0 0 70px rgba(186, 85, 211, 0.4);
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        filter: hue-rotate(15deg) brightness(1.2) saturate(1.1);
        box-shadow: 0 0 20px currentColor, 0 0 40px rgba(218, 112, 214, 0.3);
    }
}

/* Mystical aurora background */
.container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(221, 160, 221, 0.08) 40%, 
        rgba(186, 85, 211, 0.06) 50%, 
        rgba(218, 112, 214, 0.05) 60%, 
        transparent 70%);
    background-size: 400% 400%;
    animation: auroraShift 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes auroraShift {
    0%, 100% { background-position: 0% 50%; opacity: 0.3; }
    25% { background-position: 100% 0%; opacity: 0.6; }
    50% { background-position: 100% 100%; opacity: 0.4; }
    75% { background-position: 0% 100%; opacity: 0.5; }
}

/* Enhanced pulse effect for lavender theme */
@keyframes lavenderPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 15px currentColor;
    }
    50% {
        transform: scale(1.8);
        opacity: 1;
        box-shadow: 0 0 30px currentColor, 0 0 60px rgba(221, 160, 221, 0.4);
    }
}

/* Apply lavender effects to existing elements */
.data-cube {
    animation: lavenderFloat 6s ease-in-out infinite;
}

.network-node {
    animation: lavenderPulse 3s ease-in-out infinite;
}

/* Dreamy text shadow variations */
.main-title.dreamy-variant {
    text-shadow: 
        0 0 10px #e6e6fa,
        0 0 20px #dda0dd,
        0 0 30px #da70d6,
        0 0 40px #ba55d3,
        0 0 50px #9370db,
        0 0 60px #8a2be2;
}

/* Lavender sparkle effect */
@keyframes lavenderSparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.sparkle-effect {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #e6e6fa;
    border-radius: 50%;
    animation: lavenderSparkle 2s ease-in-out infinite;
}

/* Breathing effect for the main container */
@keyframes lavenderBreathe {
    0%, 100% { 
        box-shadow: inset 0 0 100px rgba(221, 160, 221, 0.1);
        background-size: 100% 100%;
    }
    50% { 
        box-shadow: inset 0 0 150px rgba(186, 85, 211, 0.15);
        background-size: 110% 110%;
    }
}

.container {
    animation: lavenderBreathe 8s ease-in-out infinite;
}

/* Mobile-specific optimizations */
@media (max-width: 767px) {
    /* Simplify background animations */
    .background-elements {
        opacity: 0.7;
    }
    
    /* Ensure readable text */
    .main-title,
    .coming-soon-text,
    .subtitle,
    .description {
        text-shadow: 
            0 0 10px rgba(221, 160, 221, 0.8),
            0 0 20px rgba(221, 160, 221, 0.4);
    }
    
    /* Optimize touch targets */
    .feature-item {
        min-height: 60px;
        touch-action: manipulation;
    }
    
    /* Reduce motion for better mobile performance */
    @media (prefers-reduced-motion: reduce) {
        .container,
        .data-cube,
        .network-node,
        .gpu-cluster,
        .neural-network {
            animation: none;
        }
    }
}

/* Ultra-wide mobile screens */
@media (max-width: 479px) and (min-aspect-ratio: 2/1) {
    .main-content {
        padding: 15px;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .coming-soon-container {
        margin-top: 20px;
    }
    
    .features-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .feature-item {
        padding: 8px 4px;
        min-height: 50px;
    }
    
    .feature-text {
        font-size: 0.7rem;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .main-title {
        font-size: 2.4rem;
    }
    
    .subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.1em;
    }
    
    .description {
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    .features-container {
        max-width: 250px;
    }
    
    .feature-item {
        padding: 10px 6px;
    }
    
    /* Social media mobile optimization */
    .social-media-container {
        margin-top: 25px;
    }
    
    .social-title {
        font-size: 0.85rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 200px;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
}

/* GPU Cluster Visualization */
.gpu-cluster {
    position: absolute;
    width: 80px;
    height: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    padding: 8px;
    border: 2px solid transparent;
    border-radius: 8px;
    background: linear-gradient(45deg, rgba(221, 160, 221, 0.1), rgba(186, 85, 211, 0.1));
    backdrop-filter: blur(5px);
    animation: gpuClusterPulse 4s ease-in-out infinite;
}

.cluster-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.cluster-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.3s;
}

.cluster-3 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2.6s;
}

.gpu-core {
    background: #dda0dd;
    border: 1px solid #ba55d3;
    border-radius: 4px;
    box-shadow: 0 0 8px #dda0dd;
    animation: gpuCoreActivity 2s ease-in-out infinite;
}

.core-1 { animation-delay: 0s; }
.core-2 { animation-delay: 0.25s; }
.core-3 { animation-delay: 0.5s; }
.core-4 { animation-delay: 0.75s; }

@keyframes gpuClusterPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(221, 160, 221, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(221, 160, 221, 0.6), 0 0 50px rgba(186, 85, 211, 0.3);
    }
}

@keyframes gpuCoreActivity {
    0%, 100% {
        background: #dda0dd;
        box-shadow: 0 0 8px #dda0dd;
    }
    25% {
        background: #da70d6;
        box-shadow: 0 0 15px #da70d6;
    }
    50% {
        background: #ba55d3;
        box-shadow: 0 0 20px #ba55d3;
    }
    75% {
        background: #9370db;
        box-shadow: 0 0 15px #9370db;
    }
}

/* AI Neural Network Visualization */
.neural-network {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 120px;
    height: 160px;
}

.neural-node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dda0dd;
    box-shadow: 0 0 10px #dda0dd;
    animation: neuralActivity 3s ease-in-out infinite;
}

/* Input Layer */
.node-input-1 {
    top: 10%;
    left: 0%;
    animation-delay: 0s;
}

.node-input-2 {
    top: 40%;
    left: 0%;
    animation-delay: 0.2s;
}

.node-input-3 {
    top: 70%;
    left: 0%;
    animation-delay: 0.4s;
}

/* Hidden Layer */
.node-hidden-1 {
    top: 15%;
    left: 50%;
    animation-delay: 0.6s;
}

.node-hidden-2 {
    top: 45%;
    left: 50%;
    animation-delay: 0.8s;
}

.node-hidden-3 {
    top: 75%;
    left: 50%;
    animation-delay: 1s;
}

/* Output Layer */
.node-output-1 {
    top: 30%;
    right: 0%;
    animation-delay: 1.2s;
}

.node-output-2 {
    top: 60%;
    right: 0%;
    animation-delay: 1.4s;
}

@keyframes neuralActivity {
    0%, 100% {
        transform: scale(1);
        background: #dda0dd;
        box-shadow: 0 0 10px #dda0dd;
    }
    25% {
        transform: scale(1.3);
        background: #da70d6;
        box-shadow: 0 0 20px #da70d6;
    }
    50% {
        transform: scale(1.6);
        background: #ba55d3;
        box-shadow: 0 0 30px #ba55d3, 0 0 60px rgba(186, 85, 211, 0.3);
    }
    75% {
        transform: scale(1.2);
        background: #9370db;
        box-shadow: 0 0 25px #9370db;
    }
}

/* Features Container */
.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    max-width: 600px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    border: 1px solid rgba(221, 160, 221, 0.3);
    border-radius: 8px;
    background: rgba(221, 160, 221, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    animation: featureFloat 4s ease-in-out infinite;
}

.feature-item:nth-child(1) { animation-delay: 0s; }
.feature-item:nth-child(2) { animation-delay: 0.5s; }
.feature-item:nth-child(3) { animation-delay: 1s; }
.feature-item:nth-child(4) { animation-delay: 1.5s; }

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #dda0dd;
    background: rgba(221, 160, 221, 0.1);
    box-shadow: 0 5px 20px rgba(221, 160, 221, 0.3);
}

.feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px currentColor;
}

.gpu-icon {
    background: radial-gradient(circle, #dda0dd, #ba55d3);
    color: #dda0dd;
}

.ai-icon {
    background: radial-gradient(circle, #da70d6, #9370db);
    color: #da70d6;
}

.network-icon {
    background: radial-gradient(circle, #ba55d3, #8a2be2);
    color: #ba55d3;
}

.scale-icon {
    background: radial-gradient(circle, #9370db, #dda0dd);
    color: #9370db;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #dda0dd;
    text-shadow: 0 0 5px #dda0dd;
    letter-spacing: 0.05em;
    text-align: center;
}

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

/* Social Media Section */
.social-media-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ba55d3;
    text-shadow: 0 0 10px #ba55d3;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid rgba(221, 160, 221, 0.3);
    border-radius: 25px;
    background: rgba(221, 160, 221, 0.05);
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: #dda0dd;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(221, 160, 221, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: #dda0dd;
    background: rgba(221, 160, 221, 0.1);
    box-shadow: 0 8px 25px rgba(221, 160, 221, 0.3);
    color: #fff;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.discord-icon {
    background: linear-gradient(45deg, #5865f2, #7289da);
    color: white;
}

.twitter-icon {
    background: linear-gradient(45deg, #1da1f2, #14171a);
    color: white;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px currentColor;
}

.social-text {
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* Social media animations */
@keyframes socialPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(221, 160, 221, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(221, 160, 221, 0.5);
    }
}

.social-link {
    animation: socialPulse 4s ease-in-out infinite;
}

.discord-link {
    animation-delay: 0s;
}

.twitter-link {
    animation-delay: 0.5s;
}

/* Responsive Social Media Styles */

/* Tablet Portrait */
@media (min-width: 480px) and (max-width: 767px) {
    .social-media-container {
        margin-top: 35px;
    }
    
    .social-title {
        font-size: 0.95rem;
    }
    
    .social-links {
        gap: 18px;
    }
    
    .social-link {
        padding: 11px 14px;
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 22px;
        height: 22px;
    }
}

/* Mobile */
@media (max-width: 479px) {
    .social-media-container {
        margin-top: 30px;
    }
    
    .social-title {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
}
