/* General Body and Container Styles */
body {
    font-family: 'Roboto Mono', monospace;
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header Styles */
header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(5px);
    color: #ffffff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2;
    border-bottom: 1px solid #00ff00;
}

header .logo {
    float: left;
    font-size: 24px;
    font-weight: bold;
}

header nav {
    float: right;
    margin-top: 5px;
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 15px;
}

header a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
}

header a:hover {
    color: #00ff00;
}

/* Hero Section */
#hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.hero p {
    font-size: 1.5rem;
}

.btn {
    display: inline-block;
    background: #00ff00;
    color: #0a0a0a;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.btn:hover {
    background: #00b300;
    color: #ffffff;
}

/* Sections */
section {
    padding: 100px 0;
    border-bottom: 1px solid #333;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #00ff00;
    margin-bottom: 40px;
}

/* About Section */
.about p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Agents Section */
.agent-animation {
    /* Placeholder for JS animation */
    height: 300px;
    margin-bottom: 40px;
}

.agent-descriptions {
    display: flex;
    justify-content: space-around;
}

.agent-type {
    text-align: center;
}

.agent-type h3 {
    color: #00b3ff;
}

/* How It Works Section */
.flow-diagram {
    display: flex;
    justify-content: space-around;
}

.flow-step {
    text-align: center;
}

/* Join Section */
.join {
    text-align: center;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
}

.social-links a, .legal-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
}

.social-links a:hover, .legal-links a:hover {
    color: #00ff00;
}

.legal-links {
    margin-top: 20px;
}
