/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --green-primary: #00ff00;
    --green-glow: #00ff0044;
    --green-dark: #00aa00;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --border-color: #00ff0033;
    --shadow-glow: 0 0 20px rgba(0, 255, 0, 0.2);
}

body {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    background-image:
        linear-gradient(rgba(0, 255, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 0, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Header Styles */
.header {
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.logo-placeholder {
    width: 150px;
    height: 150px;
    border: 3px solid var(--green-primary);
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-placeholder:hover {
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.4);
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--green-primary);
    text-shadow: 0 0 10px var(--green-glow);
}

.header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title {
    font-size: 2rem;
    color: var(--green-primary);
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 15px var(--green-glow);
    letter-spacing: 0.1em;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0;
}

.terminal-line {
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--green-primary),
        transparent
    );
    margin: 1rem auto;
    max-width: 600px;
    box-shadow: 0 0 10px var(--green-glow);
}

/* Tools Catalog Section */
.tools-catalog {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    color: var(--green-primary);
    margin-bottom: 2rem;
    text-shadow: 0 0 10px var(--green-glow);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Tool Card Styles */
.tool-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--green-primary),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover {
    border-color: var(--green-primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.tool-card:hover::before {
    opacity: 1;
}

.card-header {
    margin-bottom: 0.75rem;
}

.tool-name {
    font-size: 1.5rem;
    color: var(--green-primary);
    margin: 0;
}

.tool-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tool-badge {
    font-size: 0.75rem;
    color: var(--bg-primary);
    background: var(--green-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.tool-detail {
    margin-bottom: 1.5rem;
}

.detail-section {
    margin: 0.75rem 0;
    line-height: 1.6;
}

.detail-label {
    color: var(--green-primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

.detail-text {
    color: var(--text-secondary);
}

.tool-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tool-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tool-link {
    color: var(--green-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    border-left: 2px solid transparent;
    padding-left: 1rem;
}

.tool-link:hover {
    border-left-color: var(--green-primary);
    padding-left: 1.5rem;
    text-shadow: 0 0 8px var(--green-glow);
}

.link-icon {
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Footer Styles */
.footer {
    padding: 2rem 0 1rem;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1rem 0;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    color: var(--green-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin: 0.5rem 0;
}

.footer-link:hover {
    color: var(--green-primary);
    text-shadow: 0 0 8px var(--green-glow);
    padding-left: 0.5rem;
}

.team-emails {
    display: flex;
    flex-direction: column;
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .header-text {
        text-align: center;
    }

    .title {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .logo-placeholder {
        width: 100px;
        height: 100px;
    }

    .logo-text {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 255, 0, 0.4);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--green-primary);
    color: var(--bg-primary);
}

::-moz-selection {
    background: var(--green-primary);
    color: var(--bg-primary);
}
