
body {
    margin: 0;
    font-family: 'Rubik', sans-serif;
    background-color: #111;
    color: #fff;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

header {
    background-color: #000;
    border-bottom: 4px solid hotpink;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-height: 60px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: hotpink;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Bangers', cursive;
    font-size: 20px;
}

.hero {
    text-align: center;
    background: radial-gradient(circle at top, #ff69b4, #111);
    padding: 80px 20px;
}

.hero h1 {
    font-family: 'Bangers', cursive;
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: limegreen;
    color: black;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #90ee90;
}

.categories {
    background: #222;
    padding: 60px 20px;
}

.grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card {
    flex: 1 1 30%;
    background: #333;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    max-width: 100px;
    margin-bottom: 15px;
}

.nsfw-banner {
    background: #ff4444;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    font-size: 1.5em;
    font-weight: bold;
}

footer {
    background: #000;
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9em;
    color: #aaa;
}
