:root {
    --primary-color: #f6d101; /* Brawl Stars Yellow */
    --secondary-color: #0088ce; /* Brawl Stars Blue */
    --accent-color: #ff5e00; /* Brawl Stars Orange/Red */
    --dark-bg: #0d0d0d;
    --text-color: #ffffff;
    --font-family: 'Lilita One', cursive, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background: var(--dark-bg);
    color: var(--text-color);
    font-family: var(--font-family);
    overflow-x: hidden;
}

.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/bg.png') no-repeat center center fixed;
    background-size: cover;
    z-index: -1;
    filter: brightness(0.6);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

.logo {
    width: 180px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(246, 209, 1, 0.5));
    animation: bounce 2s infinite;
}

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

.card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px #000;
}

p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #ccc;
}

.btn {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    border-bottom: 4px solid #b34200;
    border-radius: 12px;
    color: #fff;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.1s;
    box-shadow: 0 5px 0 #b34200;
    width: 100%;
}

.btn:active {
    transform: translateY(4px);
    box-shadow: none;
}

.btn:hover {
    filter: brightness(1.1);
}

/* Bot Content Styling */
#bot-content {
    display: none;
}

.blog-post {
    text-align: left;
    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 20px auto;
}

.blog-post h2 { color: #000; }
