/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: linear-gradient(135deg, #3E2723 0%, #5D4037 25%, #8D6E63 50%, #D4A017 75%, #FFD700 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bungee', cursive;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: 1rem;
}

/* Botões */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-family: 'Bungee', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 50px;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    color: #3E2723;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.btn-primary .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-primary:hover .btn-glow {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    display: block;
    margin: 0 auto;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(62, 39, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin: 0;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-desktop a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-desktop a:hover {
    color: #FFD700;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(62, 39, 35, 0.98);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
    display: block;
}

.mobile-menu-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 2rem;
    cursor: pointer;
    margin-bottom: 2rem;
}

.mobile-menu ul {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: #FFD700;
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 20px 40px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.8) 0%, rgba(62, 39, 35, 0.6) 50%, rgba(212, 160, 23, 0.4) 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.9);
    color: #3E2723;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.hero-title {
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.hero-disclaimer {
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #FFD700;
}

.hero-disclaimer p {
    font-size: 0.9rem;
    margin: 0;
    color: #FFFFFF;
}

.hero-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.age-icon {
    background: #FFD700;
    color: #3E2723;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.banner-icon {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.banner-icon:hover {
    opacity: 1;
}

/* Seções Gerais */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
}

/* Características */
.caracteristicas {
    background: linear-gradient(135deg, #2E7D32 0%, #388E3C 100%);
}

.caracteristicas-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.caracteristicas-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.caracteristicas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.8) 0%, rgba(56, 142, 60, 0.8) 100%);
}

.caracteristicas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.caracteristica-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
}

.caracteristica-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.caracteristica-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFA000);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.icon-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.caracteristica-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

/* Prévia do Jogo */
.previa-jogo {
    background: linear-gradient(135deg, #5D4037 0%, #8D6E63 100%);
}

.previa-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.previa-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.previa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(93, 64, 55, 0.8) 0%, rgba(141, 110, 99, 0.8) 100%);
}

/* Como Jogar */
.como-jogar {
    background: linear-gradient(135deg, #3E2723 0%, #5D4037 100%);
}

.como-jogar-content {
    max-width: 800px;
    margin: 0 auto;
}

.instrucoes {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.instrucoes h3 {
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.instrucoes h4 {
    color: #FFD700;
    margin: 1.5rem 0 1rem;
}

.instrucoes ol, .instrucoes ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.instrucoes li {
    margin-bottom: 0.5rem;
}

/* Nova Seção: Tesouros da Mina */
.tesouros-mina {
    position: relative;
    padding: 5rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.tesouros-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.tesouros-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tesouros-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.7) 0%, rgba(46, 125, 50, 0.6) 100%);
}

.tesouros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tesouro-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.tesouro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.tesouro-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.tesouro-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

/* Nova Seção: Aventuras da Mina */
.aventuras-mina {
    position: relative;
    padding: 5rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.aventuras-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.aventuras-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aventuras-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.6) 0%, rgba(212, 160, 23, 0.5) 100%);
}

.aventuras-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.aventura-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.aventura-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.aventura-number {
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    color: #3E2723;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bungee', cursive;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.aventura-text h3 {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

/* Nova Seção: Comunidade de Mineiros */
.comunidade-mineiros {
    position: relative;
    padding: 5rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.comunidade-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.comunidade-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comunidade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.5) 0%, rgba(62, 39, 35, 0.7) 100%);
}

.comunidade-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.stat-number {
    font-family: 'Bungee', cursive;
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 600;
}

.comunidade-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.comunidade-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

/* Responsividade para as novas seções */
@media (max-width: 768px) {
    .tesouros-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .aventura-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .aventura-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .comunidade-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Contacto */
.contacto {
    background: linear-gradient(135deg, #2E7D32 0%, #388E3C 100%);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #FFFFFF;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-family: 'Nunito', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-label a {
    color: #FFD700;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.contact-info a {
    color: #FFD700;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #3E2723 0%, #2E1B1B 100%);
    padding: 3rem 0 1rem;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-logo h3 {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.footer-description {
    color: #FFFFFF;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.footer-banners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright, .developer {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.developer a {
    color: #FFD700;
    text-decoration: none;
}

.developer a:hover {
    text-decoration: underline;
}

/* Modal do Slot */
.slot-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.slot-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #3E2723 0%, #5D4037 100%);
    padding: 2rem;
    border-radius: 12px;
    max-width: 95vw;
    max-height: 95vh;
    overflow-y: auto;
    border: 2px solid #FFD700;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
}

.slot-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.slot-modal-close:hover {
    color: #FFA000;
    transform: scale(1.1);
}

.slot-header {
    text-align: center;
    margin-bottom: 2rem;
}

.slot-header h3 {
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.demo-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    color: #3E2723;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.slot-display {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.slot-reels {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.reel {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

.reel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 215, 0, 0.1) 50%, transparent 100%);
    z-index: -1;
}

.symbol {
    font-size: 2.5rem;
    text-align: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.symbol:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.symbol.winning {
    animation: symbolWin 0.6s ease-in-out;
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    color: #3E2723;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.symbol.spinning {
    animation: symbolSpin 0.1s linear infinite;
}

.paylines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.payline {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA000, #FFD700);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payline.active {
    opacity: 1;
    animation: paylineGlow 1s ease-in-out infinite alternate;
}

.payline-1 {
    top: 33%;
    left: 0;
    width: 100%;
}

.payline-2 {
    top: 50%;
    left: 0;
    width: 100%;
}

.payline-3 {
    top: 67%;
    left: 0;
    width: 100%;
}

.slot-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.game-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.credits-display, .win-display {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 160, 0, 0.2) 100%);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: #FFD700;
    font-weight: bold;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    min-width: 120px;
}

.credits-label, .win-label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    opacity: 0.8;
}

.credits-value, .win-value {
    display: block;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.control-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.spin-btn {
    font-size: 1.5rem;
    padding: 1rem 3rem;
    min-height: 60px;
}

.auto-spin-btn {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    min-height: 60px;
    transition: all 0.3s ease;
}

.auto-spin-btn.active {
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    color: #3E2723;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    transform: scale(1.05);
}

.game-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.sound-toggle, .speed-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sound-label, .speed-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #FFFFFF;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sound-label:hover, .speed-label:hover {
    background: rgba(255, 215, 0, 0.2);
}

.sound-icon, .speed-icon {
    font-size: 1.5rem;
}

.win-notification {
    text-align: center;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 12px;
    font-weight: bold;
    display: none;
    font-size: 1.2rem;
}

.win-notification.show {
    display: block;
    animation: winPulse 0.5s ease-in-out;
}

.win-notification.win {
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    color: #3E2723;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    border: 2px solid #FFA000;
}

.win-notification.no-win {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slot-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.symbols-info h4 {
    color: #FFD700;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.symbol-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.symbol-info:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.symbol-icon {
    font-size: 2rem;
}

.symbol-name {
    font-size: 0.9rem;
    color: #FFFFFF;
    font-weight: 600;
    text-align: center;
}

.symbol-payout {
    font-size: 0.8rem;
    color: #FFD700;
    font-weight: bold;
}

/* Responsividade do slot */
@media (max-width: 768px) {
    .slot-modal-content {
        padding: 1rem;
        max-width: 98vw;
        max-height: 98vh;
    }
    
    .slot-reels {
        gap: 0.5rem;
    }
    
    .reel {
        padding: 0.5rem;
        min-height: 200px;
    }
    
    .symbol {
        font-size: 2rem;
        padding: 0.25rem;
    }
    
    .game-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .control-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .symbols-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
    }
    .logo h1 {
        font-size: 1rem;
    }
}

.slot-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.credits-display {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 25px;
    border: 2px solid #FFD700;
    font-weight: bold;
    color: #FFD700;
}

.spin-btn {
    min-width: 150px;
}

.sound-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sound-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #FFFFFF;
}

.sound-icon {
    font-size: 1.5rem;
}

.win-notification {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.win-notification.show {
    opacity: 1;
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border: 2px solid #FFD700;
}

/* Animações */
@keyframes glow {
    from {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    }
    to {
        text-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.3);
    }
}

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

@keyframes symbolWin {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1.1); }
    75% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

@keyframes symbolSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes paylineGlow {
    0% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.8); }
    100% { box-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 30px rgba(255, 215, 0, 0.6); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .caracteristicas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-banners {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slot-reels {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.5rem;
    }
    
    .symbol {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .slot-modal-content {
        padding: 1rem;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .slot-reels {
        gap: 0.3rem;
    }
    
    .symbol {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Foco para navegação por teclado */
.btn-primary:focus,
.btn-secondary:focus,
.nav-desktop a:focus,
.mobile-menu a:focus {
    outline: 3px solid #FFD700;
    outline-offset: 2px;
}

/* Alto contraste */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #FFD700;
        color: #000000;
        border: 3px solid #000000;
    }
    
    .btn-secondary {
        background: #FFFFFF;
        color: #000000;
        border: 3px solid #000000;
    }
}
