:root {
    --primary-green: #00ff88;
    --primary-blue: #4a90e2;
    --primary-purple: #8b5cf6;
    --primary-pink: #ff1493;
    --primary-orange: #ff6b35;
  	--primary-yellow: #ffb900;
    --dark-bg: #000000;
    --dark-card: #1a1a1a;
    --dark-secondary: #2a2a2a;
    --text-white: #ffffff;
    --text-gray: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Partículas de Fundo */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

/* Navbar */
.navbar-custom {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-green) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.nav-link {
    color: var(--text-white) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--primary-green) !important;
    background: rgba(0, 255, 136, 0.1);
}

.nav-link.active {
    color: var(--primary-green) !important;
    background: rgba(0, 255, 136, 0.2);
}

.nav-badge {
    background: var(--primary-green);
    color: var(--dark-bg);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-badge.orange {
    background: var(--primary-orange);
}

.nav-badge.purple {
    background: var(--primary-purple);
}

.nav-btn {
    background: var(--primary-green);
    color: var(--dark-bg);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-btn:hover {
    background: #00cc6a;
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.btn-deposit {
    background: var(--primary-green);
}

.btn-withdraw {
    background: var(--primary-green);
}

.btn-login {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--text-white);
}

.btn-register {
    border: 2px solid var(--primary-green);
    color: var(--dark-bg);
}

.user-balance {
    background: var(--dark-card);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    margin-right: 0.5rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.hero-section {
  margin-top: 0px;
  background: transparent;
  perspective: 1500px;
  overflow: visible;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: visible;
  padding-bottom: 40px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transition: transform 0.8s ease;
}

.carousel-slide {
  position: absolute;
  width: 60%;
  height: 100%;
  transform: scale(0.8);
  transition: all 0.8s ease;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  backface-visibility: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 12px;
}

.carousel-slide.active {
  transform: translateX(0) scale(1) rotateY(0deg);
  z-index: 10;
  opacity: 1 !important;
  backface-visibility: hidden;
}

.carousel-slide.prev {
  opacity: 0.5;
  transform: translateX(-420px) scale(0.88) rotateY(30deg);
  z-index: 2;
}

/* Slide próximo */
.carousel-slide.next {
  opacity: 0.5;
  transform: translateX(420px) scale(0.88) rotateY(-30deg);
  z-index: 2;
}

/* Indicadores */
.hero-indicators {
  text-align: center;
  margin-top: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
  background-color: transparent;
  border: 2px solid white;
  cursor: pointer;
  transition: 0.3s;
}

.indicator.active {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

/* Responsivo */
@media (max-width: 768px) {
  .carousel-slide {
    width: 90%;
    transform: scale(1);
  }
  .carousel-slide.prev,
  .carousel-slide.next {
    display: none;
  }
}


/* Winners Live */
.winners-live {
    padding: 1rem 0;
    overflow: hidden;
  	max-width: 70%;
  	margin: 0 auto;
  	margin-top: 40px;
}

.live-indicator {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  	margin-right: 2rem;
}

.live-dot-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.live-ao {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-vivo {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.winners-scroll {
    flex: 1;
    overflow: hidden;
}

.winners-content {
    display: flex;
    gap: 2rem;
    animation: scroll 12s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.winner-icon {
    width: 30px;
    height: 30px;
    background: #00ff8800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 0.8rem;
}

.winner-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.winner-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-white);
}

.winner-prize {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.winner-value {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 0.9rem;
}

/* Destaques Section */
.destaques-section {
    padding: 80px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-header h2 i {
    color: var(--primary-green);
}

.btn-outline-primary {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-green);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    margin-right: calc(-.5 * var(--bs-gutter-x));
}

.row > * {
    flex: 0 0 calc(33.333% - var(--bs-gutter-x));
    max-width: calc(33.333% - var(--bs-gutter-x));
    margin-right: var(--bs-gutter-x);
    margin-bottom: var(--bs-gutter-y);
}

.row > *:nth-child(3n) {
    margin-right: 0;
}

.row-game {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: nowrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    gap: 2rem;
    max-width: 100%;
}

/* Neon Border Wrapper */
.neon-border {
    position: relative;
    padding: 1px;
    border-radius: 22px;
    z-index: 0;
}

.neon-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00ffcc, #00ff00, #00ffcc, #00ff00);
    background-size: 400% 400%;
    z-index: -1;
    filter: blur(6px);
    border-radius: 22px;
    animation: neonGlow 5s linear infinite;
    pointer-events: none;
}

@keyframes neonGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Raspadinha Cards */
.raspadinha-card {
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}

.card-banner {
    background-size: cover;
    background-position: center;
    height: 140px;
    border-radius: 18px 18px 0 0;
}

.card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.card-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.raspadinha-nome {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
}

.raspadinha-premio {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-yellow);
    text-transform: uppercase;
}

.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.btn-check:focus + .btn, .btn:focus {
  box-shadow: 0 0 0 .25rem rgba(26, 26, 26, 0);
}

.btn-play {
    background: var(--primary-green);
    color: var(--dark-bg);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-play-login {
    background: var(--primary-green);
    color: var(--dark-bg);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-play .price {
    background: #000;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-weight: 900;
    font-size: 0.9rem;
}

.btn-prizes {
    background: transparent;
    color: var(--text-white);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-prizes:hover {
    color: var(--primary-green);
}

.btn-prizes:hover svg {
    animation: wiggle 0.6s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

/* Modais */
.auth-modal .modal-content {
    background: var(--dark-card);
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.auth-modal .modal-body {
    padding: 0;
}

.auth-card {
    padding: 3rem;
    text-align: center;
}

.auth-logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.auth-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.form-control-custom {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-custom::placeholder {
    color: var(--text-muted);
}

.form-control-custom:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 136, 0.25);
    color: var(--text-white);
}

.btn-auth {
    background: var(--primary-green);
    color: var(--dark-bg);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-auth:hover {
    background: var(--primary-green);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.auth-link {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
}

.auth-link:hover {
    color: #ff0d7a;
    text-decoration: underline;
}

/* Prizes Modal */
.prizes-modal .modal-content {
    background: var(--dark-card);
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.prizes-modal .modal-header {
    background: var(--primary-green);
    border: none;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem 2rem;
}

.prizes-modal .modal-title {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.3rem;
}

.prizes-modal .modal-body {
    padding: 2rem;
}

.prize-item {
    padding: 2rem;
}

.prize-image-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prize-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.prize-image-game {
    max-width: 30%;
    max-height: 30%;
    object-fit: contain;
}

.prize-name {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.prize-value {
    color: var(--primary-green);
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.prize-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.prize-probability,
.prize-quantity {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background: var(--primary-green);
}

/* Footer */
.footer {
    background: var(--dark-card);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.footer-logo {
    height: 30px;
    width: auto;
}

.footer-text {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.footer h5 {
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.mg-prize {
  	width: 47px;
  	height: 47px;
  	object-fit: contain;
}

@media (max-width: 1024px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .navbar-custom {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.6rem;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    .carousel-wrapper {
        height: 400px;
    }
    
    .carousel-slide {
        width: 70%;
    }
    
    .carousel-slide.prev,
    .carousel-slide.next {
        transform: translateX(-350px) scale(0.85) rotateY(25deg);
    }
    
    .carousel-slide.next {
        transform: translateX(350px) scale(0.85) rotateY(-25deg);
    }
    
    .winners-live {
        max-width: 85%;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .row > * {
        flex: 0 0 calc(50% - var(--bs-gutter-x));
        max-width: calc(50% - var(--bs-gutter-x));
    }
    
    .row > *:nth-child(2n) {
        margin-right: 0;
    }
    
    .row > *:nth-child(3n) {
        margin-right: 0;
    }
}

@media (max-width: 991px) {
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
    }
    
    .navbar-nav.ms-auto {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .user-balance {
        width: 140px;
        text-align: center;
    }
    
    .nav-btn {
        width: 100%;
        justify-content: center;
        margin: 0.25rem 0;
    }
    
    .dropdown-menu {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
  
  	.form-check-label {
	    color: var(--text-gray);
	    font-size: 0.8rem;
	}
}

/* Mobile Portrait (768px and below) */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .navbar-logo {
        height: 30px;
    }
    
    .carousel-wrapper {
        height: 350px;
        padding-bottom: 30px;
    }
    
    .carousel-slide {
        width: 90%;
        transform: scale(1);
    }
    
    .carousel-slide.prev,
    .carousel-slide.next {
        display: none;
    }
    
    .winners-live {
        max-width: 95%;
        margin-top: 30px;
        padding: 0.75rem 0;
    }
    
    .live-indicator {
        margin-right: 1rem;
    }
    
    .live-ao,
    .live-vivo {
        font-size: 0.9rem;
    }
    
    .winner-item {
        padding: 0.5rem 1rem;
        gap: 0.75rem;
    }
    
    .winner-icon {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }
    
    .winner-name {
        font-size: 0.8rem;
    }
    
    .winner-prize {
        font-size: 0.7rem;
    }
    
    .winner-value {
        font-size: 0.8rem;
    }
    
    .destaques-section {
        padding: 60px 0;
    }
    
    .section-header {
        gap: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn-outline-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .row > * {
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .raspadinha-card {
        margin-bottom: 1rem;
    }
    
    .card-banner {
        height: 120px;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .raspadinha-nome {
        font-size: 1rem;
    }
  	
  	.carousel-control-prev {
	    left: 0;
	}
  
  	.carousel-control-next {
	    right: 0;
	}
    
    .raspadinha-premio {
        font-size: 0.75rem;
    }
    
    .card-actions {
	    display: flex;          
	    flex-direction: row;    
	    gap: 0.75rem;           
	    align-items: center;    
	}
	
	.btn-play {
	    width: 46%;
	    justify-content: space-between;
	    padding: 0.75rem 1rem;
	    display: flex;          
	    align-items: center;    
	}
  
  	.btn-play-login {
        width: 34%;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
    }
	
	.btn-prizes {
	    width: 40%;
	    justify-content: center;
	    padding: 0.5rem 1rem;
	    display: flex;          
	    align-items: center;
	}
    
    .auth-card {
        padding: 2rem 1.5rem;
    }
    
    .auth-title {
        font-size: 1.6rem;
    }
    
    .form-control-custom {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .btn-auth {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .prizes-modal .modal-dialog {
        margin: 1rem;
    }
    
    .prizes-modal .modal-body {
        padding: 1.5rem;
    }
    
    .prize-details {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
        margin-top: 3rem;
    }
    
    .footer-brand {
        font-size: 1.3rem;
    }
    
    .footer-logo {
        height: 25px;
    }
  
  	.form-check-label {
	    color: var(--text-gray);
	    font-size: 0.8rem;
	}
}

/* Mobile Portrait Small (576px and below) */
@media (max-width: 576px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .navbar-custom {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-logo {
        height: 30px;
    }
    
    .carousel-wrapper {
        height: 300px;
        padding-bottom: 25px;
    }
    
    .winners-live {
        max-width: 100%;
        margin-top: 25px;
        padding: 0.5rem 0;
    }
    
    .winners-content {
        gap: 1.5rem;
        animation-duration: 3s;
    }
    
    .winner-item {
        padding: 0rem 1.5rem;
        gap: 1rem;
    }
    
    .winner-icon {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }
  
  	.mg-prize {
      	width: 30px;
	  	height: 30px;
	  	object-fit: contain;
	}
    
    .winner-name {
        font-size: 0.75rem;
    }
    
    .winner-prize {
        font-size: 0.65rem;
    }
    
    .winner-value {
        font-size: 0.75rem;
    }
    
    .destaques-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2 i {
        font-size: 1.5rem;
    }
    
    .btn-outline-primary {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .card-banner {
        height: 100px;
    }
    
    .card-body {
        padding: 0.875rem;
    }
    
    .raspadinha-nome {
        font-size: 0.95rem;
    }
    
    .raspadinha-premio {
        font-size: 0.7rem;
    }
    
    .btn-play {
        padding: 0.6rem 0.875rem;
        font-size: 0.9rem;
    }
  
  	.btn-play-login {
        padding: 0.6rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .btn-play .price {
        padding: 0.2rem 0.4rem;
        font-size: 0.8rem;
    }
    
    .btn-prizes {
        padding: 0.5rem 0.10rem;
        font-size: 0.85rem;
    }
    
    .auth-card {
        padding: 1.5rem 1rem;
    }
    
    .auth-logo {
        font-size: 2rem;
    }
    
    .auth-title {
        font-size: 1.4rem;
    }
    
    .auth-subtitle {
        font-size: 0.9rem;
    }
    
    .form-control-custom {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-auth {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .prizes-modal .modal-dialog {
        margin: 0.5rem;
    }
    
    .prizes-modal .modal-body {
        padding: 1rem;
    }
    
    .prize-item {
        padding: 1rem;
    }
    
    .prize-image-container {
        width: 120px;
        height: 120px;
    }
    
    .prize-name {
        font-size: 1.1rem;
    }
    
    .prize-value {
        font-size: 1.3rem;
    }
    
    .prize-probability,
    .prize-quantity {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer {
        padding: 1.5rem 0 1rem;
        margin-top: 2rem;
    }
    
    .footer-brand {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-logo {
        height: 20px;
    }
    
    .footer-text {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .footer h5 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
  
  	.form-check-label {
	    color: var(--text-gray);
	    font-size: 0.8rem;
	}
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .carousel-wrapper {
        height: 205px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .card-banner {
        height: 90px;
    }
    
    .auth-logo {
        font-size: 1.8rem;
    }
    
    .auth-title {
        font-size: 1.2rem;
    }
    
    .prize-image-container {
        width: 100px;
        height: 100px;
    }
    
    .prize-name {
        font-size: 1rem;
    }
    
    .prize-value {
        font-size: 1.2rem;
    }
  
  	.form-check-label {
	    color: var(--text-gray);
	    font-size: 0.8rem;
	}
  
  	.btn-play {
        width: 46%;
    }
}

/* Extra Small Mobile (430px and below) */
@media (max-width: 430px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .carousel-wrapper {
        height: 205px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .card-banner {
        height: 90px;
    }
    
    .auth-logo {
        font-size: 1.8rem;
    }
    
    .auth-title {
        font-size: 1.2rem;
    }
    
    .prize-image-container {
        width: 100px;
        height: 100px;
    }
    
    .prize-name {
        font-size: 1rem;
    }
    
    .prize-value {
        font-size: 1.2rem;
    }
  
  	.form-check-label {
	    color: var(--text-gray);
	    font-size: 0.8rem;
	}
  
  	.btn-play {
        width: 49%;
    }
}

.page-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.page-title i {
    color: var(--primary-pink);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin: 0;
}

.page-stats {
    text-align: right;
}

.stat-item {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    font-weight: 600;
}

.withdrawal-section {
    padding: 60px 0;
}

.withdrawal-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.withdrawal-card .card-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.withdrawal-card .card-header h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.withdrawal-card .card-header h2 i {
    color: var(--primary-green);
}

.withdrawal-card .card-header p {
    color: var(--text-gray);
    margin: 0;
    font-size: 1.1rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    display: block;
}

.amount-input-container {
    position: relative;
    margin-bottom: 1rem;
}

.currency-symbol {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    z-index: 10;
}

.amount-input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.2rem 1.5rem 1.2rem 3rem;
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 700;
    width: 100%;
    transition: all 0.3s ease;
}

.amount-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 136, 0.25);
    color: var(--text-white);
    outline: none;
}

.amount-limits {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.quick-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-quick-amount {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-quick-amount:hover,
.btn-quick-amount.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.btn-quick-amount.btn-max {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    color: var(--text-white);
}

.btn-quick-amount.btn-max:hover,
.btn-quick-amount.btn-max.active {
    background: #ff0d7a;
    border-color: #ff0d7a;
}

.withdrawal-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.withdrawal-method {
    position: relative;
}

.withdrawal-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.withdrawal-label {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.withdrawal-label:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-green);
}

.withdrawal-radio:checked + .withdrawal-label {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary-green);
}

.withdrawal-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.withdrawal-icon i {
    font-size: 1.2rem;
    color: var(--dark-bg);
}

.withdrawal-info {
    flex: 1;
}

.withdrawal-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.withdrawal-time {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.withdrawal-check {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.withdrawal-radio:checked + .withdrawal-label .withdrawal-check {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.withdrawal-check i {
    font-size: 0.9rem;
    color: var(--text-white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.withdrawal-radio:checked + .withdrawal-label .withdrawal-check i {
    opacity: 1;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 136, 0.25);
    color: var(--text-white);
    outline: none;
}

.form-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.withdrawal-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-gray);
}

.summary-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
}

.summary-row.total span:last-child {
    color: var(--primary-green);
    font-size: 1.4rem;
}

.btn-withdrawal-submit {
    background: var(--primary-green);
    color: var(--dark-bg);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.2rem;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-withdrawal-submit:hover:not(:disabled) {
    background: #00cc6a;
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.btn-withdrawal-submit:disabled {
    background: #666;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.withdrawal-info {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.withdrawal-info h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.withdrawal-info h3 i {
    color: var(--primary-blue);
}

.withdrawal-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.withdrawal-info li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.withdrawal-info li:last-child {
    border-bottom: none;
}

.withdrawal-info li i {
    margin-right: 0.5rem;
    width: 20px;
}

/* Responsividade para página de saque */

/* Tablets */
@media (max-width: 1024px) {
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .withdrawal-card {
        padding: 2rem;
    }
}

/* Mobile Landscape */
@media (max-width: 991px) {
    .page-header .row {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .page-stats {
        text-align: center;
    }
    
    .stat-item {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Mobile Portrait */
@media (max-width: 768px) {
    .page-header {
        padding: 90px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .page-title i {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .withdrawal-section {
        padding: 40px 0;
    }
    
    .withdrawal-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .withdrawal-card .card-header {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    
    .withdrawal-card .card-header h2 {
        font-size: 1.6rem;
    }
    
    .withdrawal-card .card-header p {
        font-size: 1rem;
    }
    
    .form-label {
        font-size: 1rem;
    }
    
    .amount-input {
        padding: 1rem 1.25rem 1rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .currency-symbol {
        left: 1.25rem;
        font-size: 1.1rem;
    }
    
    .quick-amounts {
        gap: 0.5rem;
    }
    
    .btn-quick-amount {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        flex: 1;
        min-width: calc(50% - 0.25rem);
    }
    
    .withdrawal-label {
        padding: 1.25rem;
    }
    
    .withdrawal-icon {
        width: 45px;
        height: 45px;
        margin-right: 1rem;
    }
    
    .withdrawal-icon i {
        font-size: 1.1rem;
    }
    
    .withdrawal-name {
        font-size: 1rem;
    }
    
    .withdrawal-time {
        font-size: 0.85rem;
    }
    
    .withdrawal-check {
        width: 25px;
        height: 25px;
    }
    
    .withdrawal-check i {
        font-size: 0.8rem;
    }
    
    .form-control {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .withdrawal-summary {
        padding: 1.25rem;
    }
    
    .summary-row {
        font-size: 0.95rem;
    }
    
    .summary-row.total {
        font-size: 1.1rem;
    }
    
    .summary-row.total span:last-child {
        font-size: 1.3rem;
    }
    
    .btn-withdrawal-submit {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .withdrawal-info {
        padding: 1.5rem;
    }
    
    .withdrawal-info h3 {
        font-size: 1.3rem;
    }
    
    .withdrawal-info li {
        font-size: 0.95rem;
    }
}

/* Mobile Portrait Small */
@media (max-width: 576px) {
    .page-header {
        padding: 80px 0 30px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-title i {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .stat-item {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .withdrawal-card {
        padding: 1.25rem;
    }
    
    .withdrawal-card .card-header h2 {
        font-size: 1.4rem;
    }
    
    .withdrawal-card .card-header p {
        font-size: 0.95rem;
    }
    
    .form-section {
        margin-bottom: 1.5rem;
    }
    
    .form-label {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .amount-input {
        padding: 0.875rem 1rem 0.875rem 2.25rem;
        font-size: 1rem;
    }
    
    .currency-symbol {
        left: 1rem;
        font-size: 1rem;
    }
    
    .btn-quick-amount {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        min-width: calc(33.33% - 0.5rem);
    }
    
    .withdrawal-label {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .withdrawal-icon {
        width: 40px;
        height: 40px;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .withdrawal-icon i {
        font-size: 1rem;
    }
    
    .withdrawal-name {
        font-size: 0.95rem;
    }
    
    .withdrawal-time {
        font-size: 0.8rem;
    }
    
    .withdrawal-check {
        width: 20px;
        height: 20px;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .withdrawal-check i {
        font-size: 0.7rem;
    }
    
    .form-control {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .withdrawal-summary {
        padding: 1rem;
    }
    
    .summary-row {
        font-size: 0.9rem;
    }
    
    .summary-row.total {
        font-size: 1rem;
    }
    
    .summary-row.total span:last-child {
        font-size: 1.2rem;
    }
    
    .btn-withdrawal-submit {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .withdrawal-info {
        padding: 1.25rem;
    }
    
    .withdrawal-info h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .withdrawal-info li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .page-title {
        font-size: 1.6rem;
    }
    
    .withdrawal-card {
        padding: 1rem;
    }
    
    .withdrawal-card .card-header h2 {
        font-size: 1.3rem;
    }
    
    .btn-quick-amount {
        min-width: calc(50% - 0.25rem);
        font-size: 0.75rem;
    }
    
    .withdrawal-label {
        padding: 0.875rem;
    }
    
    .withdrawal-icon {
        width: 35px;
        height: 35px;
    }
    
    .withdrawal-icon i {
        font-size: 0.9rem;
    }
    
    .withdrawal-name {
        font-size: 0.9rem;
    }
    
    .withdrawal-time {
        font-size: 0.75rem;
    }
    
    .withdrawal-info h3 {
        font-size: 1.1rem;
    }
    
    .withdrawal-info li {
        font-size: 0.85rem;
    }
}