.jyx_game_body {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	 min-height:100vh;
}

.jyx_disclaimer_zone {
    padding:     100px 20px 40px;
   background: transparent;
}

.jyx_disclaimer_container     {
  max-width: 900px;
  margin: 0 auto;
}

.jyx_disclaimer_card {
  background: rgba(220,38,38,0.15);
	border: 2px solid #dc2626;
	 border-radius: 15px;
    padding: 30px 35px;
   display: flex;
	align-items: center;
    gap :      25px;
  backdrop-filter: blur(10px);
}

.jyx_disclaimer_icon {


  width: 50px;
	  height: 50px;
	  flex-shrink: 0;
	  filter: invert(17%) sepia(91%) saturate(6339%) hue-rotate(352deg); 


}

.jyx_disclaimer_heading {
     font-weight: 700;
  color     : #fff;
  font-size: 22px;
     margin-bottom: 12px;}

.jyx_disclaimer_text {
  font-size: 16px;
	color: #e5e7eb;
  line-height: 1.7;
    margin: 0;
}

.jyx_SlotMachine_carles {
    padding: 60px 20px 80px;
}

.jyx_slot_container {
  max-width: 1000px;
   margin: 0 auto;
}

.jyx_slot_frame {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
	border   :        4px solid #fbbf24;
       border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    margin-bottom: 40px;
	
}

.jyx_slot_header     {
	    display: flex;
   justify-content: space-between;
  align-items: center;
    margin-bottom: 35px;
   flex-wrap: wrap;
  gap: 20px;
     }

.jyx_slot_title {
         font-size: 32px;
  color: #fbbf24;
    margin: 0;
	font-weight: 900;
	text-transform :uppercase;
  letter-spacing: 2px;
}


.jyx_balance_display {
  display: flex;
  align-items :        center;
   gap: 12px;
  background: rgba(251,191,36,0.15);
   padding: 12px 25px;
   border-radius: 30px;
  border: 2px solid #fbbf24;
}

.jyx_balance_icon {
     width: 28px;
  height     :      28px;
  filter: invert(81%) sepia(61%) saturate(612%) hue-rotate(359deg);


}

.jyx_balance_label {
	 font-size :     16px;
       color: #e5e7eb;
     font-weight: 600;
}

.jyx_balance_amount {
	font-size: 24px;
  color: #fbbf24;
   font-weight: 900;
  font-family: 'Cinzel', serif;
}

.jyx_slot_grid {
   display: grid;
  grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    margin-bottom: 25px;
	padding: 25px;
  background: rgba(0,0,0,0.4);
    border-radius: 12px;
  border    :        3px solid #374151;
}

.jyx_slot_reel {
      display: flex;
    flex-direction: column;
       gap: 12px;
}

.jyx_symbol_cell {
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
   border    :        3px solid #4b5563;
    border-radius: 10px;
  padding: 15px;
    display: flex;
  align-items: center;
  justify-content: center;
    min-height  :    100px;
  transition: all 0.3s ease;
    position: relative;
	overflow: hidden;
}

.jyx_symbol_cell.jyx_spinning{
   animation  :    jyx_spin_cell 0.1s linear infinite;
}


.jyx_symbol_cell.jyx_winning  {
  border-color: #fbbf24;
  box-shadow: 0 0 25px rgba(251,191,36,0.8);
  animation: jyx_pulse_win 0.6s ease infinite;

}@keyframes jyx_spin_cell {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes jyx_pulse_win {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(251,191,36,0.8);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 35px rgba(251,191,36,1);
    }
}.jyx_symbol_img {
      max-width: 100%;
    height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));


}

.jyx_symbol_cell.jyx_spinning .jyx_symbol_img {

  animation: jyx_rotate_symbol 0.5s linear infinite;
     }@keyframes jyx_rotate_symbol {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}.jyx_result_banner {
  background: rgba(31,41,55,0.9);
    border: 2px solid #4b5563;
    border-radius: 10px;
  padding: 20px;
       text-align: center;
   margin-bottom: 25px;
    min-height: 70px;
  display: flex;
          align-items: center;
         justify-content: center;
}

.jyx_result_message {
    font-size: 20px;
     color: #e5e7eb;
       margin: 0;
       font-weight: 700;
}

.jyx_result_banner.jyx_win {
  background: rgba(34,197,94,0.2);
    border-color: #22c55e;
}

.jyx_result_banner.jyx_win .jyx_result_message  
  {
    color:        #22c55e;
  animation: jyx_text_glow 1s ease infinite;
}

.jyx_result_banner.jyx_lose {
  background: rgba(220,38,38,0.2);
   border-color: #dc2626;
}

.jyx_result_banner.jyx_lose .jyx_result_message    {
  color: #dc2626;
}@keyframes jyx_text_glow {
    0%, 100% { text-shadow: 0 0 10px rgba(34,197,94,0.5); }
    50% { text-shadow: 0 0 20px rgba(34,197,94,1); }
}.jyx_controls_panel		{
   display: flex;
    gap: 25px;
    align-items: center;
			justify-content: center;
  flex-wrap: wrap; 

}

.jyx_bet_controls {
	 display: flex;
    align-items: center;
   gap   :    20px;
  background: rgba(31,41,55,0.8);
    padding: 15px 25px;
  border-radius: 50px;
               border: 2px solid #4b5563;
}

.jyx_bet_btn {
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
   border    :      2px solid #6b7280;
   color: #fff;
    padding: 12px 20px;
   border-radius: 30px;
          cursor     :  pointer;
   font-size: 16px;
  font-weight :    700;
   transition:   all 0.3s ease;
        display: flex;
   align-items: center;
	gap: 8px;
}

.jyx_bet_btn:hover:not(:disabled)
	{
  background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    border-color: #fbbf24;
  transform: translateY(-2px);
}

.jyx_bet_btn:disabled {
  opacity: 0.5;
    cursor: not-allowed;

}

.jyx_btn_icon_small {
  width  :    18px;
      height: 18px;
  filter: brightness(0) invert(1);
}

.jyx_bet_display {

		 display: flex;
  align-items: center;
         gap: 10px;
	}

.jyx_bet_label {
    font-size: 16px;
  color: #9ca3af;
   font-weight: 600;
}

.jyx_bet_value  
  {
   font-size: 28px;
  color: #fbbf24;
  font-weight: 900;
  font-family: 'Cinzel', serif;
  min-width   :    60px;
  text-align: center;
}  

.jyx_bet_unit {
  font-size: 14px;
    color: #9ca3af;
	font-weight: 600;
}

.jyx_play_button {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border: none;
  color: #fff;
  padding: 20px 50px;
        font-size    :     22px;
   font-weight : 900;
   text-transform: uppercase;
    border-radius: 50px;
   cursor: pointer;
   transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(220,38,38,0.4);
 display: flex;
  align-items: center;
         gap: 15px;
  letter-spacing: 2px;
}

.jyx_play_button:hover:not(:disabled) {
  background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(220,38,38,0.6);
}

.jyx_play_button:disabled {
   background: #4b5563;
    cursor  :  not-allowed;
	 opacity: 0.6;
}

.jyx_play_icon {

	   width  :     28px;
    height: 28px;
  filter: brightness(0) invert(1);
     }

.jyx_paytable_info


{
  background: rgba(31,41,55,0.8);
	 border: 2px solid #fbbf24;
    border-radius: 15px;
    padding: 30px;
  backdrop-filter: blur(10px);
}

.jyx_paytable_title {
    font-size: 24px;
   color: #fbbf24;
  text-align: center;
    margin-bottom: 25px;
  font-weight: 700;
   text-transform: uppercase;
}

.jyx_paytable_grid {
   display: flex;
  flex-direction: column;
			gap: 15px;
}

.jyx_paytable_row {


		 display: flex;
  justify-content: space-between;
    align-items: center;
   padding: 15px 20px;
  background: rgba(55,65,81,0.5);
   border-radius: 8px;
    border: 1px solid #4b5563;
	}

.jyx_paytable_combo {
    font-size: 16px;
	color: #e5e7eb;
    font-weight: 600;

}

.jyx_paytable_win {
  font-size: 20px;
 color: #22c55e;
    font-weight: 900;
  font-family: 'Cinzel', serif;
}@media (max-width: 767px) {
    .jyx_disclaimer_card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .jyx_slot_header {
        flex-direction: column;
        align-items: stretch;
    }

    .jyx_slot_title {
        font-size: 24px;
        text-align: center;
    }

    .jyx_balance_display {
        justify-content: center;
    }

    .jyx_slot_grid {
        gap: 8px;
        padding: 15px;
    }

    .jyx_symbol_cell {
        min-height: 70px;
        padding: 10px;
    }

    .jyx_controls_panel {
        flex-direction: column;
    }

    .jyx_bet_controls {
        width: 100%;
        justify-content: center;
    }

    .jyx_play_button {
        width: 100%;
        justify-content: center;
    }
}