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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #121212;
    color: #e0e0e0;
}

header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px 0;
}

header .logo h1 {
    text-align: center;
    font-size: 2em;
    color: #ff3c3c;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 10px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.intro {
    text-align: center;
    padding: 40px 20px;
    background-color: #1f1f1f;
    border-bottom: 1px solid #333;
}

.site-blocks {
    padding: 40px 20px;
    text-align: center;
}

.site-blocks h2 {
    margin-bottom: 30px;
    font-size: 2em;
    color: #ff3c3c;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.site-card {
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.site-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(255,60,60,0.5);
}

.site-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
}

.site-card h3 {
    margin-bottom: 10px;
    font-size: 1.3em;
    color: #ff3c3c;
}

.site-card p {
    margin-bottom: 15px;
}

.site-card a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff3c3c;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.site-card a:hover {
    background-color: #ff1f1f;
}

.about {
    padding: 40px 20px;
    text-align: center;
    background-color: #1f1f1f;
    border-top: 1px solid #333;
    color: #e0e0e0;
}

.about h2 {
    font-size: 2em;
    color: #ff3c3c;
    margin-bottom: 20px;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.8;
}

.contact {
    padding: 40px 20px;
    text-align: center;
    background-color: #1f1f1f;
    border-top: 1px solid #333;
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #ff3c3c;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    color: #ff1f1f;
}
