body {
    background: linear-gradient(to right, #1f1f1f, #3a3a3a);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 960px;
    margin: auto;
    padding: 40px 20px;
}

h1, h2 {
    text-align: center;
    color: #00ffe1;
    text-shadow: 0 0 10px #00ffe1;
}

.intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2em;
}

form {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 0 15px #00ffe1;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: none;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 6px;
    background: #2e2e2e;
    color: #fff;
}

button {
    background: #00ffe1;
    border: none;
    padding: 10px 20px;
    color: #000;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 0 10px #00ffe1;
}

button:hover {
    background: #00bbaa;
}

.tegels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tegel {
    background: #2c2c2c;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px #555;
}

.tegel img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.tegel h3 {
    color: #00ffe1;
    margin: 0;
}

.tegel p {
    color: #ccc;
    font-size: 0.95em;
}
