body {
    background: url('https://i.ibb.co/SK2kSQL/image.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    color: white;
}

h1 {
    text-align: center;
    margin-top: 50px;
    font-size: 3em;
}

.mob-category {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    margin-bottom: 30px;
}

.mob-category h2 {
    font-size: 2em;
    margin-bottom: 20px;
    border-left: 5px solid orange;
    padding-left: 15px;
}

.mob-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.mob-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    width: 140px;
    text-align: center;
    transition: transform 0.2s;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.mob-card:hover {
    transform: scale(1.05);
    border-color: orange;
}

.mob-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 10px;
}

.mob-card span {
    display: block;
    font-size: 1.1em;
}

.boss {
    background: rgba(255, 0, 0, 0.2);
    border-color: red;
}

.boss span {
    font-weight: bold;
    color: #ff5555;
}
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
    background-color: #222;
    border: 2px solid orange;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    color: white;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.5);
    animation: slideIn 0.4s ease;
}

.modal-content img {
    width: 80px;
    height: 128px;
    margin-bottom: 20px;
}

.modal-content h3 {
    margin-top: 0;
    font-size: 1.8em;
    color: orange;
}

.modal-content p {
    margin: 5px 0;
    font-size: 1.1em;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5em;
    cursor: pointer;
    color: #fff;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
