/* ESTILOS GLOBAIS */
   :root {
    --bg-primary: linear-gradient(180deg, #0b0f1a 0%, #05070d 100%);

    --bg-secondary: #11141e;
    --bg-tertiary: #1a1e2c;

    /* 🔥 Vermelho principal */
    --accent-gold: #c83232;
    --accent-gold-light: #ff6b6b;

    --accent-red: #ff3b3b;
    --accent-blue: #4a6fff;
    --accent-purple: #9b59b6;
    --accent-green: #10b981;
    --accent-orange: #ff9f43;

    --text-primary: #ffffff;
    --text-secondary: #b0b3c1;

    --border-color: #2a2f42;

    /* 🔥 Glow vermelho */
    --shadow-gold: 0 0 20px rgba(200, 50, 50, 0.45);
    --shadow-blue: 0 0 20px rgba(74, 111, 255, 0.3);
    --shadow-red: 0 0 20px rgba(255, 59, 59, 0.4);
    --shadow-purple: 0 0 20px rgba(155, 89, 182, 0.3);
    --shadow-green: 0 0 20px rgba(16, 185, 129, 0.3);

    --radius-lg: 16px;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            min-height: 100vh;
        }

        /* LAYOUT PRINCIPAL */
        .guide-container {
            display: flex;
            min-height: 100vh;
        }

        /* MENU LATERAL */
        .sidebar {
            width: 280px;
            background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
            border-right: 1px solid var(--border-color);
            padding: 24px 0;
            position: fixed;
            height: 100vh;
            overflow-y: auto;
            z-index: 1000;
        }

        .sidebar-header {
            padding: 0 24px 24px;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 24px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon {
    width: 80px !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.logo-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}


        .logo-text h1 {
            font-size: 20px;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 800;
        }

        .logo-text p {
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 2px;
        }

        .sidebar-nav {
            padding: 0 16px;
        }

        .nav-section {
            margin-bottom: 32px;
        }

        .section-title {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-secondary);
            margin-bottom: 16px;
            padding: 0 8px;
            font-weight: 600;
        }

        .nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            border-radius: 12px;
            text-decoration: none;
            color: var(--text-secondary);
            transition: all 0.3s ease;
            margin-bottom: 4px;
            border: 1px solid transparent;
            cursor: pointer;
        }

        .nav-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--border-color);
            color: var(--text-primary);
            transform: translateX(4px);
        }

        .nav-item.active {
            background: linear-gradient(90deg, rgba(212, 175, 55, 0.15), rgba(74, 111, 255, 0.05));
            border-color: var(--accent-gold);
            color: var(--accent-gold-light);
            box-shadow: var(--shadow-gold);
        }

        .nav-icon {
            font-size: 18px;
            min-width: 24px;
            text-align: center;
        }

        .nav-text {
            flex: 1;
            font-weight: 500;
        }

        .category {
            margin-bottom: 8px;
        }

        .category-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 14px;
            width: 100%;
            text-align: left;
        }

        .category-header:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .category-title {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-primary);
            font-weight: 500;
        }

        .category-arrow {
            color: var(--text-secondary);
            transition: transform 0.3s ease;
            font-size: 12px;
        }

        .category.active .category-arrow {
            transform: rotate(90deg);
            color: var(--accent-gold);
        }

        .submenu {
            padding-left: 44px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .category.active .submenu {
            max-height: 500px;
        }

        .submenu-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            color: var(--text-secondary);
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.2s ease;
            margin-bottom: 2px;
            cursor: pointer;
            border: 1px solid transparent;
        }

        .submenu-item:hover {
            background: rgba(255, 255, 255, 0.03);
            color: var(--text-primary);
            transform: translateX(4px);
        }

        .submenu-item.active {
            color: var(--accent-gold);
            background: rgba(212, 175, 55, 0.1);
            border-color: rgba(212, 175, 55, 0.2);
        }

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

        .sidebar-footer {
            margin-top: auto;
            padding: 24px;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }

        .last-updated {
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        /* CONTEÚDO PRINCIPAL */
        .main-content {
            flex: 1;
            margin-left: 280px;
            padding: 0;
            min-height: 100vh;
        }

        .content-header {
            background: rgba(10, 12, 18, 0.8);
            backdrop-filter: blur(10px);
            padding: 24px 32px;
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 999;
        }

        .header-title h1 {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 4px;
        }

        .header-title p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* CONTEÚDOS */
        .content-section {
            display: none;
            padding: 32px;
        }

        .content-section.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* ESTILO COMUM PARA TODAS AS SEÇÕES */
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 32px;
            margin-bottom: 32px;
        }

        .section-title-large {
            font-size: 36px;
            font-weight: 800;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 8px;
        }

        .section-description {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        /* ESTILO DA PÁGINA INICIAL */
        .welcome-banner {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(74, 111, 255, 0.05));
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 40px;
            margin-bottom: 40px;
        }

        .welcome-title {
            font-size: 28px;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .welcome-text {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 600px;
            line-height: 1.8;
        }

        .stats-grid {
            display: flex;
            gap: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 42px;
            font-weight: 800;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .highlight-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-bottom: 40px;
        }

        .card {
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-gold);
        }

        .card-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--accent-gold);
            color: var(--bg-primary);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .card-image {
            height: 160px;
            position: relative;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 24px;
        }

        .card-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--accent-gold-light);
        }

        .card-description {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
        }

        /* ESTILO DOS BOSSES COM FOTOS */
        .boss-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .boss-item {
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 24px;
            display: flex;
            gap: 24px;
            align-items: flex-start;
            transition: all 0.3s ease;
        }

        .boss-item:hover {
            transform: translateY(-2px);
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-gold);
        }

        .boss-image {
            width: 350px;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            background: #000;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .boss-image img {
            max-width: 90%;
            max-height: 90%;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .boss-info {
            flex: 1;
        }

        .boss-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--accent-gold-light);
        }

        .boss-level {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            color: var(--accent-gold);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .boss-details {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .boss-details ul {
            list-style: none;
            padding-left: 0;
            margin-top: 16px;
        }

        .boss-details li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .boss-details li:before {
            content: '•';
            color: var(--accent-gold);
            position: absolute;
            left: 0;
        }

        /* ESTILO DOS DROPS (LOCAIS DE FARM) */
        .drop-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 24px;
        }

        .drop-item {
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .drop-item:hover {
            transform: translateY(-4px);
            border-color: var(--accent-blue);
            box-shadow: var(--shadow-blue);
        }

        .drop-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
            padding: 24px 24px 0;
        }

        .drop-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-blue), #3a56cc);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            flex-shrink: 0;
        }

        .drop-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--accent-blue);
            margin-bottom: 4px;
        }

        .drop-subtitle {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .drop-content {
            padding: 0 24px 24px;
        }

        .drop-content ul {
            list-style: none;
            padding-left: 0;
        }

        .drop-content li {
            margin-bottom: 12px;
            padding: 12px;
            background: rgba(74, 111, 255, 0.05);
            border-radius: 8px;
            border-left: 3px solid var(--accent-blue);
        }

        /* ESTILO DOS EVENTOS */
        .event-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 24px;
        }

        .event-item {
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .event-item:hover {
            transform: translateY(-4px);
            border-color: var(--accent-purple);
            box-shadow: var(--shadow-purple);
        }

        .event-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
            padding: 24px 24px 0;
        }

        .event-icon {
            width: 60px;
            height: 60px;
            
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            flex-shrink: 0;
        }

        .event-title {
            font-size: 20px;
            font-weight: 700;
            color: #E10600;
            margin-bottom: 4px;
        }

        .event-schedule {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }

        .event-content {
            padding: 0 24px 24px;
        }

        .event-rewards {
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid var(--border-color);
        }
        
        .event-logo {
        width: 70px;   /* ajuste como quiser */
        height: auto;
        }

        .rewards-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--accent-gold);
            margin-bottom: 12px;
        }

        .rewards-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .reward-tag {
            background: rgba(212, 175, 55, 0.1);
            color: var(--accent-gold);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        /* ESTILO DOS CUSTOMS */
        .custom-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .custom-item {
            background: linear-gradient(145deg, #1a1a1a, #222);
            border-radius: 8px;
            padding: 15px;
            border: 1px solid #333;
            transition: all 0.3s ease;
            min-height: 180px;
        }

        .custom-item:hover {
            border-color: #FFD700;
            box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
        }

        .custom-content-with-image {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .custom-image-container {
            position: relative;
            flex-shrink: 0;
            width: 180px;
            height: 120px;
        }

        .image-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            cursor: pointer;
            border-radius: 6px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #444;
        }

        .image-wrapper:hover {
            border-color: #FFD700;
            box-shadow: 0 0 6px rgba(255, 215, 0, 0.3);
        }

        .custom-item-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 4px;
            background-color: #1a1a1a;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 4px;
        }

        .image-wrapper:hover .image-overlay {
            opacity: 1;
        }

        .zoom-icon {
            font-size: 18px;
            color: #FFD700;
            background: rgba(0, 0, 0, 0.8);
            padding: 6px;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .custom-details {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .custom-header-inline {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .custom-title {
            color: #FFD700;
            font-size: 20px;
            font-weight: bold;
            margin: 0;
        }

        .rarity-label {
            font-weight: bold;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 11px;
            text-transform: uppercase;
        }

        .rarity-label.legendary {
            background: linear-gradient(45deg, #8B0000, #FF4500);
            color: #FFF;
        }

        .rarity-label.epic {
            background: linear-gradient(45deg, #4B0082, #8A2BE2);
            color: #FFF;
        }

        /* MODAL */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            overflow: auto;
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            background: transparent;
            margin: 40px auto;
            padding: 0;
            border: none;
            width: 90%;
            max-width: 800px;
            position: relative;
            display: flex;
            flex-direction: column;
            animation: slideUp 0.4s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close-modal {
            position: fixed;
            right: 25px;
            top: 25px;
            color: #FFD700;
            font-size: 36px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            color: white;
            background: rgba(0, 0, 0, 0.8);
        }

        .modal-image-container {
            background: linear-gradient(145deg, #222, #1a1a1a);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #444;
        }

        .modal-header {
            background: linear-gradient(45deg, #2a2a2a, #333);
            padding: 15px 20px;
            border-bottom: 1px solid #444;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }

        .modal-title {
            color: #FFD700;
            font-size: 24px;
            font-weight: bold;
            margin: 0;
        }

        .modal-rarity {
            font-weight: bold;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 12px;
            text-transform: uppercase;
        }

        .modal-rarity.legendary {
            background: linear-gradient(45deg, #8B0000, #FF4500);
            color: #FFF;
        }

        .modal-rarity.epic {
            background: linear-gradient(45deg, #4B0082, #8A2BE2);
            color: #FFF;
        }

        .modal-image-wrapper {
            padding: 20px;
            text-align: center;
            background: #1a1a1a;
            border-bottom: 1px solid #333;
        }

        .modal-image {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 500px;
            border-radius: 6px;
            border: 1px solid #555;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            background: #2a2a2a;
            object-fit: contain;
        }

        .modal-details {
            padding: 20px;
            background: #222;
        }

        .modal-details ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .modal-details li {
            margin-bottom: 8px;
            color: #ddd;
            font-size: 14px;
            padding: 3px 0;
            border-bottom: 1px dashed #333;
        }

        .modal-details li:last-child {
            border-bottom: none;
        }

        .modal-details strong {
            color: #FFD700;
            font-size: 13px;
            display: inline-block;
            min-width: 140px;
        }

        /* TAXAS DE DROP */
        .rates-table {
            width: 100%;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border-collapse: collapse;
        }

        .rates-table th {
            background: rgba(212, 175, 55, 0.1);
            padding: 16px;
            text-align: left;
            color: var(--accent-gold);
            font-weight: 600;
            border-bottom: 1px solid var(--border-color);
        }

        .rates-table td {
            padding: 16px;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-secondary);
        }

        .rates-table tr:last-child td {
            border-bottom: none;
        }

        .rates-table tr:hover td {
            background: rgba(255, 255, 255, 0.03);
        }

        /* IMAGENS PLACEHOLDER */
        .image-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #2a2f42, #1a1e2c);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .image-placeholder.large {
            font-size: 18px;
        }

        /* FOOTER */
        .footer {
            margin-top: 60px;
            padding-top: 32px;
            border-top: 1px solid var(--border-color);
            text-align: center;
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* RESPONSIVIDADE */
        @media (max-width: 1024px) {
            .sidebar {
                width: 240px;
            }
            .main-content {
                margin-left: 240px;
            }
            .boss-image {
                width: 250px;
                height: 180px;
            }
        }

        @media (max-width: 768px) {
            .guide-container {
                flex-direction: column;
            }
            .sidebar {
                position: static;
                width: 100%;
                height: auto;
                max-height: 60vh;
            }
            .main-content {
                margin-left: 0;
            }
            .boss-item {
                flex-direction: column;
            }
            .boss-image {
                width: 100%;
                height: 200px;
            }
            .drop-grid,
            .event-grid,
            .custom-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                flex-direction: column;
                gap: 20px;
            }
            .section-title-large {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .content-header {
                padding: 16px;
            }
            .content-section {
                padding: 16px;
            }
            .section-header {
                padding: 24px;
            }
            .event-grid,
            .custom-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* LOGO BOX - SIMPLES E LIMPO */
        .logo-box {
            text-align: center;
            margin: 40px auto;
            padding: 20px;
        }

        .logo-box img {
            width: 400px;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        /* PARA MOVER MAIS PARA DIREITA */
        .logo-box.right {
            margin-left: 30%;
            margin-right: auto;
        }

        /* RESPONSIVO */
        @media (max-width: 768px) {
            .logo-box img {
                width: 300px;
            }
        }

        @media (max-width: 480px) {
            .logo-box img {
                width: 200px;
            }
        }

        /* NOVOS ESTILOS PARA RECEITAS */
        .recipe-section {
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 32px;
            margin-bottom: 32px;
        }

        .recipe-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 20px;
            text-align: center;
        }

        .recipe-description {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
            text-align: center;
        }

        .recipe-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .recipe-item {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .recipe-item:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
        }

        .recipe-image-container {
            width: 100px;
            height: 100px;
            margin: 0 auto 15px;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid var(--accent-gold);
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .recipe-image {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

        .recipe-item-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 5px;
        }

        .recipe-item-description {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .recipe-result {
            background: rgba(212, 175, 55, 0.1);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            border: 1px solid var(--accent-gold);
            margin-top: 20px;
        }

        .result-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 15px;
        }

        .result-image {
            width: 150px;
            height: 150px;
            margin: 0 auto;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid var(--accent-gold);
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .result-image img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

        .result-name {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-top: 15px;
        }

        .result-description {
            font-size: 14px;
            color: var(--text-secondary);
            margin-top: 10px;
        }

        /* Estilo para o texto e imagem no Chaos Castle */
        .chaos-info {
            background: linear-gradient(135deg, rgba(255, 71, 87, 0.1), rgba(74, 111, 255, 0.05));
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 40px;
            margin-bottom: 40px;
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .chaos-text {
            flex: 1;
        }

        .chaos-image {
            flex: 0 0 300px;
        }

        .chaos-image img {
            width: 100%;
            border-radius: 12px;
            border: 2px solid var(--accent-red);
            box-shadow: 0 0 30px rgba(255, 71, 87, 0.3);
        }

        .chaos-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent-red);
            margin-bottom: 20px;
        }

        .chaos-description {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            .chaos-info {
                flex-direction: column;
                padding: 24px;
            }
            
            .chaos-image {
                flex: 0 0 auto;
                width: 100%;
                max-width: 300px;
            }
            
            .recipe-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .recipe-grid {
                grid-template-columns: 1fr;
            }
        }
    


        /* Prevenir seleção de texto */
        body {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        
        /* Permitir seleção apenas em campos de texto */
        input, textarea {
            -webkit-user-select: text;
            -moz-user-select: text;
            -ms-user-select: text;
            user-select: text;
        }
        
        /* Mensagem anti-copy */
        .anti-copy-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.9);
            color: #ff4757;
            padding: 20px 30px;
            border-radius: 10px;
            border: 2px solid #ff4757;
            font-weight: bold;
            font-size: 18px;
            z-index: 999999;
            display: none;
            text-align: center;
            box-shadow: 0 0 30px rgba(255, 71, 87, 0.5);
        }

/* Adicionado: sinal de + na receita (Blood Castle) */
.recipe-plus{
  color:#ff0000;
  font-weight:900;
  font-size:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 12px;
  line-height:1;
  user-select:none;
}


.image-overlay,
.image-overlay * {
  pointer-events: none !important;
}

/* FIX: exibir modal quando JS adiciona .show */
.modal.show{display:block;}
/* FIX: compatibilidade se usar .active */
.modal.active{display:block;}

/* FIX: overlay não bloquear toque/clique */
.image-overlay, .image-overlay *{pointer-events:none;}

html {
    background-image: url("/images/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
body,
.wrapper,
.main,
.container,
.card,
.sidebar,
.content {
    background: transparent !important;
}
.bg-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

/* 🔥 Fagulhas */
.embers::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,120,0,.8) 1px, transparent 2px),
        radial-gradient(circle, rgba(255,60,0,.6) 1px, transparent 2px);
    background-size: 120px 120px, 180px 180px;
    animation: embersMove 20s linear infinite;
}

@keyframes embersMove {
    from { transform: translateY(0); }
    to   { transform: translateY(-400px); }
}

/* ✨ Partículas */
.particles::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle, rgba(255,255,255,.15) 1px, transparent 2px);
    background-size: 150px 150px;
    animation: float 30s linear infinite;
}

@keyframes float {
    from { transform: translateY(0); }
    to   { transform: translateY(-300px); }
}

/* 🌫️ Névoa */
.fog::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,.04), transparent 40%),
      radial-gradient(circle at 70% 70%, rgba(255,255,255,.03), transparent 50%);
    animation: fogMove 40s ease-in-out infinite alternate;
}

@keyframes fogMove {
    from { transform: translateX(-5%); }
    to   { transform: translateX(5%); }
}

/* Conteúdo acima */
.wrapper,
.main,
.container {
    position: relative;
    z-index: 10;
}
.vip-platina{
color:#50C878;
font-weight:bold;
animation: vipPlatinaGlow 1.6s infinite alternate;
}

@keyframes vipPlatinaGlow{
0%{
text-shadow:
0 0 3px #2ecc71,
0 0 6px #2ecc71;
}

100%{
text-shadow:
0 0 8px #50C878,
0 0 16px #00ff9c,
0 0 24px #00ff9c;
}
}
.evento-gold{
color:#FFD700;
font-weight:bold;
animation:eventGlow 1.5s infinite alternate;
}

@keyframes eventGlow{
0%{
text-shadow:
0 0 4px #FFD700,
0 0 8px #FFC000;
}

100%{
text-shadow:
0 0 10px #FFD700,
0 0 20px #FFA500,
0 0 30px #FFA500;
}
}
.secao-header{
color:#ff3b3b;
font-weight:bold;
font-size:16px;
text-align:center;
margin:10px 0;
animation: headerPulse 1.6s infinite alternate;
}

@keyframes headerPulse{
0%{
text-shadow:
0 0 4px #ff0000,
0 0 8px #ff0000;
}

100%{
text-shadow:
0 0 10px #ff0000,
0 0 20px #ff4040,
0 0 30px #ff4040;
}
}