MediaWiki:Components.css
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* ========================================
COMPONENTS CSS - UI COMPONENTS
======================================== */
/* Info Boxes */
.tip-box {
background-color: var(--positive-bg);
border-left: 4px solid var(--positive);
padding: 15px;
margin: 20px 0;
border-radius: 4px;
box-shadow: 0 2px 5px var(--shadow-soft);
}
.tip-box::before {
content: "💡 Tip";
display: block;
font-weight: bold;
margin-bottom: 10px;
color: var(--positive);
}
.warning-box {
background-color: var(--negative-bg);
border-left: 4px solid var(--negative);
padding: 15px;
margin: 20px 0;
border-radius: 4px;
box-shadow: 0 2px 5px var(--shadow-soft);
}
.warning-box::before {
content: "⚠️ Warning";
display: block;
font-weight: bold;
margin-bottom: 10px;
color: var(--negative);
}
/* Alert Boxes */
.alert-info {
background: var(--bg-1);
border: 1px solid var(--border);
border-left: 4px solid var(--primary);
color: var(--text);
padding: 15px 20px;
border-radius: 8px;
margin: 15px 0;
}
.alert-warning {
background: var(--negative-bg);
border: 1px solid var(--border);
border-left: 4px solid var(--negative);
color: var(--text);
padding: 15px 20px;
border-radius: 8px;
margin: 15px 0;
}
.alert-error {
background: var(--negative-bg);
border: 1px solid var(--border);
border-left: 4px solid var(--danger);
color: var(--text);
padding: 15px 20px;
border-radius: 8px;
margin: 15px 0;
}
.alert-success {
background: var(--positive-bg);
border: 1px solid var(--border);
border-left: 4px solid var(--positive);
color: var(--text);
padding: 15px 20px;
border-radius: 8px;
margin: 15px 0;
}
/* Cards */
.card {
background: var(--bg-1);
border: 1px solid var(--border);
border-left: 3px solid transparent;
border-radius: 14px;
overflow: hidden;
transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, padding .2s ease;
padding: 0;
}
.card:hover {
transform: translateY(-3px);
box-shadow: 0 6px 24px var(--shadow-soft);
background: var(--surface);
border-left-color: var(--primary);
padding-left: 4px;
}
.card-media {
text-align: center;
padding-top: 6px;
}
.card-body {
padding: 10px 12px;
}
.card-title {
margin: 0;
font-size: 16px;
color: var(--text);
text-align: center;
}
/* Step List */
.step-list {
counter-reset: step-counter;
list-style-type: none;
padding-left: 0;
margin: 25px 0;
}
.step-item {
position: relative;
padding-left: 50px;
margin-bottom: 25px;
counter-increment: step-counter;
}
.step-item::before {
content: counter(step-counter);
position: absolute;
left: 0;
top: 0;
width: 35px;
height: 35px;
background: linear-gradient(135deg, var(--heading-gradient-start), var(--heading-gradient-end));
color: var(--text-strong);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
box-shadow: 0 2px 5px var(--shadow-soft);
}
/* Quick Stats Grid */
.quick-stats {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 15px;
margin: 25px 0;
}
.stat-card {
background: var(--bg-1);
border-radius: 10px;
padding: 20px;
text-align: center;
box-shadow: 0 4px 6px var(--shadow-soft);
border: 1px solid var(--border);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px var(--shadow-medium);
}
.stat-card h3 {
margin: 0 0 10px 0;
font-size: 1.2rem;
color: var(--primary);
}
.stat-card p {
font-size: 2rem;
font-weight: bold;
margin: 0;
color: var(--heading);
}
/* Eclipse Components */
.eclipse-card {
background: var(--bg-1);
border: 1px solid var(--border);
border-radius: 20px;
padding: 30px;
margin: 25px 0;
box-shadow: 0 4px 20px var(--shadow-soft);
transition: all 0.3s ease;
position: relative;
}
.eclipse-header {
display: flex;
align-items: center;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 2px solid var(--border);
}
.eclipse-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--heading-gradient-start), var(--heading-gradient-end));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
font-size: 24px;
color: var(--text-strong);
}
.eclipse-title {
font-size: 22px;
font-weight: 700;
color: var(--heading);
margin: 0;
}
.eclipse-content {
color: var(--text-muted);
line-height: 1.6;
}
.eclipse-meta {
margin-top: 15px;
font-size: 14px;
color: var(--text-muted);
}
/* Eclipse Modern Container */
.eclipse-modern-container {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
border-radius: 20px;
box-shadow: 0 8px 32px rgba(255, 107, 157, 0.08);
}
/* Modern Stats Grid */
.eclipse-stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin: 30px 0;
}
.eclipse-stat-card {
background: rgba(255, 255, 255, 0.9);
border: 1px solid rgba(255, 107, 157, 0.15);
border-radius: 16px;
padding: 25px 20px;
text-align: center;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.eclipse-stat-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
transition: left 0.6s ease;
}
.eclipse-stat-card:hover::before {
left: 100%;
}
.eclipse-stat-card:hover {
transform: translateY(-8px) scale(1.02);
box-shadow: 0 12px 40px rgba(255, 107, 157, 0.2);
border-color: #ff6b9d;
}
.eclipse-stat-icon {
font-size: 2.5rem;
margin-bottom: 15px;
display: block;
}
.eclipse-stat-title {
font-size: 14px;
font-weight: 600;
color: #666666;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 8px;
}
.eclipse-stat-value {
font-size: 24px;
font-weight: 800;
background: linear-gradient(135deg, #ff6b9d, #d63384);
background-clip: text;
}
/* Modern Content Cards */
.eclipse-content-card {
background: rgba(255, 255, 255, 0.95);
border: 1px solid rgba(255, 107, 157, 0.1);
border-radius: 20px;
padding: 30px;
margin: 25px 0;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
position: relative;
}
.eclipse-content-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(255, 107, 157, 0.15);
border-color: rgba(255, 107, 157, 0.3);
}
.eclipse-card-header {
display: flex;
align-items: center;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 2px solid rgba(255, 107, 157, 0.1);
}
.eclipse-card-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #ff6b9d, #d63384);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
font-size: 24px;
color: white;
}
.eclipse-card-title {
font-size: 22px;
font-weight: 700;
color: #2d2d2d;
margin: 0;
}
/* Modern Step List */
.eclipse-step-container {
position: relative;
padding-left: 0;
}
.eclipse-step {
display: flex;
align-items: flex-start;
margin-bottom: 30px;
position: relative;
}
.eclipse-step-number {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #ff6b9d, #d63384);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 800;
font-size: 18px;
margin-right: 20px;
flex-shrink: 0;
box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
position: relative;
z-index: 2;
}
.eclipse-step-content {
flex: 1;
padding-top: 5px;
}
.eclipse-step-title {
font-size: 20px;
font-weight: 700;
color: #2d2d2d;
margin-bottom: 10px;
}
.eclipse-step-description {
color: #666666;
line-height: 1.6;
margin-bottom: 8px;
}
.eclipse-step-description:last-child {
margin-bottom: 0;
}
/* Connection Line Between Steps */
.eclipse-step:not(:last-child)::after {
content: '';
position: absolute;
left: 24px;
top: 50px;
width: 2px;
height: calc(100% - 20px);
background: linear-gradient(180deg, #ff6b9d, rgba(255, 107, 157, 0.3));
z-index: 1;
}
/* Modern Item Cards Grid */
.eclipse-items-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin: 25px 0;
}
.eclipse-item-card {
background: rgba(255, 255, 255, 0.9);
border: 1px solid rgba(255, 107, 157, 0.15);
border-radius: 16px;
padding: 25px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.eclipse-item-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #ff6b9d, #ff8fb0);
transform: scaleX(0);
transition: transform 0.3s ease;
}
.eclipse-item-card:hover::before {
transform: scaleX(1);
}
.eclipse-item-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
border-color: #ff6b9d;
}
.eclipse-item-title {
font-size: 18px;
font-weight: 700;
color: #2d2d2d;
margin-bottom: 12px;
}
.eclipse-item-description {
color: #666666;
line-height: 1.5;
}
/* Modern Warning Box */
.eclipse-warning {
background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 193, 7, 0.05));
border: 1px solid rgba(255, 165, 0, 0.3);
border-left: 5px solid #ff9800;
border-radius: 16px;
padding: 25px;
margin: 25px 0;
position: relative;
}
.eclipse-warning-header {
display: flex;
align-items: center;
margin-bottom: 15px;
}
.eclipse-warning-icon {
font-size: 24px;
margin-right: 12px;
color: #ff9800;
}
.eclipse-warning-title {
font-size: 20px;
font-weight: 700;
color: #e65100;
margin: 0;
}
.eclipse-warning-list {
list-style: none;
padding: 0;
margin: 0;
}
.eclipse-warning-list li {
padding: 8px 0;
padding-left: 30px;
position: relative;
color: #2d2d2d;
line-height: 1.5;
}
.eclipse-warning-list li::before {
content: '⚠️';
position: absolute;
left: 0;
top: 8px;
font-size: 16px;
}
/* Image Container */
.image-container {
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #ffeef7 100%) !important;
border: 1px solid rgba(255, 107, 157, 0.15) !important;
border-radius: 12px !important;
padding: 15px !important;
margin-bottom: 12px !important;
box-shadow: 0 2px 10px rgba(255, 107, 157, 0.06) !important;
text-align: center !important;
font-size: 0.9em !important;
line-height: 1.4 !important;
max-width: 100% !important;
overflow: hidden !important;
}
.image-container img {
max-width: 100% !important;
height: auto !important;
display: block !important;
margin: 0 auto !important;
}
.image-container strong {
color: #2c3e50 !important;
display: block !important;
margin-bottom: 8px !important;
font-size: 1.1em !important;
font-style: italic !important;
}
.image-container p {
color: #5a6c7d !important;
margin: 0 !important;
font-size: 0.85em !important;
font-style: italic !important;
}
/* Quest Components */
.quest-info-card {
background: linear-gradient(135deg, #fff5f8, #ffeef3);
color: white;
border-radius: 12px;
padding: 2rem;
margin-bottom: 2rem;
box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
}
.quest-location-image {
height: 100px;
width: auto;
vertical-align: middle;
margin-right: 12px;
border-radius: 6px;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
transition: transform 0.2s ease;
}
.quest-location-image:hover {
transform: scale(1.1);
}
.quest-card-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1.5rem;
}
.quest-card-header h3 {
margin: 0;
font-size: 1.5rem;
font-weight: 700;
}
.quest-number-badge {
background: rgba(255, 255, 255, 0.2);
padding: 0.5rem 1rem;
border-radius: 20px;
font-weight: 700;
font-size: 1.1rem;
color: black;
}
.quest-details-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
}
.quest-detail-item {
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.quest-detail-label {
font-weight: 600;
opacity: 0.8;
font-size: 0.9rem;
color: black;
}
.quest-detail-value {
font-weight: 700;
font-size: 1.1rem;
color: black;
}
.quest-requirements-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
}
.quest-requirement-item {
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.quest-requirement-label {
font-weight: 600;
opacity: 0.8;
font-size: 0.9rem;
}
.quest-requirement-value {
font-weight: 700;
font-size: 1.1rem;
}
/* Quest Tracker Components */
.quest-tracker-overview {
background: linear-gradient(135deg, #fff5f8, #ffeef3);
border: 2px solid #ff6b9d;
border-radius: 16px;
padding: 2rem;
margin-bottom: 2rem;
box-shadow: 0 6px 25px rgba(255, 107, 157, 0.15);
}
.quest-tracker-locations {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
.quest-list {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 0.75rem;
}
.quest-item {
background: #f8f9fa;
border-radius: 8px;
padding: 1rem;
transition: all 0.3s ease;
border-left: 4px solid transparent;
width: 100%;
box-sizing: border-box;
}
.quest-item:hover {
background: #fff5f8;
border-left-color: #ff6b9d;
}
.quest-checkbox-label {
display: flex;
align-items: center;
cursor: pointer;
font-weight: 500;
color: #2c3e50;
gap: 0.75rem;
position: relative;
}
.quest-checkbox {
position: absolute;
opacity: 0;
cursor: pointer;
}
.checkmark {
width: 20px;
height: 20px;
background: #ffffff;
border: 2px solid #dee2e6;
border-radius: 4px;
position: relative;
transition: all 0.3s ease;
flex-shrink: 0;
}
.quest-checkbox:checked + .checkmark {
background: linear-gradient(135deg, #ff6b9d, #d63384);
border-color: #d63384;
}
.quest-checkbox:checked + .checkmark::after {
content: '✓';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-weight: bold;
font-size: 12px;
}
.quest-checkbox:hover + .checkmark {
border-color: #ff6b9d;
box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}
.quest-name {
flex: 1;
transition: all 0.3s ease;
}
.quest-checkbox:checked ~ .quest-name {
color: #6c757d;
text-decoration: line-through;
opacity: 0.7;
}
/* Monster Components */
.monster-info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.monster-info-card {
background: #ffffff;
border-radius: 12px;
padding: 1.5rem;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
border: 1px solid #e9ecef;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.monster-info-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(135deg, #ff6b9d, #d63384);
}
.monster-info-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.monster-card-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}
.monster-card-header h4 {
margin: 0;
font-size: 1.3rem;
font-weight: 700;
color: #2c3e50;
}
.monster-level-badge {
background: linear-gradient(135deg, #ff6b9d, #d63384);
color: white;
padding: 0.25rem 0.75rem;
border-radius: 15px;
font-weight: 600;
font-size: 0.9rem;
}
.monster-stats-details {
display: flex;
flex-direction: column;
gap: 1rem;
}
.monster-stat-info {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.5rem 0;
border-bottom: 1px solid #f1f3f4;
}
.monster-stat-info:last-child {
border-bottom: none;
}
.monster-stat-label {
font-weight: 600;
color: #6c757d;
font-size: 0.9rem;
}
.monster-stat-value {
font-weight: 700;
color: #2c3e50;
text-align: right;
}
.monster-rewards-section {
background: #f8f9fa;
border-radius: 8px;
padding: 1rem;
margin-top: 1rem;
}
.monster-reward-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.25rem 0;
}
.monster-reward-label {
font-weight: 600;
color: #495057;
font-size: 0.9rem;
}
.monster-reward-value {
font-weight: 700;
color: #28a745;
text-align: right;
}
/* Shaman Guide Components */
.shaman-guide-feature-card {
background: linear-gradient(135deg, #fff5f8, #ffeef3);
border-radius: 12px;
padding: 2rem;
margin-bottom: 2rem;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
border: 1px solid #e9ecef;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shaman-guide-feature-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.shaman-guide-feature-card h3 {
font-size: 1.5rem;
font-weight: 700;
color: #2c3e50;
margin: 0 0 1.5rem 0;
display: flex;
align-items: center;
gap: 0.5rem;
}
.shaman-guide-feature-card h3::before {
content: '✨';
font-size: 1.2rem;
}
/* NPC Components */
.npc-info-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
width: 100%;
max-width: 1200px;
margin: 0 auto;
}
.npc-title-section {
flex: 1;
text-align: center;
}
/* Progress Components */
.progress-stats {
display: flex;
justify-content: space-around;
margin-bottom: 1.5rem;
gap: 1rem;
}
.stat-item {
text-align: center;
flex: 1;
}
.stat-label {
display: block;
font-weight: 600;
color: #6c757d;
font-size: 0.9rem;
margin-bottom: 0.5rem;
}
.stat-value {
display: block;
font-weight: 700;
font-size: 1.5rem;
color: #d63384;
}
.progress-bar-container {
margin-bottom: 1.5rem;
}
.progress-bar {
width: 100%;
height: 12px;
background: #e9ecef;
border-radius: 6px;
overflow: hidden;
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, #ff6b9d, #d63384);
border-radius: 6px;
transition: width 0.5s ease;
position: relative;
}
.progress-fill::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
animation: shimmer 2s infinite;
}
/* Tracker Components */
.tracker-actions {
text-align: center;
}
.reset-progress-btn {
background: linear-gradient(135deg, #dc3545, #c82333);
color: white;
border: none;
padding: 0.75rem 1.5rem;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}
.reset-progress-btn:hover {
background: linear-gradient(135deg, #c82333, #bd2130);
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}
.location-section {
background: #ffffff;
border: 1px solid #e9ecef;
border-radius: 12px;
padding: 1.5rem;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
width: 100%;
box-sizing: border-box;
}
.location-section:hover {
transform: translateY(-2px);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.location-title {
color: #d63384;
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid #ff6b9d;
position: relative;
}
.location-title::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 50px;
height: 2px;
background: linear-gradient(90deg, #ff6b9d, #d63384);
}
/* Section Headers */
.section-header {
text-align: center;
margin-bottom: 18px;
}
.section-header h2 {
margin: 0;
font-size: 24px;
color: #222;
display: inline-block;
padding-bottom: 6px;
}
.section-lead {
margin-top: 6px;
color: #666;
font-size: 14px;
}
/* Guardian Components */
.guardian-selector {
background: rgba(255, 255, 255, 0.8);
border-radius: 15px;
padding: 25px;
margin-bottom: 30px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.selector-header {
text-align: center;
margin-bottom: 20px;
}
.difficulty-slider-container {
margin: 30px 0;
position: relative;
}
.difficulty-labels {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}
.difficulty-labels span {
font-size: 0.9em;
color: #666;
position: relative;
}
.difficulty-slider {
width: 100%;
height: 10px;
border-radius: 5px;
background: linear-gradient(to right, #4CAF50, #FFC107, #FF9800, #F44336, #9C27B0);
outline: none;
appearance: none;
}
.difficulty-slider::-moz-range-thumb {
width: 25px;
height: 25px;
border-radius: 50%;
background: #e91e63;
cursor: pointer;
box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}
.guardian-preview-image {
margin: 20px auto;
max-width: 600px;
}
/* Comparison Table Styling */
.guardian-comparison-table-container {
margin: 40px 0;
}
.comparison-title {
text-align: center;
margin-bottom: 20px;
font-size: 1.8em;
color: #e91e63;
}
.guardian-comparison-table table {
width: 100%;
border-collapse: collapse;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.guardian-comparison-table th {
background: linear-gradient(135deg, #ff6b9d, #e91e63);
color: white;
padding: 15px;
text-align: left;
}
.guardian-comparison-table td {
padding: 15px;
border-bottom: 1px solid #eee;
}
.guardian-comparison-table tr:last-child td {
border-bottom: none;
}
.guardian-comparison-table tr:nth-child(even) {
background-color: rgba(255, 255, 255, 0.8);
}
.guardian-comparison-table tr:nth-child(odd) {
background-color: rgba(248, 248, 248, 0.8);
}
.difficulty-meter {
height: 10px;
background-color: #eee;
border-radius: 5px;
margin-bottom: 5px;
overflow: hidden;
}
.difficulty-fill {
height: 100%;
border-radius: 5px;
}
.regular-row .difficulty-fill {
background-color: #4CAF50;
}
.mighty-row .difficulty-fill {
background-color: #FFC107;
}
.legendary-row .difficulty-fill {
background-color: #FF9800;
}
.superior-row .difficulty-fill {
background-color: #F44336;
}
.accomplished-row .difficulty-fill {
background-color: #9C27B0;
}
/* Accordion Styling */
.guardian-types-accordion {
margin: 40px 0;
}
.detailed-info-title {
text-align: center;
margin-bottom: 10px;
font-size: 1.8em;
color: #e91e63;
}
.detailed-info-subtitle {
text-align: center;
margin-bottom: 30px;
color: #666;
}
.guardian-accordion {
background-color: #f8f8f8;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
text-align: left;
border: none;
outline: none;
transition: 0.4s;
border-radius: 10px;
margin-bottom: 10px;
font-size: 1.2em;
font-weight: 600;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.guardian-accordion:hover {
background-color: #f1f1f1;
}
.guardian-accordion.active {
border-radius: 10px 10px 0 0;
margin-bottom: 0;
}
.guardian-panel {
padding: 0 18px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
border-radius: 0 0 10px 10px;
margin-bottom: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.guardian-type-detail {
padding: 20px 0;
}
/* Color coding for accordion buttons */
.regular-accordion {
border-left: 5px solid #4CAF50;
}
.mighty-accordion {
border-left: 5px solid #FFC107;
}
.legendary-accordion {
border-left: 5px solid #FF9800;
}
.superior-accordion {
border-left: 5px solid #F44336;
}
.accomplished-accordion {
border-left: 5px solid #9C27B0;
}
/* Difficulty tags */
.difficulty-tag {
font-size: 0.7em;
padding: 5px 10px;
border-radius: 20px;
color: white;
}
.easy-tag {
background-color: #4CAF50;
}
.moderate-tag {
background-color: #FFC107;
color: #333;
}
.challenging-tag {
background-color: #FF9800;
}
.very-hard-tag {
background-color: #F44336;
}
.extreme-tag {
background-color: #9C27B0;
}
/* Decision Helper Styling */
.decision-helper {
background: rgba(255, 255, 255, 0.8);
border-radius: 15px;
padding: 25px;
margin: 40px 0;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
text-align: center;
}
.decision-questions {
margin: 30px 0;
}
.decision-question {
margin-bottom: 20px;
}
.decision-options {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin-top: 10px;
}
.option {
padding: 10px 15px;
background-color: #f1f1f1;
border-radius: 20px;
cursor: pointer;
transition: all 0.3s ease;
}
.option:hover {
background-color: #e0e0e0;
}
.option.selected {
background-color: #e91e63;
color: white;
}
.decision-result {
margin-top: 30px;
padding: 15px;
font-size: 1.1em;
font-weight: bold;
}
.guardian-accordion.recommended {
background-color: #f8e8ff;
border-left: 5px solid #9c27b0;
animation: pulse 2s infinite;
}
#recommendedType {
color: #e91e63;
font-weight: 700;
}
/* Changelog Components */
.changelog-box {
background: linear-gradient(135deg, #ffeef7 0%, #ffffff 50%, #f8f9fa 100%) !important;
padding: 25px 30px !important;
border-radius: 16px !important;
border: 1px solid rgba(255, 107, 157, 0.15) !important;
border-left: 5px solid #ff6b9d !important;
box-shadow: 0 4px 20px rgba(255, 107, 157, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
margin: 25px 0 !important;
transition: all 0.3s ease !important;
font-size: 1.05em !important;
line-height: 1.6 !important;
color: #2c3e50 !important;
position: relative !important;
}
.changelog-box:hover {
transform: translateY(-2px) !important;
box-shadow: 0 6px 25px rgba(255, 107, 157, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08) !important;
}
.changelog-with-image {
display: flex !important;
align-items: center !important;
gap: 25px !important;
margin: 25px 0 !important;
}
.changelog-with-image .changelog-box {
flex: 1 !important;
margin: 0 !important;
}
.changelog-image {
flex-shrink: 0;
max-width: 200px;
}
.changelog-image img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* Collapsible Elements */
.mw-body .collapsible,
#content .collapsible,
#mw-content-text .collapsible,
button.collapsible {
background-color: #f1f1f1;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
border-radius: 4px;
margin-bottom: 5px;
position: relative;
}
.mw-body .collapsible:hover,
#content .collapsible:hover,
#mw-content-text .collapsible:hover,
button.collapsible:hover {
background-color: #ddd;
}
.mw-body .collapsible::after,
#content .collapsible::after,
#mw-content-text .collapsible::after,
button.collapsible::after {
content: '+';
font-size: 18px;
font-weight: bold;
float: right;
margin-left: 5px;
}
.mw-body .collapsible.active::after,
#content .collapsible.active::after,
#mw-content-text .collapsible.active::after,
button.collapsible.active::after {
content: '-';
}
.mw-body .collapsible-content,
#content .collapsible-content,
#mw-content-text .collapsible-content,
button.collapsible + .collapsible-content {
padding: 0 18px;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
background-color: white;
border-radius: 0 0 4px 4px;
}
.mw-body .collapsible-content.active,
#content .collapsible-content.active,
#mw-content-text .collapsible-content.active,
button.collapsible + .collapsible-content.active {
max-height: 500px;
padding: 18px;
border: 1px solid #ddd;
border-top: none;
margin-bottom: 15px;
}