/* Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000; /* Pure black background */
    color: #ffffff; /* White text */
    line-height: 1.6;
}

/* Header and Navigation */
header {
    background-color: #111111;
    padding: 1rem;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6); /* Red shadow */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff0000; /* Red on hover */
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.hero {
    text-align: center;
    padding: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #ff0000;
    color: #ffffff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6); /* Red shadow */
    transition: box-shadow 0.3s;
}

.cta-button:hover {
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.9);
}

/* Tools Section */
.tools-section {
    padding: 1rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    background-color: #111111;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4); /* Red shadow */
    transition: transform 0.3s, box-shadow 0.3s;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.7);
}

.tool-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #ff0000;
    text-decoration: none;
    font-weight: bold;
    transition: text-shadow 0.3s;
}

.tool-link:hover {
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8); /* Red text shadow */
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #111111;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    .tools-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    .tool-card {
        padding: 1rem; /* Smaller padding for mobile */
    }
}
