/* Grundlegendes Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0e0e0e;
    color: #f0f0f0;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
}

header {
    background: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid #2c2c2c;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #00d0ff;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: radial-gradient(circle at top, #1f1f1f, #0e0e0e);
}

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.btn {
    padding: 0.75rem 1.5rem;
    background-color: #00d0ff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #00aacc;
}

.store-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 2rem;
}

.item-card {
    background: #1c1c1c;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 208, 255, 0.2);
    width: 500px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 208, 255, 0.4);
}

.item-card h2 {
    margin-bottom: 1rem;
    color: #00d0ff;
}

.item-card p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.item-card button {
    background-color: #00d0ff;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    color: #000;
    transition: background 0.3s;
}

.item-card button:hover {
    background-color: #008ba7;
}

.product-icon {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
}

footer {
    position: relative;
    background: #1a1a1a;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #888;
}
