        /* Base Reset */
        * { margin:0; padding:0; box-sizing:border-box }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Roboto Condensed', sans-serif; /* Corpo em Roboto Condensed */
            background: linear-gradient(to bottom, #000000, #030303);
            color: #f0f0f0; 
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 75px; /* Compensação para o header fixo */
        }
        a { text-decoration: none; color: inherit; }

        /* Botão Principal Dourado Degradê e Descolado */
        .btn-cta {
            background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
            color: #000;
            padding: 18px 45px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 19px;
            box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
            transition: all 0.3s ease;
            display: inline-block;
            text-transform: uppercase;
            border: none;
            position: relative;
            overflow: hidden;
            transform: skewX(-5deg);
            letter-spacing: 1px;
        }
        .btn-cta:hover {
            background: linear-gradient(135deg, #fff04a 0%, #D4AF37 100%);
            transform: translateY(-3px) skewX(-5deg) scale(1.02);
            box-shadow: 0 5px 35px rgba(255, 240, 0, 0.8);
        }
        .btn-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.2);
            transform: skewX(-20deg);
            transition: all 0.7s;
        }
        .btn-cta:hover::before {
            left: 100%;
        }

        /* Layout */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section { padding: 90px 20px; text-align: center; }
        .section h2 {
            font-family: 'Bebas Neue', sans-serif; /* FONTE CORRIGIDA */
            font-size: 48px;
            margin-bottom: 50px;
            font-weight: normal;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #FFD700; /* Corrigido: Dourado para h2 */
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.7); /* Sombra Dourada */
        }
        .black-section { background: #080808; }

        /* Header Fixo */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(5px);
            padding: 15px 0;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
            z-index: 999;
        }
        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .main-header .logo {
            font-family: 'Bebas Neue', sans-serif; /* FONTE CORRIGIDA */
            font-size: 28px;
            font-weight: normal;
            color: #FFD700;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
            letter-spacing: 1.5px;
            transform: skewX(-5deg);
        }
        .main-header .nav {
            display: flex;
            align-items: center;
            gap: 25px;
        }
        .main-header .nav a {
            font-size: 16px;
            color: #ccc;
            font-weight: 400;
            transition: 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .main-header .nav a:hover {
            color: #FFD700;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
        }

        /* Elementos especiais no Header */
        @keyframes pulseLoja {
            0% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.7); transform: scale(1) skewX(-5deg); }
            50% { box-shadow: 0 0 30px rgba(255, 240, 0, 0.9); transform: scale(1.07) skewX(-5deg); }
            100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.7); transform: scale(1) skewX(-5deg); }
        }
        .btn-loja {
            background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
            color: #000;
            padding: 8px 20px;
            border-radius: 6px;
            font-weight: 700;
            text-shadow: none;
            animation: pulseLoja 3.7s infinite ease-in-out;
            margin: 0;
            transform: skewX(-5deg);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
        }
        .cupom-tag {
            background: #151515;
            border: 2px solid #FFD700;
            color: #FFD700;
            padding: 6px 14px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 14px;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
            text-transform: none;
            transform: skewX(-3deg);
        }
        .btn-suporte {
            background: #00e676;
            color: #000;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 700;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
            transform: skewX(-5deg);
        }
        .btn-discord {
            background: #7289da;
            color: #fff;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 700;
            box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
            transform: skewX(-5deg);
        }

        /* HERO Section */
        .hero {
            background: url('/layout/images/banners/dark_city_street.jpg') center/cover no-repeat; /* Corrigido para a imagem certa */
            padding: 180px 20px 120px;
            text-align: center;
            position: relative;
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }
        .hero-logo {
            max-width: 280px;
            margin-bottom: 30px;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
        }
        .hero-logo:hover { transform: rotate(-5deg) scale(1.05); }
        .hero h1 {
            font-family: 'Bebas Neue', sans-serif; /* FONTE CORRIGIDA */
            font-size: 60px;
            color: #FFD700;
            margin-bottom: 20px;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.9);
            font-weight: normal;
            letter-spacing: 3px;
        }
        .hero p {
            font-family: 'Roboto Condensed', sans-serif; /* FONTE CORRIGIDA */
            font-size: 24px;
            color: #ddd;
            margin-bottom: 50px;
            font-weight: 300;
            line-height: 1.5;
            letter-spacing: 0.5px;
        }

        /* Seções de vendas */
        .revive-section {
            padding: 100px 20px;
            color: #fff;
            position: relative;
            background: #000;
            border-bottom: 2px solid rgba(255, 215, 0, 0.2);
        }
        .revive-section h2 {
            color: #FFD700;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
        }
        .revive-section p {
            font-size: 19px;
            color: #ccc;
            margin-bottom: 25px;
        }
        .revive-section strong {
            font-weight: 700;
            color: #FFD700;
        }
        .revive-section ul {
            list-style: none;
            padding: 0;
            margin-top: 30px;
            text-align: left;
        }
        .revive-section li {
            font-size: 17px;
            margin: 12px 0;
            color: #fff;
            display: flex;
            align-items: center;
        }
        .revive-section li i {
            margin-right: 15px;
            font-size: 20px;
            color: #FFD700;
        }
        .revive-section .media-block {
            position: relative;
            border: 5px solid rgba(255, 215, 0, 0.6);
            border-radius: 12px;
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            transform: skewX(-2deg);
        }
        .revive-section .media-block:hover {
            transform: scale(1.01) skewX(-2deg);
            box-shadow: 0 0 45px rgba(255, 215, 0, 0.5);
        }
        .revive-section img { width: 100%; display: block; }

        #fast-revive { background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%); }
        #auto-combo { background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%); }
        #duck-helper { background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%); }

        /* Seção de Tutoriais */
        #link-tutoriais {
            background: linear-gradient(180deg, #100010 0%, #200020 100%);
            border-top: 5px solid #ff33cc;
        }
        #link-tutoriais h2 {
            color: #ff33cc;
            text-shadow: 0 0 15px #ff33ccaa;
            font-family: 'Bebas Neue', sans-serif; /* FONTE CORRIGIDA */
            font-size: 48px;
            letter-spacing: 2px;
        }
        #link-tutoriais .btn-cta {
            background: linear-gradient(135deg, #ff33cc 0%, #cc0099 100%);
            box-shadow: 0 0 25px rgba(255, 51, 204, 0.7);
        }
        #link-tutoriais .btn-cta:hover {
            background: linear-gradient(135deg, #ff66ee 0%, #ee00bb 100%);
            box-shadow: 0 5px 35px rgba(255, 51, 204, 0.9);
        }

        /* FAQ */
        .faq-item {
            max-width: 800px;
            margin: 20px auto;
            border-bottom: 1px solid #444;
            padding-bottom: 15px;
            text-align: left;
            cursor: pointer;
            transition: all 0.3s ease;
            transform: skewX(-1deg);
        }
        .faq-item:hover {
            background: #101010;
            padding: 15px;
            border-radius: 8px;
            margin: 10px auto;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
        }
        .faq-item h4 {
            font-family: 'Roboto Condensed', sans-serif; /* FONTE CORRIGIDA */
            color: #FFD700;
            font-size: 22px;
            font-weight: 700;
            position: relative;
            padding-right: 30px;
            letter-spacing: 0.5px;
        }
        .faq-item p {
            display: none;
            color: #ccc;
            margin-top: 10px;
            padding: 0 15px;
            font-size: 16px;
            line-height: 1.7;
        }
        .faq-item.open p { display: block; }
        .faq-item h4::after {
            content: '+';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            color: #FFD700;
            font-size: 28px;
            font-weight: 700;
        }
        .faq-item.open h4::after { content: '-'; }

        /* Footer */
        footer {
            padding: 20px;
            text-align: center;
            font-size: 14px;
            color: #555;
            background: #000;
            border-top: 1px solid #111;
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .hero h1 { font-size: 50px; }
            .hero p { font-size: 20px; }
            .section h2 { font-size: 40px; }
            .revive-section h2 { font-size: 36px; }
            .revive-section p { font-size: 18px; }
            .revive-section li { font-size: 16px; }
            .main-header .nav { gap: 15px; }
            .main-header .logo { font-size: 24px; }
            .btn-cta { padding: 15px 35px; font-size: 17px; }
        }

        @media (max-width: 768px) {
            .main-header .container { flex-direction: column; align-items: flex-start; }
            .main-header .nav { flex-direction: column; align-items: flex-start; margin-top: 15px; width: 100%; gap: 10px; }
            .main-header .nav a { margin: 0; transform: none; }
            .btn-loja, .btn-suporte, .btn-discord, .cupom-tag {
                margin-left: 0;
                width: 100%;
                text-align: center;
                transform: none;
                padding: 10px 15px;
                font-size: 15px;
            }
            .cupom-tag { margin-top: 10px; }

            .hero { padding: 120px 20px 80px; }
            .hero h1 { font-size: 40px; letter-spacing: 2px; }
            .hero p { font-size: 18px; }
            .hero-logo { max-width: 200px; }

            .section h2 { font-size: 32px; letter-spacing: 1.5px; }
            .revive-section > div { flex-direction: column; }
            .revive-section h2 { text-align: center; font-size: 30px; }
            .revive-section p, .revive-section ul { text-align: center; }
            .revive-section li { justify-content: center; }
            .revive-section .btn-cta {
                display: block;
                margin: 30px auto 0;
                transform: none;
            }
            .revive-section .media-block { transform: none; }
            .faq-item { transform: none; }
        }

        @media (max-width: 480px) {
            .btn-cta { padding: 15px 30px; font-size: 16px; }
            .hero h1 { font-size: 32px; }
            .hero p { font-size: 16px; }
            .section h2 { font-size: 28px; }
            .faq-item h4 { font-size: 18px; }
            .faq-item p { font-size: 14px; }
        }