* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 25%, #200505 50%, #1a0a0a 75%, #000000 100%);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    user-select: none;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 68, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 68, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 0, 68, 0.025) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    display: block;
    min-height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 75px;
    width: 100vw;
    height: calc(100vh - 75px);
}

.holographic-title {
    font-size: 4.5rem;
    font-weight: 800;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 3px;
    background: linear-gradient(
        45deg,
        #ffffff 0%,
        #ff0044 10%,
        #ffffff 20%,
        #fa1e4e 30%,
        #ffffff 40%,
        #ff0066 50%,
        #ffffff 60%,
        #ff0044 70%,
        #ffffff 80%,
        #fa1e4e 90%,
        #ffffff 100%
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holographic 4s ease-in-out infinite;
    text-shadow: 
        0 0 20px rgba(255, 0, 68, 0.5),
        0 0 40px rgba(255, 0, 68, 0.3),
        0 0 60px rgba(255, 0, 68, 0.2),
        0 0 80px rgba(255, 0, 68, 0.1);
    position: relative;
    filter: drop-shadow(0 0 20px rgba(255, 0, 68, 0.4));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 2rem;
    transform: translateY(-2rem);
}

.holographic-title::before {
    content: 'Void Network V5';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 0, 68, 0.2) 50%, transparent 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.holographic-title::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        rgba(255, 0, 68, 0.1), 
        transparent, 
        rgba(255, 0, 68, 0.1)
    );
    border-radius: 20px;
    filter: blur(20px);
    opacity: 0.6;
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes holographic {
    0%, 100% { 
        background-position: 0% 50%;
        transform: perspective(1000px) rotateY(0deg) scale(1);
    }
    25% { 
        background-position: 50% 25%;
        transform: perspective(1000px) rotateY(1deg) scale(1.02);
    }
    50% { 
        background-position: 100% 50%;
        transform: perspective(1000px) rotateY(0deg) scale(1);
    }
    75% { 
        background-position: 50% 75%;
        transform: perspective(1000px) rotateY(-1deg) scale(1.02);
    }
}

@keyframes shimmer {
    0% { 
        background-position: -300% 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% { 
        background-position: 300% 0;
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar {
    width: 100%;
    height: 60px;
    background: linear-gradient(
        135deg,
        rgba(255, 0, 68, 0.08),
        rgba(0, 0, 0, 0.6),
        rgba(255, 0, 68, 0.05)
    );
    border: 2px solid rgba(255, 0, 68, 0.2);
    border-radius: 30px;
    padding: 0 60px 0 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    backdrop-filter: blur(20px) saturate(150%) brightness(110%);
    -webkit-backdrop-filter: blur(20px) saturate(150%) brightness(110%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(255, 0, 68, 0.1),
        inset 0 1px 0 rgba(255, 0, 68, 0.2),
        inset 0 -1px 0 rgba(255, 0, 68, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    outline: none;
}

.search-bar::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.search-bar:focus {
    background: linear-gradient(
        135deg,
        rgba(255, 0, 68, 0.15),
        rgba(0, 0, 0, 0.5),
        rgba(255, 0, 68, 0.1)
    );
    border-color: rgba(255, 0, 68, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 6px 20px rgba(255, 0, 68, 0.2),
        inset 0 1px 0 rgba(255, 0, 68, 0.3),
        inset 0 -1px 0 rgba(255, 0, 68, 0.2),
        0 0 30px rgba(255, 0, 68, 0.3);
    transform: translateY(-2px) scale(1.02);
}

.search-bar:focus::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: rgba(255, 0, 68, 0.6);
    pointer-events: none;
    transition: all 0.4s ease;
}

.search-bar:focus + .search-icon {
    color: rgba(255, 0, 68, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.search-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, 
        rgba(255, 0, 68, 0.8) 0%,
        rgba(255, 0, 68, 0.4) 50%,
        transparent 100%
    );
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 0, 68, 0.3);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
        opacity: 0.3; 
    }
    25% { 
        transform: translateY(-15px) rotate(90deg) scale(1.2); 
        opacity: 0.7; 
    }
    50% { 
        transform: translateY(-30px) rotate(180deg) scale(0.8); 
        opacity: 1; 
    }
    75% { 
        transform: translateY(-15px) rotate(270deg) scale(1.1); 
        opacity: 0.6; 
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-bottom: 70px;
        height: calc(100vh - 70px);
    }
    
    .holographic-title {
        font-size: 2.8rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
        transform: translateY(-1.5rem);
    }

    .search-container {
        max-width: 450px;
    }

    .search-bar {
        height: 55px;
        font-size: 15px;
        padding: 0 55px 0 20px;
    }

    .search-icon {
        right: 18px;
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .holographic-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
        transform: translateY(-1rem);
    }

    .search-container {
        max-width: 350px;
    }

    .search-bar {
        height: 50px;
        font-size: 14px;
        padding: 0 50px 0 18px;
    }

    .search-icon {
        right: 15px;
        width: 16px;
        height: 16px;
    }
    
    .main-content {
        margin-bottom: 65px;
        height: calc(100vh - 65px);
    }
}
/* mobile things */
@media screen and (max-width: 768px) {
    body {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 25%, #200505 50%, #1a0a0a 75%, #000000 100%) !important;
        background-attachment: scroll !important;
    }
    
    body::before {
        background: 
            radial-gradient(circle at 20% 30%, rgba(255, 0, 68, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(255, 0, 68, 0.02) 0%, transparent 50%),
            radial-gradient(circle at 40% 80%, rgba(255, 0, 68, 0.025) 0%, transparent 50%) !important;
    }
}

@media screen and (max-width: 480px) {
    .search-bar, .contact-container, .app-card, .game-card {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .search-bar:focus, .contact-container:hover, .app-card:hover, .game-card:hover {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}
