.guild-container {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    font-family: "Segoe UI", "Poppins", sans-serif;
    color: #212529;
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    width: 100%;
}

.guild-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 1rem;
}

.guild-header img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.guild-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #343a40;
    margin-bottom: 20px;
}

.guild-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    flex: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.guild-info {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #343a40;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guild-info strong {
    color: #212529;
}

.guild-info table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.guild-info th,
.guild-info td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.guild-info th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.guild-info tr:nth-child(even) {
    background-color: #fdfdfd;
}

.guild-info tr:nth-child(odd) {
    background-color: #ffffff;
}

/* ===== BOTÕES ===== */
.modern-button {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 18px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.modern-button:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.modern-button.danger {
    background-color: #dc3545;
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.2);
}

.modern-button.danger:hover {
    background-color: #a71d2a;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}



/* ===== INPUTS ===== */
.accinput {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #ced4da;
    border-radius: 8px;
    background-color: #fff;
    color: #495057;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.accinput:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 0.15rem rgba(0,123,255,0.25);
}


/* ===== INPUT FOCUS MELHORADO ===== */
.accinput:focus {
    border-color: #28a745;
    outline: none;
    box-shadow: 0 0 0 0.15rem rgba(40, 167, 69, 0.25);
}


.character-form input[type="text"]:focus {
    border-color: #28a745;
    outline: none;
}

.character-form button {
    margin-top: 5px;
}

/* ===== INFO DE PERSONAGEM ===== */
.person-info p {
    margin: 6px 0;
    font-size: 14px;
    color: #495057;
}

/* ===== TABELA DE SKILLS ===== */
.skill-table th,
.skill-table td {
    font-size: 13px;
    padding: 8px;
    border-bottom: 1px solid #dee2e6;
}

.skill-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* ===== STATUS ===== */
.status-online {
    color: #28a745;
    font-weight: bold;
}

.status-offline {
    color: #dc3545;
    font-weight: bold;
}

/* ===== TÍTULO DE SEÇÃO ===== */
.section-title {
    margin: 0 auto 20px auto;
    width: 100%;
    max-width: 800px;
    background: linear-gradient(to right, #cc0000, #ff4444);
    border: 2px solid #990000;
    box-shadow: inset 0 0 5px #ffcccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-family: 'Segoe UI', 'Verdana', sans-serif;
    padding: 10px 0;
    border-radius: 10px;
}

/* ===== CONTAINER DE GUILDS ===== */
.guilds-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* ===== CARD DE GUILD ===== */
.guild-card {
    background-color: #ffffff;
    border: 2px solid #990000;
    border-radius: 20px;
    padding: 12px;
    text-align: center;
    width: 150px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

.guild-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.guild-card img {
    margin-top: 10px;
    border-radius: 10px;
}


/* ===== NOME DA GUILD ===== */
.guild-name {
    display: block;
    margin-top: 8px;
    font-weight: bold;
    color: #212529; /* Corrigido de #black */
}

/* ===== FRAGS DA GUILD ===== */
.guild-frags {
    margin-top: 5px;
    color: #ff4444;
    font-weight: bold;
}

/* ===== TICKER / FEED DE ATIVIDADE ===== */
.ticker-box {
    background-color: #ffffff;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 15px;
    margin: 15px auto;
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
}

.ticker-box:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

/* Alternância de cor */
.ticker-box.even {
    background-color: #f8f9fa;
}
.ticker-box.odd {
    background-color: #ffffff;
}

/* Header do ticker */
.ticker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 8px;
}

/* Ícone */
.ticker-icon {
    width: 32px;
    height: 32px;
    background-size: cover;
    border-radius: 6px;
}

/* Data */
.ticker-date {
    font-weight: 600;
    color: #212529;
    flex-grow: 1;
    margin-left: 15px;
}

/* Ações do ticker */
.ticker-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ticker-actions button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 4px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.2);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.ticker-actions button:hover {
    background-color: #0056b3;
    box-shadow: 0 3px 8px rgba(0, 123, 255, 0.3);
}

.ticker-actions img {
    width: 18px;
    height: 18px;
    cursor: pointer;
    transition: transform 0.2s;
}

.ticker-actions img:hover {
    transform: scale(1.2);
}

/* Texto curto do ticker */
.ticker-short {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #495057;
}

/* Texto expandido do ticker */
.ticker-full {
    margin-top: 10px;
    font-size: 0.95rem;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
}

/* ===== IMAGEM DO HEADER (SOMBRINHA) ===== */
.guild-header img {
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

/* ===== BLOCO DE CÓDIGO ===== */
.code-block {
    background-color: #f8f9fa;
    border: 2px dashed #ced4da;
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
    font-family: monospace;
    color: #212529;
}


/* ===== BLOCO DE CÓDIGO ===== */
.code-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #007bff;
}

.code-content {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    overflow-x: auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-family: monospace;
}

/* ===== BLOCO DE CITAÇÃO / QUOTE ===== */
.quote-block {
    background-color: #f8f9fa;
    border: 2px solid #007b00;
    border-radius: 10px;
    padding: 12px;
    margin: 12px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.quote-title {
    font-weight: 600;
    color: #007b00;
    margin-bottom: 6px;
}

.quote-content {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* ===== HEADER DE INFORMAÇÕES DA GUILD ===== */
.guild-info-header {
    display: flex;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.guild-info-header > div {
    flex: 1;
    text-align: center;
}

/* ===== ITEM DE LISTAGEM DE GUILD ===== */
.guild-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s, transform 0.3s;
}

.guild-item:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* ===== LOGO DA GUILD ===== */
.guild-logo img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
}

/* ===== AÇÕES DA GUILD (BOTÕES) ===== */
.guild-actions {
    flex: 0.5;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

/* ===== CAIXA DE CRIAÇÃO DE GUILD ===== */
.guild-create-box {
    margin-top: 2rem;
    padding: 1.2rem;
    background-color: #212529;
    border-radius: 10px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ===== PROGRESS BAR CONTAINER ===== */
.progress-container {
    width: 100%;
    margin: 20px 0;
}

/* ===== PROGRESS BAR LINHA ===== */
.progress-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 10px;
}

/* ===== CADA ETAPA DO PROGRESS ===== */
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}


/* ===== ETAPA DO PROGRESSO ===== */
.progress-step::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    width: 100%;
    height: 4px;
    background-color: #dee2e6;
    z-index: -1;
    transform: translateX(-50%);
}

.progress-step:first-child::before {
    width: 50%;
    left: 50%;
}

.progress-step:last-child::before {
    width: 50%;
    left: 0;
}

.progress-step.completed::before {
    background-color: #28a745;
}

/* ===== NÚMERO DE CADA ETAPA ===== */
.step-number {
    background-color: #dee2e6;
    color: #495057;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 5px;
    transition: background-color 0.3s;
}

.progress-step.completed .step-number {
    background-color: #28a745;
    color: white;
}

.progress-step.active .step-number {
    background-color: #007bff;
    color: white;
}

/* ===== RÓTULO DE CADA ETAPA ===== */
.step-label {
    font-size: 0.9rem;
    text-align: center;
    color: #212529;
}


/* ===== CONTAINER DA GUILD ===== */
.guild-container {
    margin-bottom: 40px;
}

/* ===== CONTAINER DE GUILDS ===== */
.guilds-container {
    margin-bottom: 30px;
    gap: 30px;
}

/* ===== FORMULÁRIO DE CRIAÇÃO DE PERSONAGEM ===== */
.character-form {
    margin-bottom: 30px;
}

/* ===== BLOCO DE CITAÇÃO ===== */
.quote-block {
    margin-bottom: 20px;
}

/* ===== TÍTULO DA SEÇÃO ===== */
.section-title {
    margin-bottom: 20px;
}

/* ===== CAIXA DE PIX ===== */
.pix-box {
    background: #000 !important;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    color: white;
    max-width: 500px;
    margin: 20px auto;
    text-align: center;
}

.pix-box img {
    background: #fff;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    max-width: 230px;
    width: 100%;
    height: auto;
}

.pix-box input {
    background: #fff;
    color: #000;
    padding: 8px;
    border: none;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    font-weight: bold;
    text-align: center;
}

/* ===== CONTAINER DE RECOMPENSAS ===== */
.rewards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* ===== CAIXA DE RECOMPENSAS ===== */
.reward-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    width: 180px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
}

.reward-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.8);
}

.reward-box.active {
    border-color: #ffaa00;
    box-shadow: 0 0 25px rgba(255, 170, 0, 0.9), 0 0 50px rgba(255, 100, 0, 0.7) inset;
}

/* ===== TÍTULO DAS RECOMPENSAS ===== */
.reward-title {
    color: #ffaa00;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}

/* ===== IMAGEM DAS RECOMPENSAS ===== */
.reward-image {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

/* ===== DESCRIÇÃO DAS RECOMPENSAS ===== */
.reward-desc {
    color: #333; /* Cor mais suave que puro preto */
    font-family: 'Poppins', 'Segoe UI', 'Roboto', sans-serif;
    font-size: 15.5px;
    line-height: 1.6; /* Espaçamento entre linhas */
    font-weight: 500; /* Mais legível, não tão fino nem tão grosso */
    letter-spacing: 0.3px; /* Espaço suave entre letras */
}


/* ===== PREÇO DAS RECOMPENSAS ===== */
.reward-price {
    margin-top: 10px;
    color: #62ff00;
    font-weight: 700;
    background: rgba(0, 255, 231, 0.1);
    border: 2px solid #00ffe7;
    padding: 5px 10px;
    border-radius: 8px;
    display: inline-block;
    font-size: 16px;
    transition: 0.3s;
    text-shadow: 0 0 6px #000000;
}

.reward-price:hover {
    background: #00ffe7;
    color: #000;
    text-shadow: none;
}

/* ===== LOGIN BOX ===== */
#Loginbox {
    display: none;
}

/* Container geral */
.account-container {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 20px auto;
    max-width: 500px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}

/* Título de sucesso */
.success-title {
    color: #28a745;
    margin-bottom: 15px;
}

/* Caixa de erro */
.error-box {
    background-color: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    margin-top: 10px;
    border-radius: 8px;
    text-align: left;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Botão moderno */
.modern-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.modern-button:hover {
    background-color: #0056b3;
}
