        body {
            font-family: 'Roboto', Arial, sans-serif;
            margin: 0;
            background: #18181b;
            color: #f3f4f6;
        }
        header {
            background: #27272a;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #fbbf24;
            letter-spacing: 2px;
        }
        nav a {
            color: #f3f4f6;
            text-decoration: none;
            margin-left: 2rem;
            font-weight: 500;
            transition: color 0.2s;
        }
        nav a:hover {
            color: #fbbf24;
        }
        .hero {
            text-align: center;
            padding: 4rem 2rem 2rem 2rem;
            background: #1e293b;
        }
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #fbbf24;
        }
        .hero p {
            font-size: 1.2rem;
            color: #d1d5db;
            margin-bottom: 2rem;
        }
        .search-bar {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            background: #27272a;
            border-radius: 6px;
            overflow: hidden;
        }
        .search-bar input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            background: transparent;
            color: #f3f4f6;
            font-size: 1rem;
        }
        .search-bar button {
            background: #fbbf24;
            border: none;
            color: #18181b;
            padding: 0 1.5rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-bar button:hover {
            background: #f59e42;
        }
        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        .mod-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
        }
        .mod-card {
            background: #27272a;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            display: flex;
            flex-direction: column;
            transition: transform 0.15s;
        }
        .mod-card:hover {
            transform: translateY(-4px) scale(1.02);
        }
        .mod-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            background: #18181b;
        }
        .mod-card-content {
            padding: 1rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .mod-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: #fbbf24;
            margin-bottom: 0.5rem;
        }
        .mod-desc {
            font-size: 0.95rem;
            color: #d1d5db;
            flex: 1;
            margin-bottom: 1rem;
        }
        .mod-meta {
            font-size: 0.85rem;
            color: #a1a1aa;
            display: flex;
            justify-content: space-between;
        }
        footer {
            background: #18181b;
            color: #a1a1aa;
            text-align: center;
            padding: 2rem 0 1rem 0;
            margin-top: 3rem;
            font-size: 0.95rem;
        }
        @media (max-width: 600px) {
            .hero h1 { font-size: 1.5rem; }
            .mod-card img { height: 100px; }
        }