/* ========================================
   GUIDE DU RAIDER - STYLES SPÉCIFIQUES
   ======================================== */

/* Guide Hero */
.guide-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(15, 20, 21, 0.9), rgba(10, 13, 15, 0.8));
    border-bottom: 2px solid var(--guild-teal);
}

.guide-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.guide-title {
    font-family: 'Pirata One', cursive;
    font-size: 4rem;
    color: var(--guild-green);
    margin-bottom: 1rem;
    text-shadow: 
        2px 2px 0 var(--guild-dark-teal),
        0 0 30px rgba(0, 255, 204, 0.8);
}

.guide-subtitle {
    font-size: 1.5rem;
    color: var(--silver);
    margin-bottom: 1rem;
}

.guide-credits {
    font-size: 0.9rem;
    color: rgba(200, 217, 219, 0.6);
    font-style: italic;
}

/* Important Notice */
.important-notice {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 179, 0.15), rgba(15, 20, 21, 0.9));
}

.notice-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 143, 122, 0.2);
    border: 3px solid var(--guild-green);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(0, 255, 204, 0.2);
}

.notice-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.notice-content h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.8rem;
    color: var(--guild-green);
    margin-bottom: 1rem;
}

.notice-content p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Guide Content */
.guide-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

.guide-section {
    margin-bottom: 5rem;
}

/* Table of Contents */
.toc-section {
    margin-bottom: 4rem;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.toc-item {
    background: linear-gradient(135deg, rgba(15, 20, 21, 0.9), rgba(26, 33, 36, 0.8));
    border: 2px solid var(--guild-teal);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--ice-white);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.toc-item:hover {
    transform: translateY(-5px);
    border-color: var(--guild-green);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.3);
}

.toc-icon {
    font-size: 2.5rem;
}

/* Info Boxes */
.info-box {
    background: rgba(15, 20, 21, 0.8);
    border: 2px solid var(--guild-teal);
    border-left: 5px solid var(--guild-teal);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.info-box-green {
    border-left-color: var(--guild-green);
    background: linear-gradient(135deg, rgba(0, 217, 179, 0.1), rgba(15, 20, 21, 0.8));
}

.info-box-red {
    border-left-color: #dc143c;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(15, 20, 21, 0.8));
}

.info-box-purple {
    border-left-color: #a855f7;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(15, 20, 21, 0.8));
}

.info-box h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.5rem;
    color: var(--guild-green);
    margin-bottom: 1.5rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 255, 204, 0.1);
}

.info-box li:last-child {
    border-bottom: none;
}

.info-box li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--guild-green);
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15), rgba(15, 20, 21, 0.9));
    border: 3px solid #dc143c;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
}

.warning-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.warning-content h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.6rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.warning-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Upgrade Table */
.upgrade-table {
    margin: 2rem 0;
}

.upgrade-table h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.5rem;
    color: var(--guild-green);
    margin-bottom: 1.5rem;
}

.upgrade-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(15, 20, 21, 0.8);
    border: 2px solid var(--guild-teal);
    border-radius: 8px;
    overflow: hidden;
}

.upgrade-table thead {
    background: rgba(0, 143, 122, 0.3);
}

.upgrade-table th {
    padding: 1rem;
    text-align: left;
    font-family: 'Cinzel Decorative', serif;
    color: var(--guild-green);
    border-bottom: 2px solid var(--guild-teal);
}

.upgrade-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 255, 204, 0.1);
}

.upgrade-table tr:last-child td {
    border-bottom: none;
}

.upgrade-table tr:hover {
    background: rgba(0, 217, 179, 0.05);
}

/* Strategy Box */
.strategy-box {
    margin: 2rem 0;
}

.strategy-box h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.6rem;
    color: var(--guild-green);
    margin-bottom: 2rem;
    text-align: center;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.strategy-step {
    background: rgba(15, 20, 21, 0.8);
    border: 2px solid var(--guild-teal);
    border-radius: 10px;
    padding: 1.5rem;
    position: relative;
    padding-top: 3.5rem;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--guild-dark-teal), var(--guild-teal));
    border: 3px solid var(--guild-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.5rem;
    color: var(--void-black);
    font-weight: bold;
}

.strategy-step h4 {
    font-family: 'Cinzel Decorative', serif;
    color: var(--guild-green);
    margin-bottom: 1rem;
    text-align: center;
}

.strategy-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Prep Cards */
.prep-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.prep-card {
    background: rgba(15, 20, 21, 0.8);
    border: 2px solid var(--guild-teal);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.prep-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prep-card h3 {
    font-family: 'Cinzel Decorative', serif;
    color: var(--guild-green);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.prep-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.prep-card li {
    padding: 0.5rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.prep-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--guild-green);
}

/* Week Blocks */
.week-block {
    margin-bottom: 3rem;
    border: 3px solid var(--guild-teal);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(15, 20, 21, 0.8);
}

.week-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--guild-teal);
}

.week-header.week-heroic {
    background: linear-gradient(135deg, rgba(0, 143, 122, 0.3), rgba(15, 20, 21, 0.9));
}

.week-header.week-mythic {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(15, 20, 21, 0.9));
}

.week-header.week-special {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.3), rgba(15, 20, 21, 0.9));
}

.week-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.week-number {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.8rem;
    color: var(--guild-green);
}

.week-date {
    font-size: 1.1rem;
    color: var(--silver);
}

.week-tag {
    background: rgba(0, 255, 204, 0.2);
    border: 2px solid var(--guild-green);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: 'Cinzel Decorative', serif;
    color: var(--guild-green);
    font-size: 0.9rem;
}

.week-content {
    padding: 2rem;
}

/* Checklist */
.checklist {
    margin-bottom: 2rem;
}

.check-item {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: rgba(26, 33, 36, 0.5);
    border-left: 4px solid var(--guild-teal);
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.check-item:hover {
    background: rgba(26, 33, 36, 0.8);
    border-left-color: var(--guild-green);
}

.check-item.critical {
    border-left-color: #dc143c;
    background: rgba(220, 20, 60, 0.1);
}

.check-item.important {
    border-left-color: var(--guild-green);
    background: rgba(0, 217, 179, 0.1);
}

.check-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--guild-green);
}

.check-item label {
    cursor: pointer;
    flex: 1;
    line-height: 1.6;
}

/* Week Summary */
.week-summary {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(0, 143, 122, 0.1);
    border: 2px solid var(--guild-teal);
    border-radius: 8px;
}

.summary-item {
    flex: 1;
    text-align: center;
}

.summary-label {
    display: block;
    font-size: 0.9rem;
    color: var(--silver);
    margin-bottom: 0.5rem;
}

.summary-value {
    display: block;
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.5rem;
    color: var(--guild-green);
}

.summary-value.green {
    color: #4ade80;
}

/* Weeks Summary Block */
.weeks-summary-block {
    background: rgba(15, 20, 21, 0.8);
    border: 3px solid var(--guild-teal);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 3rem;
}

.weeks-summary-block h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.8rem;
    color: var(--guild-green);
    margin-bottom: 2rem;
    text-align: center;
}

.weeks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.week-mini {
    background: rgba(26, 33, 36, 0.6);
    border: 2px solid var(--guild-teal);
    border-radius: 8px;
    padding: 1.5rem;
}

.week-mini h4 {
    font-family: 'Cinzel Decorative', serif;
    color: var(--guild-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 255, 204, 0.2);
}

.week-mini ul {
    list-style: none;
    padding: 0;
}

.week-mini li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    padding-left: 1rem;
    position: relative;
}

.week-mini li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--guild-green);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: rgba(15, 20, 21, 0.8);
    border: 2px solid var(--guild-teal);
    border-radius: 10px;
    padding: 2rem;
}

.faq-item h3 {
    font-family: 'Cinzel Decorative', serif;
    color: var(--guild-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-item p {
    line-height: 1.7;
}

/* Addons Grid */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.addon-category {
    background: rgba(15, 20, 21, 0.8);
    border: 2px solid var(--guild-teal);
    border-radius: 10px;
    padding: 2rem;
}

.addon-category h3 {
    font-family: 'Cinzel Decorative', serif;
    color: var(--guild-green);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.addon-category ul {
    list-style: none;
    padding: 0;
}

.addon-category li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 255, 204, 0.1);
}

.addon-category li:last-child {
    border-bottom: none;
}

/* Active nav link */
.nav-link.active {
    color: var(--guild-green);
    text-shadow: 0 0 15px rgba(0, 255, 204, 0.8);
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 1200px) {
    .toc-grid,
    .prep-grid,
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .weeks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .guide-title {
        font-size: 2.5rem;
    }
    
    .toc-grid,
    .prep-grid,
    .strategy-grid,
    .faq-grid,
    .addons-grid,
    .weeks-grid {
        grid-template-columns: 1fr;
    }
    
    .notice-container {
        flex-direction: column;
        text-align: center;
    }
    
    .warning-box {
        flex-direction: column;
    }
    
    .week-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .week-summary {
        flex-direction: column;
    }
}
