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

/* Page background */
body {
    background-color: #0f0f0f;
    color: #f2f2f2;
    line-height: 1.6;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #1b1b1b, #2e2e2e);
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    color: #cccccc;
}

/* Main container */
.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Sections */
section {
    margin-bottom: 50px;
}

section h2 {
    margin-bottom: 15px;
    border-bottom: 2px solid #ff3c3c;
    display: inline-block;
    padding-bottom: 5px;
}

/* Image grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.image-slot {
    background-color: #1f1f1f;
    border: 2px dashed #555;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.9rem;
}

/* Features list */
.features ul {
    margin-top: 15px;
    padding-left: 20px;
}

.features li {
    margin-bottom: 8px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a;
    color: #777;
    font-size: 0.9rem;
}
