:root {
  --slurpie-bg-img-light: url('slurpie-bg-v5.webp');
  --slurpie-bg-img-dark: url('slurpie-bg-dark-v5.webp');
  --slurpie-bg-overlay-light: linear-gradient(rgba(250, 249, 246, 0), rgba(250, 249, 246, 0));
  --slurpie-bg-overlay-dark: linear-gradient(rgba(8, 8, 8, 0.4), rgba(8, 8, 8, 0.4));
  
  --slurpie-mesh-light: 
    var(--slurpie-bg-overlay-light),
    radial-gradient(circle at 10% 10%, rgba(255, 233, 214, 0.25) 0%, transparent 50%),
    var(--slurpie-bg-img-light);

  --slurpie-mesh-dark: 
    var(--slurpie-bg-overlay-dark),
    radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    var(--slurpie-bg-img-dark);
}

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


body {
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  background: var(--slurpie-mesh-light) no-repeat center center fixed;
  background-size: cover;
  color: var(--light-text-primary, #110b08);
  overflow-x: hidden;
}


.bg-pattern {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(#f1c9a5 0.6px, transparent 0.6px);
  background-size: 64px 64px;
  opacity: 0.12;
  z-index: -1;
}


.page {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
  align-items: center;
  flex: 1;
}

.left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.centered-header {
  text-align: center;
  margin-top: 5px; 
  margin-bottom: 10px; 
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.logo {
  font-family: 'Fredoka', cursive;
  font-size: 64px;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}



.tagline {
  font-size: 18px;
  color: var(--light-accent, #c0651a);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}


.header-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.pill-nav {
  display: flex;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  padding: 6px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  gap: 4px;
}

.nav-item {
  padding: 10px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-family: 'Fredoka', cursive;
  font-size: 16px;
  color: var(--light-accent, #c0651a);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.nav-item.active {
  background: #2f7a4f;
  color: white;
  box-shadow: 0 6px 20px rgba(47, 122, 79, 0.3);
}

body.dark .pill-nav {
  background: rgba(45, 45, 45, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark .nav-item {
  color: #eee;
}

body.dark .nav-item.active {
  background: #5fbf8f;
  color: #1a1a1a;
}

.headline {
  font-family: 'Fredoka', cursive;
  font-size: 38px;
  margin-top: -10px; 
  margin-bottom: 18px;
}

.description {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 34px;
}

.question {
  margin-bottom: 20px;
}


.buttons {
  max-width: 560px;
}

.action {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 30px;
  border-radius: 26px;
  margin-bottom: 26px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  color: inherit;
  
  
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}


.action:nth-child(1) {
  border-left: 6px solid #27ae60;
}
.action:nth-child(1) h3 {
  color: #1e8449;
  text-shadow: 0 0 10px rgba(39, 174, 96, 0.2);
}
.action:nth-child(1) p {
  color: #2d5a3f;
}
.action:nth-child(1) .arrow {
  color: #27ae60;
}


.action:nth-child(2) {
  border-left: 6px solid #e67e22;
}
.action:nth-child(2) h3 {
  color: #d35400;
  text-shadow: 0 0 10px rgba(230, 126, 34, 0.2);
}
.action:nth-child(2) p {
  color: #7d4d2d;
}
.action:nth-child(2) .arrow {
  color: #e67e22;
}

.action:nth-child(3) {
  border-left: 6px solid #2980b9;
}
.action:nth-child(3) h3 {
  color: #2471a3;
  text-shadow: 0 0 10px rgba(41, 128, 185, 0.2);
}
.action:nth-child(3) p {
  color: #214f6f;
}
.action:nth-child(3) .arrow {
  color: #2980b9;
}

.action h3 {
  font-family: 'Fredoka', cursive;
  font-size: 22px;
  margin-bottom: 4px;
}
.action p {
  color: rgba(255, 255, 255, 0.9);
}

@media (hover: hover) {
  .action:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.45);
  }

  .action:nth-child(1):hover {
    box-shadow: 0 20px 40px rgba(39, 174, 96, 0.15);
    border-color: rgba(39, 174, 96, 0.4);
  }

  .action:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(230, 126, 34, 0.15);
    border-color: rgba(230, 126, 34, 0.4);
  }

  .action:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(41, 128, 185, 0.15);
    border-color: rgba(41, 128, 185, 0.4);
  }
}

.emoji { font-size: 40px; }
.arrow { margin-left: auto; }


.right {
  display: block;
}


.top-right {
  position: absolute;
  top: 20px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 9999;
}

.night-btn {
  border: none;
  padding: 10px 14px;
  border-radius: 20px;
  cursor: pointer;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}


.account {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 22px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.account-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 50px;
  width: 260px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
  padding: 16px;
}


.account-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.account-avatar {
  width: 40px;
  height: 40px;
  background: #FAF9F6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.account-name {
  font-weight: 600;
  font-family: 'Fredoka', cursive;
}

.account-email {
  font-size: 12px;
  color: #777;
}


.menu-section {
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin-top: 10px;
}

.account-menu button {
  width: 100%;
  border: none;
  padding: 10px;
  margin-top: 6px;
  border-radius: 12px;
  cursor: pointer;
  background: #fff7ec;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.account-menu button:hover {
  background: #FAF9F6;
}




.ai-chatbox {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 320px;
  max-width: calc(100vw - 48px);
  height: 420px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}


.ai-header {
  background: transparent;
  color: white;
  padding: 14px 18px;
  font-family: 'Fredoka', cursive;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.ai-messages {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  background: #fff7ec;
  display: flex;
  flex-direction: column;
}

.ai-bot,
.ai-user {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  margin-bottom: 10px;
  font-size: 14px;
}

.ai-bot {
  background: #e9f6ec;
  align-self: flex-start;
}

.ai-user {
  background: #ffd6a5;
  align-self: flex-end;
}


.ai-input {
  display: flex;
  padding: 10px;
  gap: 8px;
  border-top: 1px solid #eee;
}

.ai-input input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 20px;
  border: 1px solid #ddd;
}

.ai-input button {
  border: none;
  background: #2f7a4f;
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
}



.slideshow{
  position:relative;
  width:100%; 
  height:465px; 
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top: -40px; 
}

.slide{
  position:absolute;
  width:100%; 
  height:100%; 
  object-fit:cover;
  border-radius:28px;
  box-shadow:0 25px 55px rgba(0,0,0,0.3);
  opacity:0;
  transition:opacity 1s ease;
}

.slide.active{
  opacity:1;
}
.nav-avatar{
width:38px;
height:38px;
border-radius:50%;
object-fit:cover;
border:2px solid #E6B800;
margin-right:6px;
}

.account-avatar-img{
width:45px;
height:45px;
border-radius:50%;
object-fit:cover;
margin-right:10px;
border:2px solid #E6B800;
}



body{
  animation: pageFade 0.8s ease;
}

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



.action{
  position:relative;
  overflow:hidden;
}

.action::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,0.35),transparent);
  opacity:0;
  transition:opacity 0.4s;
}

.action:hover::after{
  opacity:1;
}



@media (min-width: 901px) {
  .ai-chat-btn {
    animation: floatButton 3s ease-in-out infinite;
  }
}

@keyframes floatButton {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}



@media (hover: hover) {
  .nav-avatar:hover,
  .account-avatar-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(230,184,0,0.6);
    transition: all 0.3s ease;
  }
}



.account-menu{
  transform:translateY(-10px);
  opacity:0;
  transition:all 0.25s ease;
}

.account-menu.show{
  display:block;
  transform:translateY(0);
  opacity:1;
}



.ai-bot,
.ai-user{
  animation:chatPop 0.25s ease;
}

@keyframes chatPop{
  from{
    opacity:0;
    transform:scale(0.9);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}



.ai-input input:focus{
  outline:none;
  border:1px solid #2f7a4f;
  box-shadow:0 0 0 3px rgba(47,122,79,0.15);
}



.slide.active{
  animation:slideZoom 6s ease infinite alternate;
}

@keyframes slideZoom{
  from{ transform:scale(1); }
  to{ transform:scale(1.05); }
}



::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-track{
  background:#fff7ec;
}

::-webkit-scrollbar-thumb{
  background:#ffd6a5;
  border-radius:10px;
}

::-webkit-scrollbar-thumb:hover{
  background:#ffc078;
}

.account-menu button{
  transition:all 0.2s ease;
}

.account-menu button:active{
  transform:scale(0.97);
}



.top-right{
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.25);
  padding:6px 10px;
  border-radius:30px;
}



.account{
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.45);
  border:1px solid rgba(255,255,255,0.3);
}



body{
  background: var(--slurpie-mesh-light) no-repeat center center fixed;
  background-size: cover;
}

body.dark {
  background: var(--slurpie-mesh-dark) no-repeat center center fixed !important;
  background-size: cover !important;
  background-color: #080808 !important;
  color: #f1e5ac !important;
}



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



.ai-typing{
  display:flex;
  gap:4px;
  padding:10px 14px;
  background:#e9f6ec;
  border-radius:16px;
  width:fit-content;
}

.ai-dot{
  width:6px;
  height:6px;
  background:#2f7a4f;
  border-radius:50%;
  animation:typingBounce 1.4s infinite;
}

.ai-dot:nth-child(2){
  animation-delay:0.2s;
}

.ai-dot:nth-child(3){
  animation-delay:0.4s;
}

@keyframes typingBounce{
  0%,80%,100%{ transform:scale(0); }
  40%{ transform:scale(1); }
}


@media (min-width: 901px) {
  .action {
    animation: cardFloat 6s ease-in-out infinite;
  }

  .action:nth-child(2) {
    animation-delay: 2s;
  }

  .action:nth-child(3) {
    animation-delay: 4s;
  }
}

@keyframes cardFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}


body.dark .action {
  background: rgba(45, 45, 45, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

body.dark .action:nth-child(1) {
  border-left-color: #2ecc71; 
}
body.dark .action:nth-child(1) h3 {
  color: #2ecc71;
  text-shadow: 0 0 15px rgba(46, 204, 113, 0.4);
}
body.dark .action:nth-child(1) p {
  color: #a5d6a7;
}
body.dark .action:nth-child(1) .arrow {
  color: #2ecc71;
}

body.dark .action:nth-child(2) {
  border-left-color: #f39c12; 
}
body.dark .action:nth-child(2) h3 {
  color: #f39c12;
  text-shadow: 0 0 15px rgba(243, 156, 18, 0.4);
}
body.dark .action:nth-child(2) p {
  color: #ffcc80;
}
body.dark .action:nth-child(2) .arrow {
  color: #f39c12;
}

body.dark .action:nth-child(3) {
  border-left-color: #3498db; 
}
body.dark .action:nth-child(3) h3 {
  color: #3498db;
  text-shadow: 0 0 15px rgba(52, 152, 219, 0.4);
}
body.dark .action:nth-child(3) p {
  color: #90caf9;
}
body.dark .action:nth-child(3) .arrow {
  color: #3498db;
}

@media (hover: hover) {
  body.dark .action:hover {
    background: rgba(60, 60, 60, 0.6);
  }

  body.dark .action:nth-child(1):hover {
    box-shadow: 0 20px 45px rgba(39, 174, 96, 0.25);
    border-color: rgba(46, 204, 113, 0.5);
  }

  body.dark .action:nth-child(2):hover {
    box-shadow: 0 20px 45px rgba(230, 126, 34, 0.25);
    border-color: rgba(243, 156, 18, 0.5);
  }

  body.dark .action:nth-child(3):hover {
    box-shadow: 0 20px 45px rgba(41, 128, 185, 0.25);
    border-color: rgba(52, 152, 219, 0.5);
  }
}


@media (max-width: 1100px) {
  .main-content {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  body {
    overflow-y: auto;
    height: auto;
  }

  .page {
    height: auto;
    padding: 60px 20px 40px;
  }

  .main-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .logo {
    font-size: 48px;
  }

  .headline {
    font-size: 32px;
  }

  .description {
    margin: 0 auto 24px;
    font-size: 16px;
  }

  .left {
    align-items: center;
  }

  .buttons, .action {
    width: 100%;
    max-width: 500px;
  }

  .action {
    padding: 20px;
    gap: 15px;
    text-align: left;
  }

  .action h3 {
    font-size: 20px;
  }

  .emoji {
    font-size: 32px;
  }

  .pill-nav {
    max-width: 100%;
    overflow-x: auto;
    padding: 4px 10px;
    justify-content: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .pill-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-item {
    white-space: nowrap;
    padding: 8px 18px;
    font-size: 14px;
  }

  .slideshow {
    height: 380px;
    margin-top: 0;
  }

  .right {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .logo { font-size: 40px; }
  .headline { font-size: 28px; }
  .slideshow { height: 300px; }
  .top-right {
    top: 10px;
    right: 10px;
    gap: 8px;
    padding: 4px 8px;
  }
  .account { padding: 6px 10px; }
  .account-name { display: none; }
}

/* --- Connection Modal --- */
.slurpie-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.4s ease;
}

.slurpie-modal .modal-content {
  background: white;
  padding: 40px;
  border-radius: 32px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  animation: modalSlideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.modal-header .emoji {
  font-size: 50px;
  display: block;
  margin-bottom: 15px;
}

.modal-header h2 {
  font-family: 'Fredoka', cursive;
  font-size: 28px;
  color: #2f7a4f;
  margin-bottom: 15px;
}

.slurpie-modal p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--light-text-primary, #110b08);
  margin-bottom: 30px;
}

.modal-close-btn {
  background: #2f7a4f;
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-family: 'Fredoka', cursive;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(47, 122, 79, 0.2);
}

.modal-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(47, 122, 79, 0.3);
  background: #27ae60;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideUp {
  to { transform: translateY(0); }
}

body.dark .slurpie-modal .modal-content {
  background: #1a1a1a;
  color: #eee;
}

body.dark .slurpie-modal p {
  color: #ccc;
}

/* --- Memory Game Modal --- */
.game-modal-content {
  position: relative;
  text-align: center;
  max-width: 520px !important;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 25px 50px rgba(220, 110, 40, 0.15);
  border-radius: 28px;
  padding: 35px 25px;
}
body.dark .game-modal-content {
  background: rgba(25, 20, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  color: #fff;
}

.game-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(0,0,0,0.06);
  border: none;
  font-size: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.game-close-btn:hover { background: rgba(0,0,0,0.12); transform: rotate(90deg); }
body.dark .game-close-btn { background: rgba(255,255,255,0.1); color: #fff; }
body.dark .game-close-btn:hover { background: rgba(255,255,255,0.2); }

.game-start-btn {
  background: linear-gradient(135deg, #f0932b, #eb4d4b);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Fredoka', cursive;
  cursor: pointer;
  margin-top: 25px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(235, 77, 75, 0.35);
  letter-spacing: 0.5px;
}
.game-start-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 25px rgba(235, 77, 75, 0.5); }

.game-header {
  font-size: 22px;
  font-family: 'Fredoka', cursive;
  font-weight: 600;
  margin-bottom: 24px;
  color: #d35400;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
body.dark .game-header { color: #f39c12; }

.game-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  perspective: 1000px;
}

.memory-card {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
  cursor: pointer;
}

.memory-card.flip {
  transform: rotateY(180deg);
}
.memory-card:hover {
  transform: scale(1.04);
}
.memory-card.flip:hover {
  transform: rotateY(180deg) scale(1.04);
}

.memory-card-front, .memory-card-back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.memory-card-front {
  background: linear-gradient(135deg, #ff9a9e, #fecfef);
  color: white;
  font-size: 34px;
  border: 2px solid rgba(255,255,255,0.6);
}
body.dark .memory-card-front {
  background: linear-gradient(135deg, #434343, #000000);
  border-color: #333;
}

.memory-card-back {
  background: white;
  transform: rotateY(180deg);
  overflow: hidden;
  border: 2px solid #f0932b;
}
.memory-card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coupon-box {
  position: relative;
  background: linear-gradient(to right, #fff, #fef4e8);
  border-top: 2px dashed #f0932b;
  border-bottom: 2px dashed #f0932b;
  padding: 20px;
  border-radius: 8px;
  font-size: 26px;
  font-family: 'Fredoka', cursive;
  font-weight: 700;
  color: #d35400;
  margin: 25px 0;
  letter-spacing: 3px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
body.dark .coupon-box { 
  background: linear-gradient(to right, #2c1a0e, #1f1107);
  color: #f39c12;
}

.top-left { position: absolute; top: 20px; left: 24px; display: flex; align-items: center; gap: 16px; z-index: 9999; } .game-trigger-btn { font-family: 'Fredoka', cursive; font-weight: 600; color: #2f7a4f; }

.slurpie-spinner {
  display: inline-block;
  animation: slurpie-spin 2s linear infinite;
}

@keyframes slurpie-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes timer-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

.timer-urgent {
  animation: timer-pulse 1s infinite;
  background: #e74c3c !important;
  color: white !important;
}
