.elementor-kit-7{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */#prize-popup {
  position:fixed;
  left:0; top:0; width:100vw; height:100vh;
  z-index: 9999;
  background: rgba(10,12,30,0.80);
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-ganador {
  background: linear-gradient(135deg, #322375 60%, #24234a 100%);
  color: #fff;
  padding: 38px 28px 26px 28px;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.16);
  min-width: 320px; max-width: 360px;
  position: relative;
  text-align: center;
  overflow: hidden; /* ¡clave para que el canvas NO sobresalga! */
}

#confetti-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 520px) {
  .popup-ganador { min-width: 0; max-width: 94vw; }
}

 /* --- The Button Itself --- */
        .continue-button-1 {
            /* Basic Appearance */
            width: 200px;
            padding: 15px 30px;
            font-size: 18px;
            font-weight: bold;
            color: white;
            background-color: #ff8c00; /* A nice orange color */
            border: none;
            border-radius: 12px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

            /* Animation Properties */
            /* We link our keyframes animation here */
            animation: swing 2s infinite ease-in-out;
            transform-origin: center center; /* Ensures rotation happens from the center */

            /* Smooth transition for hover effect */
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        /* --- Interaction Effects --- */
        .continue-button-1:hover {
            /* Pause the animation on hover to make it easier to click */
            animation-play-state: paused;
            /* Slightly lift the button on hover for a nice effect */
            transform: translateY(-5px);
            background-color: #ffa500;
        }

        .continue-button-1:active {
            /* Make it look like it's being pressed */
            transform: translateY(-2px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        /* --- The Keyframes Animation --- */
        /* This defines the "swinging" motion */
        @keyframes swing {
            0% {
                transform: rotate(0deg);
            }
            25% {
                /* Tilt to the left */
                transform: rotate(-5deg);
            }
            75% {
                /* Tilt to the right */
                transform: rotate(5deg);
            }
            100% {
                transform: rotate(0deg);
            }
        }/* End custom CSS */