:root {
    --hell-red: #8B0000;
    --hell-orange: #FF4500;
    --hell-gold: #FFD700;
    --hell-dark: #1A1A1A;
    --hell-darker: #0D0D0D;
    --hell-light: #F8F8F8;
    --hell-embers: linear-gradient(135deg, #8B0000, #FF4500, #8B0000);
    --hell-fire: linear-gradient(to right, #8B0000, #FF4500, #FF8C00, #FF4500, #8B0000);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Oxanium', sans-serif;
    background-color: var(--hell-darker);
    color: var(--hell-light);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
        url('img/imagem_fundo.jpg');
    background-size: auto, auto, cover;
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: var(--hell-embers);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.8);
    border-bottom: 3px solid var(--hell-orange);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    height: 70px;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 100%;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.7));
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(26, 26, 26, 0.5);
    padding: 10px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--hell-red);
}

.nav-button {
    background: rgba(0, 0, 0, 0.3);
    color: var(--hell-light);
    border: 1px solid var(--hell-red);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-button:hover {
    background: var(--hell-red);
    box-shadow: 0 0 15px var(--hell-orange);
    transform: translateY(-2px);
}

.nav-button.active {
    background-color: var(--hell-orange);
    color: #000;
    font-weight: bold;
}

.login-btn {
    background: var(--hell-orange);
    border: none;
    font-weight: 700;
}

.login-btn:hover {
    background: #E03E00;
    box-shadow: 0 0 20px var(--hell-orange);
}

.main-content {
    margin: 40px auto;
    background: rgba(26, 26, 26, 0.5);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--hell-red);
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.section-title {
    color: var(--hell-orange);
    border-bottom: 2px solid var(--hell-red);
    padding-bottom: 10px;
    margin: 0 0 25px 0;
    font-family: 'Black Ops One', cursive;
    font-size: 2.2em;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--hell-gold);
}

.widget {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--hell-red);
    border-radius: 10px;
    padding: 25px;
    margin-top: 40px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.widget:hover {
    border-color: var(--hell-orange);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
}

.widget-title {
    color: var(--hell-orange);
    margin: 0 0 20px 0;
    font-family: 'Black Ops One', cursive;
    font-size: 1.8em;
    text-shadow: 0 0 8px rgba(255, 69, 0, 0.3);
}

/* =========================================
   FIX: CARROSSEL 3D (COVERFLOW) - CORRIGIDO
   ========================================= */
.videos-carousel {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 400px;     /* Altura fixa para posicionamento absoluto */
    margin: 0 auto 40px auto;
    perspective: 1000px;
    overflow: hidden;
}

.videos-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 480px;       
    height: 270px;      
    background: #000;
    border: 2px solid var(--hell-red);
    border-radius: 10px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s, z-index 0.5s;
    transform: translate(-50%, -50%) scale(0); 
    opacity: 0;
    z-index: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.video-item.active {
    border-color: var(--hell-orange);
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.4);
    cursor: pointer;
}

/* Container do Iframe */
.youtube-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    background: #000;
}

.youtube-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* Bloqueia clique nos vídeos laterais */
}

.video-item.active .youtube-container iframe {
    pointer-events: auto; /* Libera clique no vídeo central */
}

/* Informações sobrepostas */
.video-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-item.active .video-info-overlay {
    opacity: 1;
}

/* Botões de Navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 50px;
    height: 50px;
    background: rgba(139, 0, 0, 0.5);
    border: 2px solid var(--hell-orange);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--hell-orange);
    box-shadow: 0 0 15px var(--hell-orange);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn i {
    color: var(--hell-orange);
}

.carousel-btn:hover i {
    color: var(--hell-dark);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicator.active {
    background: var(--hell-orange);
    transform: scale(1.3);
}
/* =========================================
   FIM FIX CARROSSEL
   ========================================= */

/* Grid de Vídeos (Página Videos.php) */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.video-grid-item {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--hell-red);
    position: relative;
}

.video-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.video-grid-item .youtube-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 */
}

.video-grid-item .youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
}

/* Banner */
.banner {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin: 30px auto;
    border: 2px solid var(--hell-orange);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.3);
    transition: transform 0.3s;
}

.banner:hover {
    transform: scale(1.01);
}

.banner img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* Lists */
.benefits-list, .application-list, .rules-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.benefits-list li, .application-list li, .rules-list li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(139, 0, 0, 0.3);
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 25px;
}

.benefits-list li:before {
    content: "\f06d";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 15px;
    color: var(--hell-orange);
    font-size: 1.2em;
}

.application-list li:before, .rules-list li:before {
    content: "•";
    color: var(--hell-orange);
    font-size: 20px;
    position: absolute;
    left: 0;
}

.rules-section {
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--hell-orange);
}

.rules-section.important {
    background-color: rgba(255, 50, 50, 0.1);
    border: 1px dashed var(--hell-orange);
    padding: 15px;
}

.guilds-lists {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}

.guilds-item {
    flex: 1;
}

/* Video Info */
.video-info {
    padding: 10px 5px;
    text-align: center;
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.video-title {
    font-size: 0.95rem;
    margin: 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-grid-item .video-title {
    color: var(--hell-orange);
}

.video-date {
    font-size: 0.8rem;
    color: #aaa;
}

.video-description {
    color: #ddd;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.video-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    gap: 10px;
}

.watch-button {
    display: inline-block;
    padding: 8px 15px;
    background: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s;
    flex: 1;
    text-align: center;
}

.watch-button:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.watch-button i {
    margin-right: 8px;
}

.share-btn {
    flex: 0 0 40px;
    background: var(--hell-dark);
    border: 1px solid var(--hell-orange);
    color: var(--hell-orange);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.share-btn:hover {
    background: var(--hell-orange);
    color: var(--hell-dark);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow: auto;
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: var(--hell-dark);
    margin: 10% auto;
    padding: 30px;
    border: 2px solid var(--hell-orange);
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.5);
    animation: modalFadeIn 0.3s;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--hell-orange);
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.9);
    border-top: 2px solid var(--hell-red);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--hell-fire);
}

footer p {
    margin: 10px 0;
    color: #aaa;
}

footer p:first-child {
    color: var(--hell-orange);
    font-weight: 600;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    color: var(--hell-light);
    font-size: 1.5em;
    margin: 0 10px;
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: var(--hell-orange);
    transform: translateY(-3px);
}

/* Discord Corner */
.discord-corner {
    display: block;
    width: 60px;
    height: 60px;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.discord-corner:hover {
    transform: scale(1.1);
    animation: none;
}

.discord-corner img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 2px solid var(--hell-orange);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hell-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s, visibility 0.8s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(139, 0, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--hell-orange);
    animation: spin 1.5s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    color: var(--hell-orange);
    font-family: 'Black Ops One', cursive;
    font-size: 2em;
    text-shadow: 0 0 15px rgba(255, 69, 0, 0.7);
    letter-spacing: 2px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animated Background Elements */
.fire-particle {
    position: fixed;
    background: var(--hell-orange);
    border-radius: 50%;
    filter: blur(5px);
    opacity: 0.6;
    z-index: -1;
    animation: float linear infinite;
    will-change: transform;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 1; }
    50% { transform: translateY(-50vh) rotate(180deg) scale(1.2); opacity: 0.8; }
    100% { transform: translateY(-100vh) rotate(360deg) scale(1); opacity: 0; }
}

/* No Videos Message */
.no-videos-message {
    text-align: center;
    padding: 40px 20px;
    color: #aaa;
}

.no-videos-message i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: #666;
}

.no-videos-message p {
    margin: 10px 0;
    font-size: 1.1em;
}

/* Image Carousel */
.images-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 30px 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--hell-red);
    padding: 20px;
}

.images-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}

.images-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    height: 400px;
    align-items: center;
}

.image-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-slide img {
    max-width: 100%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.image-caption {
    margin-top: 15px;
    padding: 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    max-width: 80%;
}

.image-title {
    color: var(--hell-orange);
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.image-description {
    color: #ddd;
    font-size: 0.9rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.carousel-counter {
    color: var(--hell-orange);
    font-weight: bold;
    margin: 0 15px;
    min-width: 60px;
    text-align: center;
}

.images-indicators {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
}

.images-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.images-indicator.active {
    background: var(--hell-orange);
    transform: scale(1.2);
}

.img-prev, .img-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--hell-orange);
    border-radius: 50%;
    color: var(--hell-orange);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.img-prev {
    left: 10px;
}

.img-next {
    right: 10px;
}

.img-prev:hover, .img-next:hover {
    background: var(--hell-orange);
    color: var(--hell-dark);
}

/* Favorite Button */
.favorite-btn {
    background: transparent;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    margin-top: 5px;
}

.favorite-btn.favorited, .favorite-btn:hover {
    color: var(--hell-orange);
    transform: scale(1.1);
}

/* Video Preview */
.video-preview {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    background: var(--hell-dark);
    border: 2px solid var(--hell-orange);
    border-radius: 8px;
    padding: 10px;
    z-index: 100;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    display: none;
}

.video-grid-item .video-preview {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    padding: 15px;
}

.video-preview img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.preview-info h4 {
    color: var(--hell-orange);
    font-size: 1rem;
    margin-bottom: 5px;
}

.preview-info p {
    font-size: 0.8rem;
    color: #ccc;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 30px;
}

#load-more-btn {
    padding: 10px 25px;
    font-size: 1rem;
}

/* Monitor Page */
.monitor-content {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-top: 20px;
}

.monitor-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.stat-card {
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid var(--hell-red);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(139, 0, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.2);
}

.stat-card h3 {
    color: var(--hell-orange);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--hell-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: #aaa;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--hell-orange);
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    transition: transform 0.3s ease;
    z-index: 1002;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

/* Apply Button */
.apply-button {
    background: var(--hell-orange);
    color: var(--hell-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.apply-button:hover {
    background: #E03E00;
    box-shadow: 0 0 20px var(--hell-orange);
    transform: translateY(-2px);
}

.apply-button i {
    margin-right: 8px;
}

/* Image Loader */
.image-loader {
    position: relative;
    background: rgba(26, 26, 26, 0.5);
    overflow: hidden;
}

.image-loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,69,0,0.1), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 1200px) and (max-width: 1440px) {
    .container { max-width: 1100px; padding: 0 15px; }
    .video-item { width: 420px; height: 236px; } /* Ajuste proporcional */
}

@media (max-width: 1024px) {
    .videos-carousel { height: 350px; }
    .video-item { width: 400px; height: 225px; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(139, 0, 0, 0.3);
        border-radius: 50%;
        border: 1px solid var(--hell-orange);
    }
    
    .nav-panel {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        padding: 20px;
        display: flex !important;
        visibility: hidden;
    }
    
    .nav-panel.active {
        transform: translateY(0);
        visibility: visible;
    }
    
    .nav-button {
        width: 100%;
        max-width: 280px;
        margin: 8px 0;
        text-align: center;
        padding: 12px;
    }

    /* Ajuste do carrossel no mobile */
    .videos-carousel {
        height: 280px; 
    }
    
    .video-item {
        width: 85%;
        height: 200px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .videos-grid { grid-template-columns: 1fr; }
    .monitor-stats { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .widget { padding: 15px; }
    .footer { padding: 20px 10px; }
    .social-links { gap: 15px; }
    .discord-corner { width: 50px; height: 50px; bottom: 15px; right: 15px; }
}

/* ==========================================
   NOVOS ESTILOS: LOGIN E ADMIN
   ========================================== */

/* Menus Dropdown (Login e Usuário) */
.user-menu-container, .login-menu-container {
    position: relative;
    display: inline-block;
}

.user-dropdown-content, .login-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: rgba(15, 15, 15, 0.98);
    min-width: 280px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.8);
    z-index: 2000;
    border: 1px solid var(--hell-red);
    border-radius: 0 0 8px 8px;
    padding: 20px;
    backdrop-filter: blur(10px);
    margin-top: 10px;
    animation: dropIn 0.3s ease;
}

.user-dropdown-content::before, .login-dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background-color: var(--hell-red);
    transform: rotate(45deg);
    border-top: 1px solid var(--hell-red);
    border-left: 1px solid var(--hell-red);
    z-index: -1;
}

.show {
    display: block;
}

@keyframes dropIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Formulário de Login Inline */
.login-field {
    margin-bottom: 15px;
}

.login-field input {
    width: 100%;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #444;
    color: #fff;
    border-radius: 5px;
    font-family: 'Oxanium', sans-serif;
    transition: border-color 0.3s;
}

.login-field input:focus {
    border-color: var(--hell-orange);
    outline: none;
}

.inline-login-submit {
    width: 100%;
    padding: 10px;
    background: linear-gradient(to right, var(--hell-red), #a00000);
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Black Ops One', cursive;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.inline-login-submit:hover {
    background: var(--hell-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

.error-text {
    color: #ff4444;
    font-size: 0.9em;
    margin-top: 10px;
    text-align: center;
}

.user-dropdown-content a {
    color: #ddd;
    padding: 12px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    transition: 0.3s;
    margin-bottom: 5px;
}

.user-dropdown-content a:hover {
    background-color: rgba(139, 0, 0, 0.3);
    color: var(--hell-orange);
    padding-left: 20px;
}

.user-role-badge {
    background: var(--hell-orange);
    color: black;
    font-size: 0.7em;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 5px;
    font-weight: bold;
}

/* Edição Frontend */
.editable-text {
    border: 1px dashed transparent;
    transition: all 0.3s;
    cursor: text;
    position: relative;
}

.editable-text:hover {
    border: 1px dashed var(--hell-orange);
    background: rgba(255, 69, 0, 0.1);
    border-radius: 4px;
}

.editable-text:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--hell-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.admin-btn-small {
    background: var(--hell-red);
    color: white;
    border: 1px solid var(--hell-orange);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: 'Oxanium', sans-serif;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.admin-btn-small:hover {
    background: var(--hell-orange);
    color: black;
}

.delete-slide-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(200, 0, 0, 0.8);
    color: white;
    border: 2px solid white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    opacity: 0;
}

.image-slide:hover .delete-slide-btn {
    opacity: 1;
}

.delete-slide-btn:hover {
    background: red;
    transform: scale(1.1);
}

/* Olho da Senha no Login Inline */
.password-container-inline {
    position: relative;
    display: flex;
    align-items: center;
}

.toggle-inline-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    padding: 5px;
    outline: none;
    z-index: 10;
}

.toggle-inline-password:hover {
    color: var(--hell-orange);
}

/* Botões de Edição Admin (Discord e Footer) */
.admin-edit-float-btn {
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--hell-orange);
    border: 1px solid #fff;
    color: black;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 101;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.social-item {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.admin-edit-icon {
    font-size: 12px;
    color: var(--hell-orange);
    cursor: pointer;
    margin-left: -5px;
    margin-right: 10px;
    opacity: 0.7;
    vertical-align: top;
    transition: all 0.2s;
}

.admin-edit-icon:hover {
    opacity: 1;
    transform: scale(1.2);
}