/**
 * Mythic+ Tactics CSS
 * Eternal Illusion - Mythic+ Taktikák styling
 * 2025. október 28.
 */

/* ===== MAIN CONTAINER ===== */
.mythic-tactics-container {
    padding: 20px;
    /* Töröljük a max-height és overflow-y-t, hogy ne legyen dupla scrollbar */
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 8px;
}

/* ===== LOADING SPINNER ===== */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #e0e0e0;
}

.spinner {
    width: 50px;
    height: 30px;
    text-align: center;
    font-size: 10px;
    margin-bottom: 20px;
}

.spinner div {
    background-color: #ffd700;
    height: 100%;
    width: 6px;
    display: inline-block;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
    margin: 0 2px;
}

.spinner .bounce2 {
    animation-delay: -1.1s;
}

.spinner .bounce3 {
    animation-delay: -1.0s;
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% { 
        transform: scaleY(0.4);
    }  
    20% { 
        transform: scaleY(1.0);
    }
}

.loading-message {
    font-size: 1rem;
    color: #bbb;
    text-align: center;
    margin: 0;
}

/* ===== SEASON INFO CARD ===== */
.season-info-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.season-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.season-header h3 {
    color: #ffd700;
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.season-status .status-badge {
    background: linear-gradient(135deg, #28a745 0%, #20a03d 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.season-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.season-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.15);
}

.feature-item i {
    color: #ffd700;
    font-size: 1rem;
}

.feature-item span {
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== SECTION HEADERS ===== */
.dungeon-selection-section h4,
.quick-tools-section h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin: 30px 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== DUNGEON GRID ===== */
.dungeon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dungeon-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
    border: 1px solid #444;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.dungeon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.5);
}

.dungeon-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.dungeon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dungeon-card:hover .dungeon-image img {
    transform: scale(1.05);
}

.dungeon-level-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffd700;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dungeon-info {
    padding: 15px;
}

.dungeon-name {
    color: #ffd700;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.dungeon-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #bbb;
    font-size: 0.9rem;
}

.stat-item i {
    color: #888;
}

.dungeon-expansion {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.dungeon-actions {
    padding: 0 15px 15px;
}

.btn-tactics {
    width: 100%;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-tactics:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004494 100%);
    transform: translateY(-1px);
}

/* ===== NO DUNGEONS STATE ===== */
.no-dungeons {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.no-dungeons i {
    font-size: 3rem;
    color: #666;
    margin-bottom: 15px;
    display: block;
}

.no-dungeons p {
    font-size: 1.1rem;
    margin: 0 0 5px 0;
}

.no-dungeons small {
    font-size: 0.9rem;
    color: #666;
}

/* ===== QUICK TOOLS ===== */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.tool-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
    border: 1px solid #444;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.tool-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.tool-card i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 5px;
}

.tool-title {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.tool-desc {
    color: #bbb;
    font-size: 0.8rem;
    margin: 0;
}

/* ===== COMING SOON ===== */
.coming-soon {
    text-align: center;
    padding: 60px 40px;
    color: #e0e0e0;
}

.coming-soon i {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 20px;
    display: block;
}

.coming-soon h3 {
    color: #ffd700;
    margin: 0 0 15px 0;
    font-size: 1.8rem;
}

.coming-soon p {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.coming-soon small {
    color: #888;
    font-size: 0.9rem;
}

/* ===== ERROR MESSAGE ===== */
.error-message {
    text-align: center;
    padding: 40px 20px;
    color: #e0e0e0;
}

.error-message i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 15px;
    display: block;
}

.error-message p {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

/* ===== SEASON SYSTEMS ===== */
.season-systems-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.system-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
    border: 1px solid #444;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.system-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.system-header i {
    font-size: 1.5rem;
    color: #ffd700;
}

.system-header h4 {
    color: #ffd700;
    margin: 0;
    font-size: 1.3rem;
}

.system-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.system-requirements,
.system-benefits {
    margin-bottom: 12px;
}

.system-requirements strong,
.system-benefits strong {
    color: #ffd700;
    display: block;
    margin-bottom: 5px;
}

.system-requirements p,
.system-benefits p {
    color: #bbb;
    margin: 0;
    line-height: 1.5;
}

.no-systems {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.no-systems i {
    font-size: 2.5rem;
    color: #666;
    margin-bottom: 15px;
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .mythic-tactics-container {
        padding: 15px;
    }
    
    .season-features {
        grid-template-columns: 1fr;
    }
    
    .dungeon-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .season-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .season-header h3 {
        font-size: 1.3rem;
    }
}

/* ==== V2.0 USER MODAL STYLES ==== */
.mythic-tactics-v2-content {
    color: #e0e0e0;
    line-height: 1.6;
}

.season-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(100, 181, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(100, 181, 246, 0.2);
}

.season-header h3 {
    margin: 0 0 10px 0;
    color: #64b5f6;
    font-size: 1.5rem;
}

.dungeons-section h4 {
    color: #ffa726;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dungeons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dungeon-card-v2 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.dungeon-card-v2:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(100, 181, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 181, 246, 0.2);
}

.dungeon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.dungeon-header h5 {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
}

.dungeon-abbr {
    background: rgba(255, 165, 38, 0.2);
    color: #ffa726;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: bold;
}

.dungeon-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.timer {
    color: #b0bec5;
}

.difficulty {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: bold;
}

.difficulty-easy { background: rgba(76, 175, 80, 0.2); color: #4caf50; }
.difficulty-medium { background: rgba(255, 165, 38, 0.2); color: #ffa726; }
.difficulty-hard { background: rgba(244, 67, 54, 0.2); color: #f44336; }
.difficulty-extreme { background: rgba(156, 39, 176, 0.2); color: #9c27b0; }

.dungeon-actions {
    text-align: center;
}

.tactics-btn {
    background: rgba(100, 181, 246, 0.2);
    border: 1px solid rgba(100, 181, 246, 0.3);
    color: #64b5f6;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tactics-btn:hover {
    background: rgba(100, 181, 246, 0.3);
    border-color: rgba(100, 181, 246, 0.5);
}

.tactics-footer {
    text-align: center;
    padding: 20px;
    color: #b0bec5;
    font-style: italic;
}

/* Encounters styling */
.dungeon-encounters-v2 {
    color: #e0e0e0;
}

.encounters-group {
    margin-bottom: 30px;
}

.encounters-group h4 {
    color: #ffa726;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.encounters-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.encounters-group {
    margin-bottom: 30px;
}

.encounters-group h4 {
    color: #64b5f6;
    margin-bottom: 20px;
    font-size: 1.4em;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.encounters-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #64b5f6, transparent);
    border-radius: 2px;
}

.encounters-group h4 i {
    color: #ffd700;
    font-size: 1.1em;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.encounter-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
    border: 1px solid rgba(100, 181, 246, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.encounter-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(100, 181, 246, 0.2);
    border-color: rgba(100, 181, 246, 0.4);
}

.encounter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(100, 181, 246, 0.2);
}

.encounter-header h5 {
    margin: 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3em;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.encounter-header h5 i {
    color: #ffd700;
    font-size: 1.2em;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.encounter-content p {
    margin: 8px 0;
    line-height: 1.5;
}

.encounter-content strong {
    color: #64b5f6;
}

.no-data {
    text-align: center;
    padding: 40px;
    color: #b0bec5;
}

.no-data i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #78909c;
}

/* Error content styling */
.error-content {
    text-align: center;
    padding: 20px;
    color: #e0e0e0;
}

.error-content h3 {
    color: #f44336;
    margin: 15px 0;
}

.error-content p {
    margin: 10px 0;
    line-height: 1.5;
}

.error-content small {
    color: #b0bec5;
    font-style: italic;
}

/* ======= ROLE-SPECIFIC STYLING - ENHANCED ======= */
.encounter-roles {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.6));
    border-radius: 12px;
    border: 1px solid rgba(100, 181, 246, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.encounter-roles h6 {
    color: #64b5f6;
    margin: 0 0 20px 0;
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.encounter-roles h6::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #64b5f6, #42a5f5);
    border-radius: 2px;
}

.roles-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.role-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    border-radius: 12px;
    padding: 16px;
    border: 2px solid;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.role-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.role-section.role-tank {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
}

.role-section.role-tank:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.role-section.role-dps {
    border-color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
}

.role-section.role-dps:hover {
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.role-section.role-healer {
    border-color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
}

.role-section.role-healer:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.role-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.role-header i {
    font-size: 1.4em;
    width: 24px;
    text-align: center;
}

.role-section.role-tank .role-header i {
    color: #3b82f6;
}

.role-section.role-dps .role-header i {
    color: #ef4444;
}

.role-section.role-healer .role-header i {
    color: #10b981;
}

.role-header strong {
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.role-priority {
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    color: #ffffff;
    font-weight: 600;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.role-content {
    line-height: 1.6;
}

.role-content p {
    margin: 12px 0;
    color: #e2e8f0;
    font-size: 0.95em;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.role-content strong {
    color: #64b5f6;
    font-weight: 600;
    min-width: 90px;
    display: inline-block;
}

.role-content p:last-child {
    margin-bottom: 0;
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 768px) {
    .roles-tabs {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .encounter-card {
        padding: 15px;
    }
    
    .encounter-header h5 {
        font-size: 1.1em;
    }
    
    .role-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .role-priority {
        align-self: flex-end;
        margin-left: 0;
    }
    
    .encounter-general strong,
    .role-content strong {
        min-width: auto;
        display: block;
        margin-bottom: 5px;
    }
}

/* ======= LOADING ANIMATIONS ======= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.encounter-card {
    animation: fadeInUp 0.5s ease forwards;
}

.role-section {
    animation: fadeInUp 0.6s ease forwards;
}

.encounter-card:nth-child(2) {
    animation-delay: 0.1s;
}

.encounter-card:nth-child(3) {
    animation-delay: 0.2s;
}

.role-section:nth-child(2) {
    animation-delay: 0.1s;
}

.role-section:nth-child(3) {
    animation-delay: 0.2s;
}

/* ======= GENERAL ENCOUNTER INFO STYLING - ENHANCED ======= */
.encounter-general {
    margin-bottom: 20px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.6));
    border-radius: 10px;
    border: 1px solid rgba(100, 181, 246, 0.15);
}

.encounter-general p {
    margin: 12px 0;
    line-height: 1.6;
    color: #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95em;
}

.encounter-general p:first-child {
    margin-top: 0;
}

.encounter-general p:last-child {
    margin-bottom: 0;
}

.encounter-general strong {
    color: #64b5f6;
    font-weight: 600;
    min-width: 110px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.5px;
}

.encounter-general i {
    color: #64b5f6;
    font-size: 1.1em;
    width: 16px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Specifikus ikonok színezése */
.encounter-general i.fa-eye {
    color: #10b981; /* Áttekintés - zöld */
}

.encounter-general i.fa-info-circle {
    color: #64b5f6; /* Leírás - kék */
}

.encounter-general i.fa-chess {
    color: #f59e0b; /* Stratégia - narancssárga */
}

.encounter-general i.fa-crosshairs {
    color: #8b5cf6; /* Pozicionálás - lila */
}

.encounter-general i.fa-exclamation-triangle {
    color: #ef4444; /* Gyakori hibák - piros */
}

.encounter-general i.fa-lightbulb {
    color: #fbbf24; /* Tippek - sárga */
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 768px) {
    .roles-tabs {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .encounter-card {
        padding: 15px;
    }
    
    .encounter-header h5 {
        font-size: 1.1em;
    }
    
    .role-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .role-priority {
        align-self: flex-end;
        margin-left: 0;
    }
    
    .encounter-general strong,
    .role-content strong {
        min-width: auto;
        display: block;
        margin-bottom: 5px;
    }
}

/* ======= LOADING ANIMATIONS ======= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.encounter-card {
    animation: fadeInUp 0.5s ease forwards;
}

.role-section {
    animation: fadeInUp 0.6s ease forwards;
}

.encounter-card:nth-child(2) {
    animation-delay: 0.1s;
}

.encounter-card:nth-child(3) {
    animation-delay: 0.2s;
}

.role-section:nth-child(2) {
    animation-delay: 0.1s;
}

.role-section:nth-child(3) {
    animation-delay: 0.2s;
}