    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #fff;
            background-color: #0a0a0a;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Cores do tema */
        :root {
            --neon-red: #ff003c;
            --neon-red-dark: #cc002f;
            --bright-yellow: #ffde00;
            --bright-yellow-dark: #e6c800;
            --dark-bg: #0a0a0a;
            --gray-bg: #1a1a1a;
            --light-gray: #f5f5f5;
            --text-color: #ffffff;
            --text-secondary: #cccccc;
        }
        
        /* Header */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(255, 0, 60, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--bright-yellow);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            color: var(--neon-red);
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        
        .back-btn {
            color: var(--bright-yellow);
            font-size: 1rem;
            display: flex;
            align-items: center;
        }
        
        .back-btn i {
            margin-right: 8px;
        }
        
        .back-btn:hover {
            color: var(--neon-red);
        }
        
        /* Conteúdo principal */
        .terms-content {
            padding: 140px 0 80px;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .page-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            text-align: center;
        }
        
        .last-updated {
            text-align: center;
            color: var(--text-secondary);
            margin-bottom: 40px;
            font-style: italic;
            border-bottom: 1px solid rgba(255, 0, 60, 0.3);
            padding-bottom: 20px;
        }
        
        .content-section {
            margin-bottom: 40px;
            padding: 25px;
            background-color: rgba(30, 30, 30, 0.5);
            border-radius: 10px;
            border-left: 4px solid var(--bright-yellow);
        }
        
        .content-section h2 {
            color: var(--bright-yellow);
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .content-section h3 {
            color: var(--neon-red);
            margin: 20px 0 10px;
            font-size: 1.3rem;
        }
        
        .content-section p {
            margin-bottom: 15px;
            color: var(--text-secondary);
        }
        
        .content-section ul, .content-section ol {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .content-section li {
            margin-bottom: 8px;
            color: var(--text-secondary);
        }
        
        .content-section a {
            color: var(--bright-yellow);
            text-decoration: underline;
        }
        
        .content-section a:hover {
            color: var(--neon-red);
        }
        
        .warning-box {
            background-color: rgba(255, 0, 60, 0.1);
            border-left: 4px solid var(--neon-red);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        
        /* Footer */
        footer {
            background-color: #080808;
            padding: 40px 0 20px;
            border-top: 1px solid rgba(255, 0, 60, 0.2);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--bright-yellow);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--text-secondary);
        }
        
        .footer-column ul li a:hover {
            color: var(--bright-yellow);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        
        /* Responsividade */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.2rem;
            }
            
            .content-section {
                padding: 20px;
            }
            
            .terms-content {
                padding: 120px 0 60px;
            }
        }
        
        @media (max-width: 480px) {
            .page-title {
                font-size: 1.8rem;
            }
            
            .content-section h2 {
                font-size: 1.5rem;
            }
        }
           * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #fff;
            background-color: #0a0a0a;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Cores do tema */
        :root {
            --neon-red: #ff003c;
            --neon-red-dark: #cc002f;
            --bright-yellow: #ffde00;
            --bright-yellow-dark: #e6c800;
            --dark-bg: #0a0a0a;
            --gray-bg: #1a1a1a;
            --light-gray: #f5f5f5;
            --text-color: #ffffff;
            --text-secondary: #cccccc;
        }
        
        /* Header */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(255, 0, 60, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--bright-yellow);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            color: var(--neon-red);
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        
        .back-btn {
            color: var(--bright-yellow);
            font-size: 1rem;
            display: flex;
            align-items: center;
        }
        
        .back-btn i {
            margin-right: 8px;
        }
        
        .back-btn:hover {
            color: var(--neon-red);
        }
        
        /* Conteúdo principal */
        .privacy-content {
            padding: 140px 0 80px;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .page-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            text-align: center;
        }
        
        .last-updated {
            text-align: center;
            color: var(--text-secondary);
            margin-bottom: 40px;
            font-style: italic;
            border-bottom: 1px solid rgba(255, 0, 60, 0.3);
            padding-bottom: 20px;
        }
        
        .content-section {
            margin-bottom: 40px;
            padding: 25px;
            background-color: rgba(30, 30, 30, 0.5);
            border-radius: 10px;
            border-left: 4px solid var(--neon-red);
        }
        
        .content-section h2 {
            color: var(--bright-yellow);
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .content-section h3 {
            color: var(--neon-red);
            margin: 20px 0 10px;
            font-size: 1.3rem;
        }
        
        .content-section p {
            margin-bottom: 15px;
            color: var(--text-secondary);
        }
        
        .content-section ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .content-section li {
            margin-bottom: 8px;
            color: var(--text-secondary);
        }
        
        .content-section a {
            color: var(--bright-yellow);
            text-decoration: underline;
        }
        
        .content-section a:hover {
            color: var(--neon-red);
        }
        
        .highlight-box {
            background-color: rgba(255, 0, 60, 0.1);
            border-left: 4px solid var(--bright-yellow);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        
        /* Footer */
        footer {
            background-color: #080808;
            padding: 40px 0 20px;
            border-top: 1px solid rgba(255, 0, 60, 0.2);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--bright-yellow);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--text-secondary);
        }
        
        .footer-column ul li a:hover {
            color: var(--bright-yellow);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        
        /* Responsividade */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.2rem;
            }
            
            .content-section {
                padding: 20px;
            }
            
            .privacy-content {
                padding: 120px 0 60px;
            }
        }
        
        @media (max-width: 480px) {
            .page-title {
                font-size: 1.8rem;
            }
            
            .content-section h2 {
                font-size: 1.5rem;
            }
        }
              * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #fff;
            background-color: #0a0a0a;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Cores do tema */
        :root {
            --neon-red: #ff003c;
            --neon-red-dark: #cc002f;
            --bright-yellow: #ffde00;
            --bright-yellow-dark: #e6c800;
            --dark-bg: #0a0a0a;
            --gray-bg: #1a1a1a;
            --light-gray: #f5f5f5;
            --text-color: #ffffff;
            --text-secondary: #cccccc;
        }
        
        /* Estilização de elementos comuns */
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            border: none;
            font-size: 16px;
        }
        
        .btn-primary {
            background-color: var(--bright-yellow);
            color: #000;
            box-shadow: 0 0 15px rgba(255, 222, 0, 0.5);
        }
        
        .btn-primary:hover {
            background-color: var(--bright-yellow-dark);
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(255, 222, 0, 0.7);
        }
        
        .btn-secondary {
            background-color: var(--neon-red);
            color: white;
            box-shadow: 0 0 15px rgba(255, 0, 60, 0.5);
        }
        
        .btn-secondary:hover {
            background-color: var(--neon-red-dark);
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(255, 0, 60, 0.7);
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 4px;
            bottom: -10px;
            left: 0;
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            border-radius: 2px;
        }
        
        /* Header */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(255, 0, 60, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--bright-yellow);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            color: var(--neon-red);
            margin-right: 10px;
            font-size: 2rem;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            font-weight: 600;
            font-size: 1rem;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--bright-yellow);
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--neon-red);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--bright-yellow);
        }
           * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #fff;
            background-color: #0a0a0a;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Cores do tema */
        :root {
            --neon-red: #ff003c;
            --neon-red-dark: #cc002f;
            --bright-yellow: #ffde00;
            --bright-yellow-dark: #e6c800;
            --dark-bg: #0a0a0a;
            --gray-bg: #1a1a1a;
            --light-gray: #f5f5f5;
            --text-color: #ffffff;
            --text-secondary: #cccccc;
        }
        
        /* Header */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(255, 0, 60, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--bright-yellow);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            color: var(--neon-red);
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        
        .back-btn {
            color: var(--bright-yellow);
            font-size: 1rem;
            display: flex;
            align-items: center;
        }
        
        .back-btn i {
            margin-right: 8px;
        }
        
        .back-btn:hover {
            color: var(--neon-red);
        }
        
        /* Banner de cookies (se necessário) */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(20, 20, 20, 0.95);
            padding: 20px;
            z-index: 9999;
            border-top: 2px solid var(--neon-red);
            display: none;
        }
        
        .cookie-banner-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .cookie-banner-text {
            flex: 1;
            min-width: 300px;
            margin-right: 20px;
        }
        
        .cookie-banner-text p {
            margin: 0;
            color: var(--text-secondary);
        }
        
        .cookie-banner-actions {
            display: flex;
            gap: 15px;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background-color: var(--bright-yellow);
            color: #000;
        }
        
        .cookie-settings {
            background-color: transparent;
            color: var(--bright-yellow);
            border: 1px solid var(--bright-yellow);
        }
        
        /* Conteúdo principal */
        .cookies-content {
            padding: 140px 0 80px;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .page-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            text-align: center;
        }
        
        .last-updated {
            text-align: center;
            color: var(--text-secondary);
            margin-bottom: 40px;
            font-style: italic;
            border-bottom: 1px solid rgba(255, 0, 60, 0.3);
            padding-bottom: 20px;
        }
        
        .content-section {
            margin-bottom: 40px;
            padding: 25px;
            background-color: rgba(30, 30, 30, 0.5);
            border-radius: 10px;
            border-left: 4px solid var(--neon-red);
        }
        
        .content-section h2 {
            color: var(--bright-yellow);
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .content-section h3 {
            color: var(--neon-red);
            margin: 20px 0 10px;
            font-size: 1.3rem;
        }
        
        .content-section p {
            margin-bottom: 15px;
            color: var(--text-secondary);
        }
        
        .content-section ul, .content-section ol {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .content-section li {
            margin-bottom: 8px;
            color: var(--text-secondary);
        }
        
        .content-section a {
            color: var(--bright-yellow);
            text-decoration: underline;
        }
        
        .content-section a:hover {
            color: var(--neon-red);
        }
        
        .table-container {
            overflow-x: auto;
            margin: 20px 0;
        }
        
        .cookies-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .cookies-table th {
            background-color: rgba(255, 0, 60, 0.2);
            color: var(--bright-yellow);
            padding: 15px;
            text-align: left;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .cookies-table td {
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
        }
        
        .cookies-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.05);
        }
        
        .cookies-table tr:hover {
            background-color: rgba(255, 0, 60, 0.1);
        }
        
        /* Controles de cookies */
        .cookie-controls {
            background-color: rgba(20, 20, 20, 0.8);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px solid rgba(255, 222, 0, 0.3);
        }
        
        .cookie-controls h3 {
            margin-top: 0;
        }
        
        .cookie-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .slider {
            background-color: var(--neon-red);
        }
        
        input:checked + .slider:before {
            transform: translateX(30px);
        }
        
        /* Footer */
        footer {
            background-color: #080808;
            padding: 40px 0 20px;
            border-top: 1px solid rgba(255, 0, 60, 0.2);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--bright-yellow);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--text-secondary);
        }
        
        .footer-column ul li a:hover {
            color: var(--bright-yellow);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        
        /* Responsividade */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.2rem;
            }
            
            .content-section {
                padding: 20px;
            }
            
            .cookies-content {
                padding: 120px 0 60px;
            }
            
            .cookie-banner-content {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .cookie-banner-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .cookie-banner-actions {
                align-self: flex-end;
            }
        }
        
        @media (max-width: 480px) {
            .page-title {
                font-size: 1.8rem;
            }
            
            .content-section h2 {
                font-size: 1.5rem;
            }
            
            .cookie-banner-actions {
                flex-direction: column;
                width: 100%;
            }
            
            .cookie-btn {
                width: 100%;
                text-align: center;
            }
        }
        /* Banner */
        .banner {
            height: 100vh;
            background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.9)), url('ban.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            padding-top: 80px;
        }
        
        .banner-content {
            max-width: 800px;
            padding: 0 20px;
            z-index: 2;
        }
        
        .banner h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            text-shadow: 0 0 10px rgba(255, 222, 0, 0.5);
        }
        
        .banner p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: var(--text-secondary);
        }
        
        /* Lista de cassinos */
        .casinos-section {
            padding: 100px 0;
            background-color: var(--dark-bg);
        }
        
        .casinos-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
            max-width: 1000px;
            margin: 60px auto 0;
        }
        
        .casino-card {
            background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.95));
            border-radius: 15px;
            overflow: hidden;
            padding: 30px;
            display: flex;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 0, 60, 0.1);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .casino-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
            border-color: rgba(255, 0, 60, 0.3);
        }
        
        .casino-logo {
            flex: 0 0 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .casino-logo img {
            max-width: 100%;
            max-height: 80px;
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
        }
        
        .casino-content {
            flex: 1;
            padding: 0 30px;
        }
        
        .casino-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--bright-yellow);
        }
        
        .features {
            margin-bottom: 20px;
        }
        
        .feature {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: var(--text-secondary);
        }
        
        .feature i {
            color: var(--neon-red);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .casino-button {
            flex: 0 0 200px;
            text-align: center;
        }
        
        /* Sobre nós */
        .about-section {
            padding: 100px 0;
            background-color: var(--gray-bg);
        }
        
        .about-content {
            max-width: 800px;
            margin: 50px auto 0;
            text-align: center;
        }
        
        .about-content p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--text-secondary);
        }
        
        /* FAQ */
        .faq-section {
            padding: 100px 0;
            background-color: var(--dark-bg);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .faq-item {
            margin-bottom: 15px;
            background-color: rgba(30, 30, 30, 0.7);
            border-radius: 8px;
            overflow: hidden;
            border-left: 4px solid var(--neon-red);
        }
        
        .faq-question {
            padding: 20px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question:hover {
            background-color: rgba(255, 0, 60, 0.1);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        .faq-toggle {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        /* Jogo Responsável */
        .responsible-gambling {
            padding: 80px 0;
            background-color: var(--gray-bg);
            text-align: center;
        }
        
        .responsible-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .responsible-content h2 {
            margin-bottom: 30px;
        }
        
        .responsible-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: var(--text-secondary);
        }
        
        .age-restriction {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background-color: var(--neon-red);
            border-radius: 50%;
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 0, 60, 0.5);
        }
        
        .responsible-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        
        .responsible-links a {
            display: inline-flex;
            align-items: center;
            padding: 12px 20px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .responsible-links a:hover {
            background-color: rgba(255, 0, 60, 0.2);
            transform: translateY(-5px);
        }
        
        .responsible-links i {
            margin-right: 10px;
            color: var(--bright-yellow);
        }
        
        /* Footer */
        footer {
            background-color: #080808;
            padding: 70px 0 20px;
            border-top: 1px solid rgba(255, 0, 60, 0.2);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--bright-yellow);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a:hover {
            color: var(--bright-yellow);
            padding-left: 5px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        
        /* Responsividade */
        @media (max-width: 992px) {
            .casino-card {
                flex-direction: column;
                text-align: center;
            }
            
            .casino-logo {
                flex: 0 0 auto;
                margin-bottom: 20px;
            }
            
            .casino-content {
                padding: 0;
                margin-bottom: 20px;
            }
            
            .casino-button {
                flex: 0 0 auto;
            }
            
            .banner h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 10, 0.98);
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .banner h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .footer-column {
                flex: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .banner h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 12px 24px;
                font-size: 14px;
            }
        }