.md-typeset .grid.cards > ul > li {
  background-color: #08f; /* cor do card */
  border-radius: 12px;
  padding: 16px;
}
.md-typeset .grid.cards > ul > li:hover {
  background: #09f;
}
.md-typeset .grid.cards > ul > li {
  color: white;
}
.md-typeset .grid.cards .md-button {
  color: #08f;
  background-color: white;
}
.download-box {
    margin-top: 40px;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    background: linear-gradient(135deg, #0ea5e9, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.download-box h2 {
    margin-top: 0;
    font-size: 2em;
}

.download-box p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.download-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    background-color: white;
    color: #1d4ed8 !important;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.download-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255,255,255,0.35);
}

.stats-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 25px 0;
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    background: #f5f5f5;
}

.github-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.github-card {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all .2s ease;
}

.github-card:hover {
    transform: translateY(-4px);
    border-color: #58a6ff;
}

.github-card h3 {
    margin-top: 12px;
    color: #FFF;
}
.github-card p {
  color: #fff;
}
.github-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 24px;
    border-radius: 10px;
    background: #238636;
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    transition: all .2s ease;
}

.github-btn:hover {
    background: #2ea043;
    transform: scale(1.05);
}
