/* Popup & Cookie Banner base styles */
*, *:before, *:after { box-sizing: border-box; }
button { transition: background 0.2s, color 0.2s; }

/* Βασικά Στυλ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background: linear-gradient(to bottom, #ffe9cc, #ffcc99);
  color: #4b2e2e;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #a94442;
}

ul {
  list-style: disc inside;
}

/* Header */
.main-header {
  background: #d2691e;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #ffe9cc;
}

.play-btn {
  background: #fff;
  color: #a94442 !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s;
}

.play-btn:hover {
  background: #ffe9cc;
  transform: scale(1.05);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: url('/game/20250709_1102_image.webp') center/cover no-repeat;
  text-align: center;
  padding: 120px 20px 80px;
  color: white;
  background-color: #ff7f50;
  animation: fiestaFadeIn 2s ease;
}

@keyframes fiestaFadeIn {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px #662e1c;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta {
  background: #fff;
  color: #a94442;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(169,68,66,0.15);
  display: inline-block;
}

.cta:hover {
  background: #f1d9c5;
  transform: scale(1.05);
}

main {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  margin-bottom: 60px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #a94442;
  text-align: center;
}

/* Game Features */
.game-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  background: rgba(255,255,255,0.8);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature h3 {
  color: #a94442;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Game Info Section */
.game-info {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 60px 20px;
  margin: 40px -20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.mb-12 {
  margin-bottom: 3rem;
}

.main-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.highlight {
  color: #f39c12;
}

.white-text {
  color: white;
}

.divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #f39c12, #e67e22);
  margin: 0 auto 2rem;
}

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

.info-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.icon {
  width: 50px;
  height: 50px;
  background: #e74c3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.warning-icon, .info-icon {
  font-size: 1.5rem;
}

.info-card h3 {
  color: #f39c12;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.help-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.help-link img {
  height: 50px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.help-link:hover img {
  opacity: 1;
}

/* Footer */
.main-footer {
  background: #2c3e50;
  color: white;
  padding: 40px 20px 20px;
}

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

.footer-section h3 {
  color: #f39c12;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: #bdc3c7;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #f39c12;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 2rem;
  text-align: center;
}

.company-info p {
  margin-bottom: 0.5rem;
  color: #bdc3c7;
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff5e6;
  border-top: 2px solid #d2691e;
  padding: 16px;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  animation: cookieSlideUp 1s;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner p {
  margin: 0;
  text-align: center;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#acceptCookies {
  background-color: #a94442;
  color: white;
}

#rejectCookies {
  background-color: #ccc;
  color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #d2691e;
    padding: 1rem;
  }
  
  .main-nav.active ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .main-title {
    font-size: 2rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cta {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .help-links {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  
  .logo h1 {
    font-size: 1.2rem;
  }
  
  .hero {
    padding: 100px 15px 60px;
  }
  
  main {
    padding: 20px 15px;
  }
  
  .game-info {
    padding: 40px 15px;
    margin: 20px -15px;
  }
} 