:root {
    --primary-color: #00ff9d;
    --secondary-color: #0066ff;
    --background-color: #0a0a0a;
    --text-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
}

.brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    opacity: 0.9;
}

.rotating-messages {
    height: 100px;
    overflow: hidden;
    margin: 2rem 0;
}

.message-container {
    animation: slide 28s linear infinite;
}

.message {
    font-size: 1.2rem;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.message:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.1);
}

.contact {
    margin-top: 2rem;
    font-size: 1.1rem;
}

.contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: var(--secondary-color);
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 255, 157, 0.6),
                     0 0 30px rgba(0, 255, 157, 0.4);
    }
}

@keyframes slide {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-700px);
    }
}

@media (max-width: 768px) {
    .brand {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .message {
        font-size: 1rem;
    }
} 