body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #050505;
    color: #333;
}
h1 {
    font-family: 'Quantico', sans-serif;
    color: rgb(255, 0, 0);
    padding: 20px;
    text-align: center;
    font-size: 62px;
    font-weight: 700;
    letter-spacing: 6px;

}
h2 {
    background-color: #0c0c0c;
    color: rgb(255, 0, 0);
    padding: 20px;
    text-align: center;
    font-family: 'Quantico', sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 15px 20px;
    background-color: #0c0c0c;
}

.nav-btn {
    padding: 10px 20px;
    background-color: rgb(255, 0, 0);
    color: #0c0c0c;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Quantico', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid rgb(255, 0, 0);
}

.nav-btn:hover {
    background-color: transparent;
    color: rgb(255, 0, 0);
}

.cascade-btn {
    background-color: #0066ff;
    border-color: #0066ff;
}

.cascade-btn:hover {
    background-color: transparent;
    color: #0066ff;
}

.cascade-dropdown {
    border-color: #0066ff !important;
}

.cascade-dropdown .dropdown-link {
    color: #0066ff;
}

.cascade-dropdown .dropdown-link:hover {
    background-color: #0066ff;
    color: #0c0c0c;
}

.music-btn {
    background-color: #ff0202;
    border-color: #ff0000;
}
.music-btn:hover {
    background-color: transparent;
    color: rgb(255, 0, 0);
}

.mori-btn {
    background-color: #ffcc00;
    border-color: #ffcc00;
    color: #0c0c0c;
}

.mori-btn:hover {
    background-color: transparent;
    color: #ffcc00;
}

.mori-dropdown {
    border-color: #ffcc00 !important;
}

.mori-dropdown .dropdown-link {
    color: #ffcc00;
}

.mori-dropdown .dropdown-link:hover {
    background-color: #ffcc00;
    color: #0c0c0c;
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0c0c0c;
    border: 2px solid rgb(255, 0, 0);
    border-radius: 0 0 5px 5px;
    flex-direction: column;
    min-width: 200px;
    margin-top: 8px;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-link {
    padding: 10px 15px;
    color: rgb(255, 0, 0);
    text-decoration: none;
    font-family: 'Quantico', sans-serif;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
}

.commission-prices ul {
    list-style-type: none;
    padding: 0;
    margin: 20px auto;
    max-width: 600px;
}

.comic-browser {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
}

.comic-card img {
    background-color: #0c0c0c;
    border: 2px solid rgb(255, 0, 0);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
}

.comic-card h2 {
    font-family: 'Quantico', sans-serif;
    color: rgb(255, 0, 0);
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
}

.comic-reader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 30px;
}

#comic-page {
    max-width: 75%;
    max-height: 75vh;
    object-fit: contain;
}

.comic-arrow {
    background-color: red;
    color: #0c0c0c;
    border: 2px solid red;
    padding: 12px 20px;
    font-size: 30px;
    cursor: pointer;
}

.comic-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

#page-counter {
    color: white;
    text-align: center;
    font-family: 'Quantico', sans-serif;
}
.commission-prices li {
    background-color: #0c0c0c;
    color: rgb(255, 0, 0);
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-family: 'Quantico', sans-serif;
    font-weight: 700;
    font-size: 14px;
}
.dropdown-link:hover {
    background-color: rgb(255, 0, 0);
    color: #0c0c0c;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}

.art-card {
    background: rgb(235, 14, 14);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 250px;
}

.art-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover {
    color: #ff0000;
}

footer {
    font-family: 'Quantico', sans-serif;
    color: red;
    text-align: center;
    padding: 10px;
    background-color: #222;
    color: white;
}
