@charset "utf-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.palscontainer {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	color: #fff;
	line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

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

.pal-title {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.pal-subtitle {
    font-size: 1.2em;
    color: #ffd700;
    margin-bottom: 20px;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 30px;
}

.pal-image {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.pal-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

.pal-info {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

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

.stat-item {
    background: rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    font-weight: bold;
    color: #ffd700;
}

.stat-value {
    font-size: 1.1em;
    color: #fff;
}

.section {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 5px;
}

.skills-grid {
    display: grid;
    gap: 15px;
}

.skill-item {
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

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

.skill-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #ffd700;
}

.skill-level {
    background: #ffd700;
    color: #000;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.9em;
    font-weight: bold;
}

.skill-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.skill-stat {
    text-align: center;
    padding: 5px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
}

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

.drop-category {
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 10px;
}

.drop-title {
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
}

.drop-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.rarity-legendary { color: #ff6b35; }
.rarity-epic { color: #9b59b6; }
.rarity-rare { color: #3498db; }
.rarity-common { color: #95a5a6; }

.partner-skill {
    background: linear-gradient(45deg, #8b4513, #d2691e);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.partner-skill-name {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffd700;
}

.buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

.rating-stars {
    display: flex;
    gap: 5px;
    margin-top: 10px;
    justify-content: center;
}

.star {
    color: #ffd700;
    font-size: 1.2em;
}

.summary-box {
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #ffd700;
}

/* Locations Section Styles */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.location-item {
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

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

.location-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #ffd700;
}

.location-coords {
    background: #ffd700;
    color: #000;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.9em;
    font-weight: bold;
}

.location-image {
    width: 100%;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: #ffd700;
    position: relative;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.location-placeholder {
    color: #95a5a6;
    font-size: 1em;
    text-align: center;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.location-detail {
    text-align: center;
    padding: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
}

.location-detail-label {
    font-size: 0.8em;
    color: #ffd700;
    margin-bottom: 2px;
}

.location-detail-value {
    font-weight: bold;
    color: #fff;
}

.spawn-rate-high { color: #2ecc71; }
.spawn-rate-medium { color: #f39c12; }
.spawn-rate-low { color: #e74c3c; }

.difficulty-easy { color: #2ecc71; }
.difficulty-medium { color: #f39c12; }
.difficulty-hard { color: #e74c3c; }
.difficulty-extreme { color: #8e44ad; }

.map-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: rgba(255,215,0,0.2);
    border: 1px solid #ffd700;
    border-radius: 6px;
    color: #ffd700;
    text-decoration: none;
    font-size: 0.9em;
    transition: background 0.2s;
}

.map-link:hover {
    background: rgba(255,215,0,0.3);
}

@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .buttons {
        flex-direction: column;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
}
