/**
 * Raid Management CSS
 * Eternal Illusion - Raid UI styling
 * Mobile responsive + dark theme optimized
 * 2025. október 27.
 */

/* ============================================================================
   RAID LIST STYLING
   ============================================================================ */

.raid-list-container {
    max-height: 70vh;
    overflow-y: auto;
    padding: 10px;
    display: grid;
    gap: 15px;
}

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

.raid-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border-color: #666;
}

.raid-card.raid-closed {
    opacity: 0.7;
    background: linear-gradient(135deg, #3a2a2a 0%, #2e1e1e 100%);
    border-color: #666;
}

.raid-card.raid-closing-soon {
    border-color: #ff9800;
    box-shadow: 0 4px 8px rgba(255, 152, 0, 0.2);
}

.raid-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.raid-title {
    color: #fff;
    font-size: 1.3em;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.raid-status {
    margin-left: 15px;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 500;
    white-space: nowrap;
}

.status-open {
    background: #43a047;
    color: white;
}

.status-closed {
    background: #757575;
    color: white;
}

.raid-card-body {
    margin-bottom: 15px;
}

.raid-time-info {
    margin-bottom: 15px;
}

.raid-date {
    color: #bbb;
    font-size: 0.95em;
    margin-bottom: 8px;
}

.raid-date i {
    margin-right: 8px;
    color: #4fc3f7;
}

.raid-countdown {
    font-size: 1.1em;
    font-weight: 600;
    color: #4fc3f7;
    transition: color 0.3s ease;
}

.raid-countdown.countdown-expired {
    color: #f44336;
}

.raid-signup-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.signup-count {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #fff;
}

.signup-count i {
    margin-right: 8px;
    color: #4fc3f7;
}

.count-number {
    font-size: 1.2em;
    font-weight: 700;
    color: #4fc3f7;
    margin-right: 5px;
}

.role-breakdown {
    display: flex;
    gap: 15px;
}

.role-breakdown span {
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
}

.role-tank { color: #1e88e5; }
.role-healer { color: #43a047; }
.role-dps { color: #e53935; }

.raid-description {
    color: #ccc;
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 15px;
    font-style: italic;
}

.raid-card-footer {
    text-align: center;
}

.raid-details-btn {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.raid-details-btn:hover {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    transform: translateY(-1px);
}

.raid-details-btn i {
    margin-right: 8px;
}

/* Empty State */
.raid-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.raid-empty-state i {
    font-size: 4em;
    margin-bottom: 20px;
    color: #555;
}

.raid-empty-state h3 {
    color: #aaa;
    margin-bottom: 10px;
}

/* ============================================================================
   RAID DETAILS STYLING
   ============================================================================ */

.raid-details-container {
    max-height: 75vh;
    overflow-y: auto;
    padding: 10px;
}

.raid-info-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #444;
}

.raid-datetime {
    margin-bottom: 20px;
}

.datetime-display {
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #fff;
    margin-bottom: 10px;
}

.datetime-display i {
    margin-right: 10px;
    color: #4fc3f7;
}

.raid-countdown-large {
    font-size: 1.4em;
    font-weight: 700;
    color: #4fc3f7;
    text-align: center;
    padding: 15px;
    background: rgba(79, 195, 247, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(79, 195, 247, 0.3);
}

.raid-countdown-large.countdown-expired {
    color: #f44336;
    background: rgba(244, 67, 54, 0.1);
    border-color: rgba(244, 67, 54, 0.3);
}

.raid-description-full,
.raid-tactics {
    margin-bottom: 20px;
}

.raid-description-full h4,
.raid-tactics h4 {
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.raid-description-full h4 i,
.raid-tactics h4 i {
    margin-right: 8px;
    color: #4fc3f7;
}

.raid-description-full p {
    color: #ccc;
    line-height: 1.5;
}

.tactics-link {
    display: inline-flex;
    align-items: center;
    color: #4fc3f7;
    text-decoration: none;
    padding: 8px 15px;
    background: rgba(79, 195, 247, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(79, 195, 247, 0.3);
    transition: all 0.3s ease;
}

.tactics-link:hover {
    background: rgba(79, 195, 247, 0.2);
    transform: translateY(-1px);
}

.tactics-link i {
    margin-right: 8px;
}

/* Signup Status Section */
.signup-status-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #444;
}

.signup-status-section h4 {
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.signup-status-section h4 i {
    margin-right: 8px;
    color: #4fc3f7;
}

.signup-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.role-summary {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.role-icon {
    font-size: 2em;
    margin-right: 15px;
}

.role-info {
    display: flex;
    flex-direction: column;
}

.role-name {
    font-weight: 500;
    color: #fff;
    font-size: 0.9em;
}

.role-count {
    font-size: 1.8em;
    font-weight: 700;
    margin-top: 5px;
}

.tank-summary {
    border-color: #1e88e5;
}

.tank-summary .role-count {
    color: #1e88e5;
}

.healer-summary {
    border-color: #43a047;
}

.healer-summary .role-count {
    color: #43a047;
}

.dps-summary {
    border-color: #e53935;
}

.dps-summary .role-count {
    color: #e53935;
}

.additional-counts {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.late-count {
    color: #ff9800;
    font-weight: 500;
}

.not-coming-count {
    color: #757575;
    font-weight: 500;
}

/* Signups List Section */
.signups-list-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #444;
}

.role-signups-group {
    margin-bottom: 25px;
}

.role-group-title {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.signups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.signup-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

.signup-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.character-info {
    margin-bottom: 8px;
}

.character-name {
    font-weight: 600;
    color: #fff;
    font-size: 1.05em;
}

.character-details {
    color: #bbb;
    font-size: 0.9em;
    display: block;
    margin-top: 2px;
}

.signup-note {
    color: #aaa;
    font-size: 0.85em;
    font-style: italic;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.signup-note i {
    margin-right: 6px;
    margin-top: 2px;
    color: #777;
    font-size: 0.8em;
}

.signup-time {
    color: #777;
    font-size: 0.8em;
    text-align: right;
}

/* Signup Form Section */
.signup-form-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #444;
}

.signup-instructions {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 0.95em;
}

/* Egyszerű szerepkör gombok */
.role-selection-simple {
    margin-bottom: 20px;
}

.role-buttons-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.role-btn-simple {
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1em;
    text-align: center;
}

.role-btn-simple:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.role-btn-simple.tank-btn:hover {
    border-color: #1e88e5;
    background: rgba(30, 136, 229, 0.1);
    color: #1e88e5;
}

.role-btn-simple.healer-btn:hover {
    border-color: #43a047;
    background: rgba(67, 160, 71, 0.1);
    color: #43a047;
}

.role-btn-simple.dps-btn:hover {
    border-color: #e53935;
    background: rgba(229, 57, 53, 0.1);
    color: #e53935;
}

.role-btn-simple.late-btn:hover {
    border-color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.role-btn-simple.not-coming-btn:hover {
    border-color: #757575;
    background: rgba(117, 117, 117, 0.1);
    color: #757575;
}

.signup-form-section h4 {
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.signup-form-section h4 i {
    margin-right: 8px;
    color: #4fc3f7;
}

.signup-form-container {
    max-width: 600px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 1em;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4fc3f7;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(79, 195, 247, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.role-selection {
    margin-bottom: 25px;
}

.role-selection h5 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 500;
}

.role-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.role-btn {
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95em;
}

.role-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.role-btn.selected {
    background: rgba(79, 195, 247, 0.2);
    border-color: #4fc3f7;
    color: #4fc3f7;
}

.tank-btn.selected {
    background: rgba(30, 136, 229, 0.2);
    border-color: #1e88e5;
    color: #1e88e5;
}

.healer-btn.selected {
    background: rgba(67, 160, 71, 0.2);
    border-color: #43a047;
    color: #43a047;
}

.dps-btn.selected {
    background: rgba(229, 57, 53, 0.2);
    border-color: #e53935;
    color: #e53935;
}

.late-btn.selected {
    background: rgba(255, 152, 0, 0.2);
    border-color: #ff9800;
    color: #ff9800;
}

.not-coming-btn.selected {
    background: rgba(117, 117, 117, 0.2);
    border-color: #757575;
    color: #757575;
}

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

.signup-submit-btn {
    background: linear-gradient(135deg, #43a047 0%, #388e3c 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.05em;
}

.signup-submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    transform: translateY(-1px);
}

.signup-submit-btn:disabled {
    background: #555;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Signup Closed Notice */
.signup-closed-notice {
    text-align: center;
    padding: 30px;
    color: #888;
}

.signup-closed-notice i {
    font-size: 3em;
    margin-bottom: 15px;
    color: #666;
}

.signup-closed-notice h4 {
    color: #aaa;
    margin-bottom: 10px;
}

.not-coming-btn {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.not-coming-btn:hover {
    background: linear-gradient(135deg, #f57c00 0%, #ef6c00 100%);
    transform: translateY(-1px);
}

/* Links Section */
.raid-links-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #444;
}

.raid-links-section h4 {
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.raid-links-section h4 i {
    margin-right: 8px;
    color: #4fc3f7;
}

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

.link-card {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: rgba(79, 195, 247, 0.1);
    border: 1px solid rgba(79, 195, 247, 0.3);
    border-radius: 8px;
    color: #4fc3f7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.link-card:hover {
    background: rgba(79, 195, 247, 0.2);
    transform: translateY(-1px);
    color: #4fc3f7;
}

.link-card i {
    margin-right: 10px;
}

/* ============================================================================
   LOADING & TOAST COMPONENTS
   ============================================================================ */

/* Loading Spinner */
.raid-loading-container {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.spinner-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 64px;
    border: 8px solid transparent;
    border-top-color: #4fc3f7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.15s;
    border-top-color: #1976d2;
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.3s;
    border-top-color: #0d47a1;
}

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

.loading-message {
    color: #aaa;
    font-size: 1.1em;
    margin: 0;
}

/* Toast Messages */
.raid-error-toast,
.raid-success-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.raid-error-toast {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    border-left: 4px solid #b71c1c;
}

.raid-success-toast {
    background: linear-gradient(135deg, #43a047 0%, #388e3c 100%);
    border-left: 4px solid #1b5e20;
}

.raid-error-toast.show,
.raid-success-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.raid-error-toast i,
.raid-success-toast i {
    margin-right: 10px;
    font-size: 1.2em;
}

/* ============================================================================
   MOBILE RESPONSIVE
   ============================================================================ */

@media (max-width: 768px) {
    .raid-details-container,
    .raid-list-container {
        max-height: 85vh;
        padding: 5px;
    }
    
    .raid-card {
        padding: 15px;
    }
    
    .raid-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .raid-signup-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .role-breakdown {
        align-self: stretch;
        justify-content: space-around;
    }
    
    .signup-summary-grid {
        grid-template-columns: 1fr;
    }
    
    .signups-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .role-buttons {
        grid-template-columns: 1fr 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .raid-error-toast,
    .raid-success-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .datetime-display {
        font-size: 1em;
    }
    
    .raid-countdown-large {
        font-size: 1.2em;
        padding: 12px;
    }
    
    .raid-info-section,
    .signup-status-section,
    .signups-list-section,
    .signup-form-section,
    .raid-links-section {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .raid-card {
        padding: 12px;
    }
    
    .raid-title {
        font-size: 1.1em;
    }
    
    .role-buttons {
        grid-template-columns: 1fr;
    }
    
    .raid-countdown-large {
        font-size: 1.1em;
        padding: 10px;
    }
}

/* ============================================================================
   CHARACTER SELECTION MODAL
   ============================================================================ */

.character-selection-container {
    max-height: 70vh;
    overflow-y: auto;
}

.selection-header {
    margin-bottom: 20px;
    text-align: center;
}

.selection-header p {
    color: #aaa;
    font-size: 1.05em;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.character-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
    border: 1px solid #444;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.character-card.selectable {
    cursor: pointer;
}

.character-card.selectable:hover {
    border-color: #4fc3f7;
    background: linear-gradient(135deg, #2f3a4a 0%, #1e2832 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(79, 195, 247, 0.2);
}

.character-avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.class-icon {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    border: none;
    overflow: hidden;
}

.character-info {
    text-align: left;
    display: block !important;
}

.character-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.character-name-row .class-icon {
    width: 2em;
    height: 2em;
    border-radius: 4px;
    flex-shrink: 0;
    font-size: 1em;
}

.character-name {
    font-size: 1.1em;
    font-weight: 600;
    flex-grow: 1;
}

.discord-name {
    color: #7289da;
    font-size: 0.85em;
    margin-left: auto;
}

.discord-name i {
    margin-right: 5px;
}

.spec-name {
    font-size: 0.85em !important;
    color: #b0b0b0 !important;
    margin-bottom: 4px !important;
    font-style: italic !important;
    display: block !important;
    margin-left: 2.5em !important;
    margin-top: 2px !important;
}

.character-details {
    display: block;
    color: #bbb;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.character-class {
    display: block;
    font-weight: 500;
}

.character-realm {
    font-size: 0.85em;
    color: #888;
}

.character-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.item-level {
    background: linear-gradient(135deg, #87ceeb, #ffffff, #4fc3f7); /* Kékes-fehéres átmenet */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800; /* Extra vastag betű */
    font-size: 1rem; /* Kicsit nagyobb */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Finomabb árnyék */
}

.talent-role {
    color: #4fc3f7;
    font-size: 0.9em;
}

.character-select-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #4fc3f7;
    font-size: 1.5em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.character-card.selectable:hover .character-select-btn {
    opacity: 1;
}

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

.no-characters-notice i {
    font-size: 3em;
    margin-bottom: 20px;
    color: #666;
}

.no-characters-notice h3 {
    color: #aaa;
    margin-bottom: 15px;
}

/* Signup Card Updates */
.signup-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.signup-position {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(79, 195, 247, 0.2);
    color: #4fc3f7;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: 600;
}



/* Modal size override pro extra-large raid modal */
.universal-modal .modal-container.modal-extra-large {
    max-width: 95vw;
    max-height: 95vh;
    width: 95vw;
}

@media (max-width: 768px) {
    .universal-modal .modal-container.modal-extra-large {
        max-width: 98vw;
        max-height: 98vh;
        width: 98vw;
    }
    
    .characters-grid {
        grid-template-columns: 1fr;
    }
    
    .role-buttons-simple {
        grid-template-columns: 1fr 1fr;
    }
}