/* Red Team Hacker Theme */
body {
    font-family: 'Courier New', monospace;
    background-color: #0a0a0a;
    color: #f2f2f2;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Container */
.tools-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
}

/* Title */
h1 {
    font-size: 36px;
    color: #ff4c4c;
    text-shadow: 0 0 10px rgba(255, 76, 76, 0.7);
    letter-spacing: 1px;
}

.subtitle {
    font-size: 18px;
    color: #999;
    margin-bottom: 20px;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Tool Cards */
.tool-card {
    background: #141414;
    border: 1px solid #2c2c2c;
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.2);
}

.tool-card:hover {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    transform: scale(1.02);
}

.tool-card h2 {
    font-size: 20px;
    color: #ff6666;
    margin-bottom: 10px;
}

.tool-card p {
    font-size: 14px;
    color: #bbb;
}

/* Tool Button */
.tool-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #ff4c4c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.tool-button:hover {
    background: #cc3333;
    box-shadow: 0 0 10px rgba(255, 76, 76, 0.6);
}

/* Footer */
.footer-text {
    font-size: 14px;
    color: #666;
    margin-top: 40px;
}

/* Back Button */
.back-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #ff4c4c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.back-btn:hover {
    background: #b22222;
    box-shadow: 0 0 8px rgba(255, 76, 76, 0.7);
}
