:root {
    --primary-bg-color: #0d1117;
    --primary-text-color: #c9d1d9;
    --secondary-text-color: #8b949e;
    --accent-color: #58a6ff;
    --border-color: #30363d;
    --font-family-headings: 'Orbitron', sans-serif;
    --font-family-body: 'Roboto', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--primary-bg-color);
    color: var(--primary-text-color);
    font-family: var(--font-family-body);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 50% 50% at 20% 40%, rgba(88, 166, 255, 0.1), transparent),
        radial-gradient(ellipse 50% 50% at 80% 60%, rgba(255, 0, 0, 0.1), transparent);
    animation: floating-glow 15s infinite ease-in-out alternate;
    z-index: -1;
}

@keyframes floating-glow {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(20px, 20px);
    }
}

.content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: 2rem;
}

.main-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 0.5rem;
}

.slogan {
    color: var(--secondary-text-color);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.intro-section {
    background: rgba(13, 17, 23, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    max-width: 600px;
}

.intro-title {
    font-family: var(--font-family-headings);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
}

.intro-text {
    color: var(--secondary-text-color);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: 2rem;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--primary-bg-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #79c0ff;
    transform: translateY(-2px);
}

.site-footer {
    padding: 1.5rem;
    text-align: center;
    color: var(--secondary-text-color);
    font-size: 0.9rem;
}