/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body Styling */
body {
    background: #1d1f22;
    color: white;
    text-align: center;
    font-size: 18px;
    padding: 0;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff007f, #ff6600);
    padding: 10px 10px;
    text-align: center;
    color: white;
    border-bottom: 3px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.neon-header {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        0 0 10px #fff, 
        0 0 20px #ff00ff, 
        0 0 30px #ff00ff, 
        0 0 40px #ff00ff;
}

/* Tools Section */
.tools-section {
    padding: 50px 20px;
    background-color: #222;
}

.section-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button-container {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.glow-button {
    background-color: #111;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glow-button:hover {
    background-color: #ff00ff;
    color: #111;
    border-color: #ff00ff;
    box-shadow: 0 0 15px #ff00ff, 0 0 25px #ff00ff;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #111;
    text-align: center;
    margin-top: 50px;
}

.neon-footer {
    font-size: 1rem;
    color: white;
    text-shadow: 
        0 0 10px #fff, 
        0 0 20px #ff00ff, 
        0 0 30px #ff00ff;
}

footer strong {
    color: #ff00ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-description {
        font-size: 1.2rem;
    }

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

    .button-container {
        max-width: 100%; /* Allow buttons to take full width on mobile */
        padding: 0 20px;
    }

    .glow-button {
        font-size: 1.1rem;
        padding: 15px;
    }
}