html {
            scroll-behavior: smooth;
            background-color: #050505;
        }
        
        body {
            background-color: #050505;
            color: #eeeeee;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        /* TIPOGRAFIA PERSONALIZADA */
        h1, h2, h3, h4, .title-gothic {
            font-family: 'Cinzel', serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #ffffff !important;
        }

        .gothic-accent {
            font-family: 'UnifrakturMaguntia', cursive;
            color: #990000 !important;
            text-transform: none;
            letter-spacing: 0;
        }

        /* CUSTOM NAVBAR */
        .navbar {
            background-color: #0a0a0a !important;
            border-bottom: 3px solid #1a1a1a;
            padding: 10px 0;
            transition: all 0.3s ease;
        }

        .navbar-item {
            color: #bbb !important;
            font-family: 'Cinzel', serif;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 1px;
            transition: color 0.2s ease;
        }

        .navbar-item:hover, .navbar-item.is-active {
            color: #990000 !important;
            background-color: transparent !important;
        }

        .navbar-brand .logo {
            font-size: 24px;
            font-weight: 900;
            color: #ffffff !important;
            border: 2px solid #990000;
            padding: 5px 15px;
            margin-right: 10px;
            background-color: #000000;
        }

        /* HERO SECTION (ESTILO SLIDE 1) */
        .hero-gothic {
            position: relative;
            background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)), 
                        url('http://googleusercontent.com/image_collection/image_retrieval/14412060556288299943_1') no-repeat center center;
            background-size: cover;
            min-height: 90vh;
            display: flex;
            align-items: center;
            border-bottom: 4px solid #1a1a1a;
        }

        .hero-gothic::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(153,0,0,0.15) 0%, rgba(0,0,0,0.4) 100%);
            pointer-events: none;
        }

        .hero-title-giant {
            font-size: clamp(40px, 8vw, 95px) !important;
            font-weight: 900;
            line-height: 0.9;
            margin-bottom: 15px !important;
            text-shadow: 0px 5px 15px rgba(0,0,0,0.9);
        }

        /* BORDAS BRUTALISTAS E MARCADORES (IGUAL AO SLIDE) */
        .section-title {
            font-size: 38px !important;
            font-weight: 700;
            border-left: 8px solid #990000;
            padding-left: 20px;
            margin-bottom: 50px !important;
            display: inline-block;
        }

        /* CUSTOM BUTTONS */
        .btn-brutal {
            border-radius: 0 !important;
            font-family: 'Cinzel', serif;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }

        .btn-brutal.is-danger {
            background-color: #990000 !important;
            border: 2px solid #990000 !important;
            color: #fff !important;
        }

        .btn-brutal.is-danger:hover {
            background-color: #ff1a1a !important;
            border-color: #ff1a1a !important;
            box-shadow: 0 0 20px rgba(255, 26, 26, 0.5);
        }

        .btn-brutal.is-outlined {
            background-color: transparent !important;
            border: 2px solid #ffffff !important;
            color: #ffffff !important;
        }

        .btn-brutal.is-outlined:hover {
            background-color: #ffffff !important;
            color: #000000 !important;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        }

        /* SEÇÃO SOBRE (O MITO DE BRIAREU - SLIDE 3) */
        .sobre-image-container {
            border: 4px solid #990000;
            border-radius: 50%;
            width: 380px;
            height: 380px;
            overflow: hidden;
            margin: 0 auto;
            box-shadow: 0 0 30px rgba(153, 0, 0, 0.4);
            filter: grayscale(0.2) contrast(1.1);
        }

        .sobre-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* PILARES (TILED CONTENT - SLIDE 5) */
        .tile-brutal {
            background-color: #0d0d0d !important;
            border: 1px solid #222222 !important;
            border-radius: 0 !important;
            padding: 40px !important;
            transition: all 0.3s ease;
        }

        .tile-brutal:hover {
            border-color: #990000 !important;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(153, 0, 0, 0.15);
        }

        .tile-brutal .icon-gothic {
            font-size: 45px;
            color: #990000;
            margin-bottom: 25px;
        }

        /* JOGOS (ESTILO CATÁLOGO - SLIDE 7) */
        .game-card {
            background-color: #0d0d0d;
            border: 1px solid #1a1a1a;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .game-card:hover {
            border-color: #990000;
            box-shadow: 0 0 25px rgba(153, 0, 0, 0.25);
        }

        .game-card .image-container {
            height: 250px;
            overflow: hidden;
            border-bottom: 2px solid #1a1a1a;
            position: relative;
        }

        .game-card .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease, filter 0.5s ease;
            filter: grayscale(0.4) contrast(1.2);
        }

        .game-card:hover .image-container img {
            transform: scale(1.05);
            filter: grayscale(0) contrast(1.1);
        }

        .game-card .game-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: #990000;
            color: #ffffff;
            font-family: 'Cinzel', serif;
            font-size: 11px;
            font-weight: 900;
            padding: 4px 10px;
            letter-spacing: 1px;
        }

        .game-card-content {
            padding: 25px;
        }

        /* MÉTRICAS (SLIDE 8) */
        .metric-gothic {
            background-color: #070707;
            border: 2px solid #111111;
            padding: 50px 30px;
            text-align: center;
        }

        .metric-number {
            font-size: 120px;
            font-weight: 900;
            color: #ffffff;
            line-height: 1;
            font-family: 'Cinzel', serif;
            text-shadow: 6px 6px 0px #990000;
            margin-bottom: 10px;
        }

        /* CONTATO COMPACTO COM ESTILO BLEED (SLIDE 11) */
        .contact-section-container {
            background-color: #070707;
            border: 2px solid #1a1a1a;
        }

        .form-gothic input, .form-gothic textarea {
            background-color: #0a0a0a !important;
            border: 1px solid #222222 !important;
            color: #ffffff !important;
            border-radius: 0 !important;
            transition: all 0.3s ease;
        }

        .form-gothic input:focus, .form-gothic textarea:focus {
            border-color: #990000 !important;
            box-shadow: 0 0 10px rgba(153,0,0,0.2) !important;
        }

        .form-gothic label {
            color: #bbb !important;
            font-family: 'Cinzel', serif;
            font-size: 13px;
            letter-spacing: 1px;
        }

        /* FOOTER BRUTALISTA */
        .footer-monolith {
            background-color: #020202 !important;
            border-top: 4px solid #1a1a1a;
            padding: 60px 0;
        }

        .footer-monolith::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 150px;
            height: 8px;
            background: #990000;
        }