/* Bosses Container */
.boss-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 10px;
    background-color: #000;
    color: #fff;
}

/* Boss Buttons Section */
.boss-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
    background-color: #111;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.boss-buttons button {
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-height: 44px;
}

.boss-buttons button:hover {
    background-color: #555;
    transform: scale(1.05);
}

.boss-buttons button:active {
    transform: scale(0.98);
}

.boss-buttons button:focus {
    outline: none;
    box-shadow: 0 0 5px 2px rgba(255, 204, 0, 0.5);
}

/* Boss Info Section */
.boss-info {
    flex: 1;
    background-color: #222;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-align: justify;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.boss-info img {
    width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid #333;
}

.boss-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffcc00;
}

.boss-info p {
    font-size: 16px;
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 15px;
}

/* Boss Type (italicized) */
.boss-type {
    font-style: italic;
    font-size: 16px;
    color: #00ffcc;
    margin-bottom: 10px;
}

/* Boss Power Levels */
.boss-pl {
    font-weight: bold;
    color: #ff3333 !important;
    margin-bottom: 5px;
    font-size: 18px;
}

/* Highlighted Elements */
.boss-highlight {
    color: #ffcc00;
    font-weight: bold;
}

/* TABLET - Responsive Design (768px and below) */
@media screen and (max-width: 768px) {
    .boss-container {
        flex-direction: column;
        gap: 15px;
    }

    .boss-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        min-width: auto;
        padding: 12px;
        background-color: transparent;
        box-shadow: none;
    }

    .boss-buttons button {
        flex: 1;
        min-width: 80px;
        padding: 12px 10px;
        font-size: 14px;
        min-height: 44px;
    }

    .boss-info {
        padding: 16px;
        margin-top: 0;
    }

    .boss-info img {
        max-height: 250px;
    }

    .boss-info h2 {
        font-size: 20px;
    }

    .boss-info p {
        font-size: 14px;
    }

    .boss-type {
        font-size: 14px;
    }

    .boss-pl {
        font-size: 16px;
    }
}

/* MOBILE - Small Phones (480px and below) */
@media screen and (max-width: 480px) {
    .boss-container {
        gap: 12px;
        padding: 8px;
    }

    .boss-buttons {
        gap: 6px;
        padding: 10px;
    }

    .boss-buttons button {
        flex: 1 1 45%;
        min-width: 70px;
        padding: 10px 8px;
        font-size: 12px;
        min-height: 44px;
    }

    .boss-info {
        padding: 12px;
    }

    .boss-info img {
        max-height: 180px;
        margin-bottom: 12px;
    }

    .boss-info h2 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .boss-info p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .boss-type {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .boss-pl {
        font-size: 14px;
        margin-bottom: 4px;
    }
}