/* Ensure the body and HTML take full height */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #1f1c2c; /* Fallback background color */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    /* Force Dark Mode */
    color: #fff; /* Light text */
}

/* Particles Background Styling - Cover the entire page */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Stay behind content */
    pointer-events: none; /* Prevent particles from blocking interactions */
}

/* Header Styling */
header {
    background-color: #1e1e2f;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #e0aaff;
}

h2, h3 {
    margin: 0;
    color: #e0aaff; /* Same color as h1 */
}

header p {
    font-size: 1.2em;
    margin-top: 10px;
}

/* Container for content */
.container {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    flex-grow: 1;
    z-index: 1; /* Ensure content stays on top */
}

/* Shortcuts section */
.shortcuts {
    margin-bottom: 40px;
    text-align: center;
}

.shortcuts a {
    color: #e0aaff;
    text-decoration: none;
    font-size: 1.1em;
    margin: 0 15px;
}

.shortcuts a:hover {
    text-decoration: underline;
}

/* Features section */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 300px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature h2 {
    color: #e0aaff;
    margin-bottom: 10px;
}

.feature p {
    line-height: 1.5;
}

/* Call to Action button */
.cta {
    text-align: center;
    margin: 40px 0;
}

.cta a {
    text-decoration: none;
    background: #6a4c93;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2em;
    transition: background 0.3s;
}

.cta a:hover {
    background: #4a3570;
}

/* Comparison table */
.comparison-table {
    margin: 40px 0;
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
}

.comparison-table th,
.comparison-table td {
    border: 1px solid #fff;
    padding: 15px;
    text-align: center;
}

.comparison-table th {
    background-color: #6a4c93;
    color: #fff;
}

/* Testimonials section */
.testimonials {
    text-align: center;
    margin: 40px 0;
}

.testimonials h2 {
    margin-bottom: 20px;
    color: #e0aaff;
}

.testimonials blockquote {
    font-style: italic;
    margin: 20px auto;
    padding: 10px 20px;
    max-width: 800px;
    border-left: 4px solid #e0aaff;
    color: #ddd;
}

/* FAQ section */
.faq {
    margin: 40px 0;
}

.faq h2 {
    color: #e0aaff;
    margin-bottom: 20px;
}

.faq p {
    margin-bottom: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #1e1e2f;
    color: #aaa;
    margin-top: 40px;
    z-index: 1;
}

footer a {
    color: #e0aaff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
