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

body {
    background-color: #1a2a1a; 
    color: #f0f0f0;
    font-family: 'Trebuchet MS', sans-serif;
}

header {
    position: relative;
    background: linear-gradient(135deg, #2e5a2e, #1a2a1a);
    padding: 40px;
    text-align: center;
    border-bottom: 4px solid #d4af37; 
}
.logo-hxh {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 150px; 
}

header h1 {
    font-size: 2.5rem;
    color: #d4af37;
    text-shadow: 2px 2px #000;
    letter-spacing: 2px;
}

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

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

.gi-card {
    background: #e9e4d4; 
    border: 8px solid #333;
    border-radius: 15px;
    color: #333;
    padding: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.5);
    transition: transform 0.2s;
}

.gi-card:hover {
    transform: scale(1.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom: 2px solid #333;
    margin-bottom: 10px;
}

.card-body {
    text-align: center;
}

.card-image {
    width: 100%;
    height: 180px;
    background-color: #ccc;
    margin-bottom: 15px;
    border: 2px solid #333;
}

.gi-card h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.gi-card p {
    font-size: 0.9rem;
    min-height: 60px;
}

.card-limit {
    margin-top: auto;
    text-align: right;
    font-weight: bold;
    font-size: 0.8rem;
    color: #555;
}

footer {
    text-align: center;
    margin: 50px 0;
    color: #d4af37;
}


.rank-ss {
    border-color: #9b59b6 !important; /* roxo Místico */
}
.rank-ss .card-rank { color: #9b59b6; }

.rank-s {
    border-color: #e74c3c !important; /* vermelho Raro */
}
.rank-s .card-rank { color: #e74c3c; }

.rank-a {
    border-color: #3498db !important; /* azul Incomum */
}
.rank-a .card-rank { color: #3498db; }

.rank-b {
    border-color: #2ecc71 !important; /* verde Comum */
}
.rank-b .card-rank { color: #2ecc71; }

.rank-d {
    border-color: #969b98 !important; /* cinza Muito Comum */
}
.rank-d .card-rank { color: #969b98; }

.card-image {
    width: 100%;
    height: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}