body {
    background: radial-gradient(ellipse at top, #287794, transparent), 
                radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.8), transparent),
                radial-gradient(circle at -10%, #000000, transparent), 
                linear-gradient(45deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, .85)) !important;
    color: white;
}

.container {
    padding: 0 20px;
    max-width: 2000px !important;
}

.header {
    text-align: center;
    margin-top: 40px;
}

.logo {
    width: 120px;
    border-radius: 12px;
}

.header h1 {
    margin-top: 10px;
}

.subtitle {
    color: #ccc;
}

.category-button {
    text-align: center;
    margin: 20px 0;
}

.valorant-button {
    background-color: #1c1c1c;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    color: personally;
    font-weight: bold;
    cursor: pointer;
}

.valorant-icon {
    width: 20px;
    vertical-align: middle;
    margin-right: 6px;
}

.loading-container-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-radius: 10px;
    margin: 20px 0;
}

.spinner-border-home {
    border: 0.4em solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.contas-container {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 20px;
    padding: 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}
.pagination button {
    background-color: #5865F2;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    margin: 0 10px;
    cursor: pointer;
}
.pagination button:disabled {
    background-color: #444;
    cursor: not-allowed;
}
.pagination span {
    font-size: 16px;
    color: #ccc;
}

.benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.benefit-card {
    background: rgba(0, 0, 0, .45);
    padding: 20px;
    border-radius: 12px;
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.benefit-icon {
    font-size: 30px;
}

.highlight {
    color: #0ff;
}

.action-button {
    text-align: center;
    margin: 10px 0px 10px 0px;;
}

.discord-link {
    background-color: #5865F2;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.id-link {
    background-color: #f5c33c;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.discord-icon {
    font-size: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

/* ==== ESTILOS DOS CARDS DA HOMEPAGE ==== */
.account-card {
    background: rgba(0, 0, 0, .45);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-header {
    position: relative;
    min-height: 40px;
    background: rgba(0, 0, 0, .1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.rank-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tier-icon {
    width: 24px;
    height: 24px;
}

.card-body {
    padding: 16px;
    color: #ccc;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.card-body p {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px;
    border-radius: 6px;
    flex: 1;
    min-width: 120px;
    text-align: center;
    margin: 0;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-top: 1px solid #333;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #0f0;
}

.buy-button {
    background-color: #ff4655;
    color: white;
    padding: 8px 14px;
    border: none;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.details-button {
    background-color: #5865F2;
    color: white;
    padding: 8px 14px;
    border: none;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.buy-icon, .details-icon {
    font-size: 16px;
}

/* ==== ESTILOS DO MODAL ==== */
.buy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.modal-title {
    text-align: center;
    font-size: 24px;
    color: #0ff;
    margin-bottom: 20px;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.tutorial-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    text-align: center;
    background: #2a2a2a;
    border-radius: 20px;
}

.step i {
    font-size: 30px;
    color: #0ff;
    margin-top: 10px;
    margin-bottom: 0px !important;
}

.step h4 {
    margin-top: 2%;
    font-size: 18px;
}

.textbuy p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

.video-container {
    position: relative;
    max-width: 520px;
    max-height: 150px;
    margin: 0 auto;
    padding-bottom: 46.875%;
    height: 0;
    overflow: hidden;
    margin-bottom: 4%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
