/* ================================
   BLESSINGS - MODERN DESIGN V1
   Account Management Style
   ================================ */

:root {
    --primary-bg: #0f141a;
    --secondary-bg: #1a2332;
    --border-color: #2a3440;
    --accent-cyan: #00ffaa;
    --text-light: #e6f8ff;
    --text-muted: #a8b3c2;
    --error-red: #ff4444;
    --success-green: #7AF972;
    --warning-yellow: #F9F572;
    --bless-purple: #9b59b6;
    --bless-gold: #FFD700;
}

/* ================================
   CONTAINER & LAYOUT
   ================================ */

.bless-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ================================
   HEADER
   ================================ */

.bless-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a2332 0%, #0f141a 100%);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.bless-logo {
    font-size: 64px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px rgba(155, 89, 182, 0.4));
}

.bless-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 12px 0;
    text-shadow: 0 2px 10px rgba(155, 89, 182, 0.3);
}

.bless-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ================================
   INFO BOX
   ================================ */

.info-box {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(155, 89, 182, 0.05) 100%);
    border: 1px solid rgba(155, 89, 182, 0.2);
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    font-size: 24px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(155, 89, 182, 0.5));
}

.info-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.info-text strong {
    color: var(--bless-purple);
}

/* ================================
   NPC SECTION
   ================================ */

.npc-section {
    background: var(--secondary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    overflow: hidden;
}

.npc-profile {
    padding: 24px;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15) 0%, rgba(155, 89, 182, 0.05) 100%);
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.npc-sprite {
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.5));
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.npc-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--bless-purple);
    margin: 0;
    text-shadow: 0 0 20px rgba(155, 89, 182, 0.4);
}

/* ================================
   LOCATION SECTION
   ================================ */

.location-section {
    background: var(--secondary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    padding: 24px;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.location-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 10px rgba(155, 89, 182, 0.5));
}

.location-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-cyan);
    margin: 0;
}

.location-content {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.location-content strong {
    color: var(--bless-purple);
}

.location-map {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
}

/* ================================
   BLESSINGS TABLE
   ================================ */

.bless-content {
    padding: 24px;
}

.blessings-section {
    margin-bottom: 30px;
}

.blessings-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-cyan);
    margin: 0 0 16px 0;
    padding-left: 8px;
    border-left: 3px solid var(--accent-cyan);
}

.blessings-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--primary-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.blessings-table thead tr {
    background: linear-gradient(135deg, #1a2332 0%, #141c28 100%);
}

.blessings-table thead th {
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
    text-align: center;
}

.blessings-table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-color);
}

.blessings-table tbody tr:last-child {
    border-bottom: none;
}

.blessings-table tbody tr:hover {
    background: rgba(155, 89, 182, 0.1);
    transform: scale(1.005);
}

.blessings-table tbody td {
    padding: 14px 16px;
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
}

.blessing-number {
    font-weight: 700;
    color: var(--bless-purple);
    font-size: 16px;
}

.blessing-name {
    font-weight: 600;
    color: var(--text-light);
    text-transform: capitalize;
}

.blessing-price {
    color: var(--bless-gold);
    font-weight: 600;
    white-space: nowrap;
}

.blessing-icon {
    font-size: 20px;
    margin-right: 8px;
}

/* ================================
   STATS BOX
   ================================ */

.stats-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #1a2332 0%, #141c28 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--bless-purple);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================
   REQUIREMENTS BOX
   ================================ */

.requirements-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 30px;
}

.requirements-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--bless-gold);
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.requirements-list li::before {
    content: "✓";
    color: var(--success-green);
    font-weight: 700;
    font-size: 18px;
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-scale {
    animation: fadeInScale 0.4s ease-out;
}

.npc-section {
    animation: fadeInScale 0.5s ease-out;
}

.location-section {
    animation: fadeInScale 0.5s ease-out;
    animation-delay: 0.1s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media screen and (max-width: 1024px) {
    .bless-container {
        padding: 16px;
    }
    
    .bless-header {
        padding: 30px 16px;
    }
    
    .bless-title {
        font-size: 30px;
    }
    
    .npc-name {
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {
    .bless-title {
        font-size: 26px;
    }
    
    .bless-subtitle {
        font-size: 14px;
    }
    
    .npc-profile {
        padding: 20px 16px;
    }
    
    .npc-name {
        font-size: 20px;
    }
    
    .location-section {
        padding: 16px;
    }
    
    .bless-content {
        padding: 16px;
    }
    
    .blessings-table {
        font-size: 13px;
    }
    
    .blessings-table thead th {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .blessings-table tbody td {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .blessings-title {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .bless-container {
        padding: 12px;
    }
    
    .bless-header {
        padding: 24px 12px;
    }
    
    .bless-logo {
        font-size: 48px;
    }
    
    .bless-title {
        font-size: 22px;
    }
    
    .bless-subtitle {
        font-size: 13px;
    }
    
    .info-box {
        padding: 16px;
        gap: 12px;
    }
    
    .info-icon {
        font-size: 20px;
    }
    
    .info-text {
        font-size: 14px;
    }
    
    .npc-profile {
        padding: 16px 12px;
        gap: 12px;
    }
    
    .npc-sprite {
        max-width: 64px;
    }
    
    .npc-name {
        font-size: 18px;
    }
    
    .location-section {
        padding: 12px;
    }
    
    .location-content {
        font-size: 14px;
    }
    
    .bless-content {
        padding: 12px;
    }
    
    .blessings-section {
        margin-bottom: 20px;
    }
    
    .blessings-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .blessings-table {
        font-size: 12px;
    }
    
    .blessings-table thead th {
        padding: 8px 4px;
        font-size: 11px;
    }
    
    .blessings-table tbody td {
        padding: 8px 4px;
        font-size: 12px;
    }
    
    .blessing-icon {
        display: none;
    }
    
    .stats-box {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .requirements-box {
        padding: 16px;
    }
    
    .requirements-list li {
        font-size: 14px;
    }
}

/* ================================
   UTILITY CLASSES
   ================================ */

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}
