@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

body {
    margin: 0;
    overflow: hidden;
    background: #000;
    font-family: 'Audiowide', sans-serif;
    min-height: 100vh;
    position: relative;
    touch-action: none;
}

.nebula {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(20,241,149,0.3), rgba(255,0,255,0.2), rgba(0,183,235,0.2), rgba(255,153,0,0.1), rgba(255,85,85,0.1), transparent);
    animation: pulse 10s ease-in-out infinite;
    z-index: 1;
    opacity: 0.5;
}

.text-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    text-transform: uppercase;
    width: 90%;
    max-width: 800px;
}

h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #14f195;
    text-shadow: 0 0 10px #14f195, 0 0 20px #ff00ff;
    animation: glow 3s ease-in-out infinite alternate;
}

p {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #14f195;
}

.x-logo {
    width: 70px; /* Increased from 60px */
    margin-top: 20px;
    transition: transform 0.3s;
}

.x-logo:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    p { font-size: 1.2rem; }
    .x-logo { width: 60px; } /* Increased from 50px */
}

@media (max-width: 480px) {
    h1 { font-size: 1.4rem; }
    p { font-size: 1rem; }
    .x-logo { width: 50px; } /* Increased from 40px */
}

@keyframes glow {
    from { text-shadow: 0 0 10px #14f195, 0 0 20px #ff00ff, 0 0 30px #f90; }
    to { text-shadow: 0 0 20px #14f195, 0 0 30px #ff00ff, 0 0 40px #f90; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}