/* Import font */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #fff;
}


/* Header */

header {
    width: 100%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 10;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid #ff0000;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #ff0000;
}

.logo span {
    color: #00ff22;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    background-color: #ff0000;
    color: #000;
}


/* Mobile Menu */

.menu-toggle {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: #ff0000;
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 60px;
        right: -100%;
        flex-direction: column;
        width: 200px;
        background: rgba(0, 0, 0, 0.95);
        transition: 0.3s;
        padding: 20px;
        border-left: 1px solid #00ffe0;
    }
    nav.active {
        right: 0;
    }
    .menu-toggle {
        display: block;
    }
}


/* Hero Section */

.hero h1 {
    font-size: 40px;
    color: #ff0000;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #ff0000;
}

.hero p {
    font-size: 18px;
    color: #00ff22;
}

.tools-hero {
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to right, rgba(0, 255, 224, 0.05), rgba(255, 0, 127, 0.05));
    margin-top: 80px;
    padding: 30px;
}

.tools-hero h1 {
    font-size: 42px;
    color: #ff0000;
    margin-bottom: 10px;
}

.tools-hero p {
    font-size: 20px;
    color: #00ffe0;
}


/* Tools Section */

.tools-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 50px 40px;
}

.tool-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #ff0000;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.tool-card h2 {
    color: #00ff22;
    margin-bottom: 15px;
}

.tool-card p {
    color: #00ffe0;
    margin-bottom: 20px;
}

.tool-card .btn {
    padding: 12px 25px;
    font-size: 16px;
    text-decoration: none;
    color: #000;
    background: linear-gradient(45deg, #00ffe0, #ff007f);
    border-radius: 8px;
    transition: 0.3s;
}

.tool-card .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #00ffe0;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #00ffe0;
}