* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b0f19;
    color: #e2e8f0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #111827;
    border-bottom: 1px solid #1f293d;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ff4655;
    letter-spacing: 1px;
}

.btn-discord-nav {
    background-color: #5865f2;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.btn-discord-nav:hover {
    background-color: #4752c4;
}

.hero {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, #111827 0%, #0b0f19 100%);
}

.hero-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff4655;
    margin-bottom: 15px;
}

.hero h1 {
    color: #f8fafc;
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero p {
    color: #94a3b8;
    margin-bottom: 20px;
}

.search-box input {
    width: 100%;
    max-width: 450px;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #334155;
    background-color: #1e293b;
    color: white;
    font-size: 1rem;
    outline: none;
}

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

.category-title {
    color: #ff4655;
    margin: 30px 0 15px 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #1e293b;
    padding-bottom: 8px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.card {
    background-color: #1e293b;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #334155;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    border-color: #ff4655;
}

.card h3 {
    font-size: 0.95rem;
    color: #f1f5f9;
    margin-bottom: 15px;
}

.btn-download {
    background-color: #ff4655;
    color: white;
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    transition: 0.2s;
}

.btn-download:hover {
    background-color: #e03e4d;
}

.footer {
    text-align: center;
    padding: 30px;
    color: #64748b;
    font-size: 0.85rem;
    border-top: 1px solid #1e293b;
    margin-top: 40px;
}
