/* Reset basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body background and text */
body {
    font-family: 'Courier New', Courier, monospace;
    color: #00ff00;
    background: black;
    overflow-x: hidden;
}

/* Header styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #111;
    box-shadow: 0 2px 10px #00ff00;
}

.logo {
    font-size: 2rem;
    text-transform: uppercase;
    animation: glitch 1s infinite;
}

.empowering-text {
    font-size: 1.2rem;
    color: #00ff00;
    font-style: italic;
    margin-top: 10px;
}

/* Navigation styling */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #00ff00;
    text-decoration: none;
    font-weight: bold;
    position: relative;
}

nav a::after {
    content: '';
    display: block;
    height: 2px;
    background: #00ff00;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav a:hover::after {
    transform: scaleX(1);
}

/* Main bot section */
.bots-section {
    text-align: center;
    padding: 80px 20px;
    background: #111;
}

.bots-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00ff00;
}

.bots-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #00ff00;
}

/* Bot list styling */
.bot-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.bot-item {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 255, 0, 0.4);
}

.bot-item h3 {
    color: #00ff00;
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.btn {
    background-color: #00ff00;
    color: black;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #00ff00;
}

.btn:hover {
    background-color: white;
    color: #00ff00;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 255, 0, 0.4);
}

/* Footer and social media section */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #00ff00;
    margin-top: 40px;
}

/* Social media section */
.social-media-section {
    text-align: center;
    margin-top: 40px;
}

.social-media-section h3 {
    color: #00ff00;
    font-size: 2rem;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    color: #00ff00;
    font-size: 1.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: white;
}

/* Location section */
.location-section {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: #111;
    color: #00ff00;
    border: 2px solid #00ff00;
    border-radius: 10px;
}

.location-section p {
    font-size: 1.2rem;
}

/* Glitch animation for logo */
@keyframes glitch {
    0% { text-shadow: 2px 2px #00ff00, -2px -2px #ff00ff; }
    20% { text-shadow: -2px 2px #ff00ff, 2px -2px #00ff00; }
    40% { text-shadow: 2px -2px #00ff00, -2px 2px #ff00ff; }
    60% { text-shadow: -2px -2px #ff00ff, 2px 2px #00ff00; }
    80% { text-shadow: 2px 2px #00ff00, -2px -2px #ff00ff; }
    100% { text-shadow: -2px 2px #ff00ff, 2px -2px #00ff00; }
}
