/**
 * Midnight Expansion - Arcantina Quest Hub Module Styles
 */

.arcantina-module {
    animation: fadeIn 0.6s ease-out;
    color: #e2e8f0;
}

.arcantina-module .glass-panel {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(139, 92, 246, 0.1);
}

.arcantina-module .module-header {
    text-align: center;
    border: 2px solid rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(15, 23, 42, 0.9));
    padding: 3.5rem 2rem;
    border-radius: 24px;
    margin-bottom: 2.5rem;
}

.arcantina-module h1 {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
    margin-bottom: 0.8rem;
}

.arcantina-module h2 {
    color: #a78bfa;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 5px solid #8b5cf6;
    padding-left: 1.5rem;
}

.arcantina-module h3 {
    color: #c4b5fd;
    margin-bottom: 1rem;
}

/* Quest Lists */
.quest-lists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quest-list-box {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
}

.quest-item {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.quest-item:last-child {
    border-bottom: none;
}

.quest-item i {
    color: #8b5cf6;
}

/* Info Boxes */
.info-alert {
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
}

.info-alert strong {
    color: #60a5fa;
}

/* Decor Rewards Grid */
.decor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.decor-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.decor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.6);
}

.decor-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.decor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.decor-card:hover .decor-image {
    transform: scale(1.1);
}

.decor-info {
    padding: 1.5rem;
}

.decor-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.decor-source {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.decor-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #fbbf24;
}

.currency-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .arcantina-module h1 {
        font-size: 2.2rem;
    }

    .arcantina-module .glass-panel {
        padding: 1.5rem;
    }
}