/* 1. Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: #121212;
    color: #f4f4f4;
    line-height: 1.6;
    overflow-x: hidden; /* Evita rolagem lateral indesejada na página */
}

/* 2. Banner com Título Estilo Manga */
.admin-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), 
                url('seu-fundo.jpg') no-repeat center/cover;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    border-bottom: 6px solid #e63946;
}

.admin-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem); /* Tamanho adaptável automaticamente */
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: -2px;
    
    /* Efeito de contorno e profundidade estilo Shonen */
    text-shadow: 
        4px 4px 0px #e63946, 
        -1px -1px 0px #000,  
         1px -1px 0px #000,
        -1px  1px 0px #000,
         1px  1px 0px #000;
}

.admin-description {
    max-width: 700px;
    font-size: 1.1rem;
    color: #ccc;
    border-left: 4px solid #e63946;
    padding-left: 20px;
    text-align: left;
}

/* 3. Galeria de Mangás (Arrasto Horizontal) */
.imgg {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 50px 20px;
    scrollbar-width: thin;
    scrollbar-color: #e63946 #1a1a1a;
    -webkit-overflow-scrolling: touch; /* Suaviza arrasto no iPhone */
}

/* Customização da barra de rolagem */
.imgg::-webkit-scrollbar {
    height: 8px;
}
.imgg::-webkit-scrollbar-thumb {
    background: #e63946;
    border-radius: 10px;
}

.imgg img {
    flex: 0 0 auto;
    width: 220px;      /* Largura fixa no Mobile */
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 15px rgba(0,0,0,0.6);
    border: 2px solid transparent;
}

.imgg img:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: #e63946;
}

/* 4. Seção de Compra */
.compra-manga {
    text-align: center;
    padding: 80px 20px;
    background-color: #1a1a1a;
}

.compra-manga h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.btn-manga-link {
    display: inline-block;
    background-color: #e63946;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.btn-manga-link:hover {
    background-color: #fff;
    color: #e63946;
    transform: scale(1.1);
}

/* 5. Ajustes para Telas Grandes (PC) */
@media (min-width: 1024px) {
    .imgg img {
        width: 300px; /* Capas maiores no PC */
        height: 420px;
    }
    
    .admin-description {
        font-size: 1.3rem;
        text-align: center;
        border-left: none;
        border-bottom: 3px solid #e63946;
        padding: 0 0 10px 0;
    }
}
.btn-manga-style {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 4px solid #000;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 6px 6px 0px #000; /* Sombra sólida estilo desenho */
}

.btn-manga-style:hover {
    background-color: #000;
    color: #fff;
    box-shadow: 2px 2px 0px #000;
    transform: translate(4px, 4px);
}

.seta-manga {
    margin-left: 10px;
    transition: transform 0.3s;
}

.btn-manga-style:hover .seta-manga {
    transform: translateX(5px);
}