/*
Theme Name: AI Battle Bots Coming Soon
Author: System Admin
Description: A simple coming soon page for aibattlebots.chat
Version: 1.0
*/

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0b0c10;
    color: #c5c6c7;
    font-family: 'Courier New', Courier, monospace;
}

.container {
    text-align: center;
}

h1 {
    font-size: 3rem;
    color: #66fcf1;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-size: 1.5rem;
    color: #45a29e;
}

.bot-svg {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
    animation: hover 3s ease-in-out infinite;
}

@keyframes hover {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
