/* Estilos específicos para a página do evento Fenda do Futuro */

/* Event Header */
.event-header {
    text-align: center;
    margin-bottom: 30px;
}

.event-banner {
    margin-bottom: 20px;
}

.event-logo {
    max-width: 100%;
    width: 70%;
    max-width: 1080px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.event-subtitle {
    font-size: 16px;
    color: #54595d;
    line-height: 1.8;
    max-width: 900px;
    margin: 15px auto 0;
}

/* Event Showcase */
.event-showcase {
    margin: 30px 0;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #a2a9b1;
}

.showcase-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.image-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #54595d;
    font-style: italic;
}

/* Quick Navigation */
.quick-nav {
    background: #e8f4f8;
    border: 2px solid #0645ad;
    border-radius: 4px;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.quick-nav h3 {
    margin-bottom: 10px;
    color: #0645ad;
}

.quick-nav ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
    list-style: none;
}

.quick-nav ul li a {
    color: #0645ad;
    text-decoration: none;
    font-weight: 500;
}

.quick-nav ul li a:hover {
    text-decoration: underline;
}

/* Content Sections */
.content-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    border-bottom: 2px solid #0645ad;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.section-content {
    font-size: 15px;
    line-height: 1.8;
}

/* Info Boxes */
.info-box {
    background: #f0f7ff;
    border-left: 4px solid #0645ad;
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 4px;
}

.info-box h4 {
    margin-bottom: 10px;
    color: #0645ad;
    font-size: 16px;
}

.info-box ul,
.info-box ol {
    margin-left: 20px;
}

.info-box ul li,
.info-box ol li {
    margin: 8px 0;
}

.warning-box {
    background: #fff8e1;
    border-left-color: #ff9800;
}

.warning-box h4 {
    color: #ff9800;
}

.error-box {
    background: #ffebee;
    border-left-color: #f44336;
}

.error-box h4 {
    color: #f44336;
}

/* Difficulty Table */
.difficulty-table {
    overflow-x: auto;
    margin: 20px 0;
}

.difficulty-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.difficulty-table th,
.difficulty-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #a2a9b1;
}

.difficulty-table th {
    background: #f8f9fa;
    font-weight: bold;
    color: #202122;
}

.difficulty-table tr:hover {
    background: #f5f5f5;
}

/* Difficulty Labels */
.diff-easy {
    background: #4caf50;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.diff-medium {
    background: #ff9800;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.diff-hard {
    background: #f44336;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.diff-extreme {
    background: #9c27b0;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

/* Item Requirements */
.item-requirement {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 15px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
}

.item-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.item-requirement strong {
    display: block;
    margin-bottom: 5px;
}

.item-requirement p {
    margin: 0;
    color: #54595d;
    font-size: 14px;
}

/* Requirement List */
.requirement-list {
    list-style: none;
    padding-left: 0;
}

.requirement-list li {
    margin: 10px 0;
    padding-left: 0;
}

.requirement-list li:before {
    content: none;
}

.requirement-list .icon {
    color: #4caf50;
    font-weight: bold;
    margin-right: 8px;
}

/* Mechanic Boxes */
.mechanic-box {
    border-left: 4px solid #0645ad;
}

.point-value {
    background: #4caf50;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 13px;
}

.buff-icon {
    font-size: 18px;
    margin-right: 5px;
}

.drop-chance {
    background: #ff9800;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 12px;
}

.note {
    font-size: 14px;
    color: #54595d;
    font-style: italic;
    margin-top: 10px;
}

/* Monster Groups */
.monster-group {
    border-left: 4px solid #f44336;
}

.monster-list {
    list-style: none;
    padding-left: 0;
}

.monster-list li {
    padding: 5px 0;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.monster-list li:before {
    content: none;
}

/* Monster Sprites */
.monster-sprite {
    width: 70px;
    height: 70px;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    vertical-align: middle;
    flex-shrink: 0;
}

.monster-emoji {
    font-size: 20px;
    flex-shrink: 0;
}

/* Monster Section Separator */
.monster-separator {
    border-top: 2px solid #e0e0e0;
    margin: 20px 0 15px 0;
    padding-top: 15px;
}

.elite-section,
.boss-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}

.elite-section strong,
.boss-section strong {
    margin-right: 5px;
}

/* Reward Tables */
.reward-info {
    margin: 20px 0;
}

.reward-example {
    margin-top: 30px;
}

.reward-example h3 {
    color: #0645ad;
    margin-bottom: 15px;
}

.reward-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
}

.reward-table th,
.reward-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #a2a9b1;
}

.reward-table th {
    background: #f8f9fa;
    font-weight: bold;
}

.reward-table tr:hover {
    background: #f5f5f5;
}

/* Chance Labels */
.chance-guaranteed {
    background: #4caf50;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 12px;
}

.chance-high {
    background: #8bc34a;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 12px;
}

.chance-medium {
    background: #ff9800;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 12px;
}

.chance-low {
    background: #ff5722;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 12px;
}

.chance-rare {
    background: #9c27b0;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 12px;
}

/* Enchantment Tables */
.enchant-chance-table {
    width: 100%;
    border-collapse: collapse;
}

.enchant-chance-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.enchant-chance-table td {
    padding: 10px;
}

.enchant-chance-table td:first-child {
    color: #54595d;
}

.enchant-chance-table td:last-child {
    text-align: right;
    color: #4caf50;
}

.enchant-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.valid-equip-list {
    list-style: none;
    padding-left: 0;
}

.valid-equip-list li {
    padding: 5px 0;
    padding-left: 0;
}

.valid-equip-list li:before {
    content: none;
}

/* Tip Boxes */
.tip-box {
    border-left: 4px solid #ff9800;
}

/* Location Boxes */
.location-box {
    border-left: 4px solid #9c27b0;
}

.npc-info p {
    margin: 8px 0;
}

.npc-info code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

/* Command Box */
.command-box {
    background: #263238;
    color: #aed581;
    padding: 20px;
    border-radius: 4px;
    margin: 20px 0;
}

.command-item {
    margin: 10px 0;
}

.command-item code {
    background: #37474f;
    color: #ffeb3b;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.command-item p {
    color: #b0bec5;
    margin: 0;
}

/* FAQ */
.faq-item {
    background: #f8f9fa;
    border-left: 4px solid #0645ad;
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 4px;
}

.faq-item h4 {
    color: #0645ad;
    margin-bottom: 10px;
}

.faq-item p {
    margin: 0;
    line-height: 1.6;
}

/* Related Links */
.related-link {
    border-left: 4px solid #4caf50;
}

/* Page Footer */
.page-footer {
    background: #f8f9fa;
    border-top: 2px solid #0645ad;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
    border-radius: 4px;
}

.page-footer p {
    margin: 8px 0;
    color: #54595d;
}

.page-footer a {
    color: #0645ad;
    text-decoration: none;
    font-weight: 500;
}

.page-footer a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .event-logo {
        width: 90%;
    }

    .quick-nav ul {
        grid-template-columns: 1fr;
    }

    .difficulty-table {
        font-size: 12px;
    }

    .enchant-list {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }

    .section-title {
        font-size: 20px;
    }
}

