/* The Word Bee Main Stylesheet */
* {
  margin: 0; padding: 0; box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #fef9c3 0%, #fef3c7 100%);
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

/* Honeycomb Pattern Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3e%3cdefs%3e%3cpattern id='honeycomb' x='0' y='0' width='56' height='48' patternUnits='userSpaceOnUse'%3e%3cg fill='none' stroke='%23fbbf24' stroke-width='1' opacity='0.15'%3e%3cpath d='M14,0 L42,0 L56,24 L42,48 L14,48 L0,24 Z'/%3e%3cpath d='M14,48 L42,48 L56,72 L42,96 L14,96 L0,72 Z'/%3e%3c/g%3e%3c/pattern%3e%3c/defs%3e%3crect width='100%25' height='100%25' fill='url(%23honeycomb)'/%3e%3c/svg%3e");
  z-index: -1;
  opacity: 0.6;
}
button {
  cursor: pointer;
  outline: none;
  border: none;
  background: #eee;
  font-size: 1rem;
  padding: 0.7em 1.2em;
  border-radius: 6px;
  touch-action: manipulation;
  transition: all 0.2s ease;
}
button:hover {
  filter: brightness(0.95);
  transform: scale(1.02);
}
button:active {
  transform: scale(0.97);
}

.title-bar {
  width: 100%;
  background: #ffeb3b;
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.title-bar h1 {
  font-size: 1.3rem;
  color: #333;
  margin: 0;
}

/* Site Navigation Styles */
.site-navigation {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-link {
  color: #333;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-link:hover {
  background: rgba(0,0,0,0.05);
}

.nav-link.active {
  background: rgba(0,0,0,0.1);
  font-weight: 700;
}

/* Date Selector Styles */
.date-selector-wrapper {
  margin-left: 0.5rem;
}

.date-selector {
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.date-selector:hover {
  background: rgba(255,255,255,1);
  border-color: rgba(0,0,0,0.2);
}

.date-selector:focus {
  outline: none;
  border-color: rgba(0,0,0,0.3);
  box-shadow: 0 0 0 2px rgba(255,235,59,0.3);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .title-bar {
    flex-direction: column;
    padding: 0.5rem;
  }
  
  .title-bar h1 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .site-navigation {
    width: 100%;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-link {
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
  }
  
  .date-selector-wrapper {
    margin-left: 0;
    width: 100%;
    margin-top: 0.5rem;
  }
  
  .date-selector {
    width: 100%;
    font-size: 0.9rem;
  }
}

/* Share Modal Styles */
.share-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  animation: fadeIn 0.2s ease-out;
}

.share-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-modal {
  background: white;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease-out;
}

.share-header {
  background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
  padding: 1.5rem;
  text-align: center;
  border-radius: 16px 16px 0 0;
}

.share-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.share-subtitle {
  color: #666;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.share-content {
  padding: 1.5rem;
}

.share-preview {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-family: 'Courier New', monospace;
  white-space: pre-wrap;
  text-align: center;
}

.share-stats {
  display: flex;
  justify-content: space-around;
  margin: 1rem 0;
  text-align: center;
}

.share-stat {
  flex: 1;
}

.share-stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  display: block;
}

.share-stat-label {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
}

.share-buttons {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  width: 100%;
}

.share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.share-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-button.share-primary {
  background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
  color: #333;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.share-emoji {
  font-size: 1.25rem;
}

.share-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.share-close:hover {
  background: rgba(0, 0, 0, 0.2);
}

.copy-feedback {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #28a745;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  z-index: 1001;
}

.copy-feedback.show {
  transform: translateX(-50%) translateY(0);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Share Button (floating) */
.floating-share-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
  color: #333;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
}

.floating-share-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.floating-share-button.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4);
  }
  100% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .share-button.share-primary {
    min-width: auto;
    width: 100%;
    max-width: 280px;
  }
  
  .floating-share-button {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
  }
}

/* Content Section Styles */
.page-container {
  max-width: 1200px;
  width: 100%;
  padding: 2rem;
  margin: 0 auto;
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0 3rem;
  text-align: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.content-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-section h1 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.content-section h2 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin: 2rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #ffeb3b;
}

.content-section h3 {
  color: #34495e;
  font-size: 1.4rem;
  margin: 1.5rem 0 1rem;
}

.content-section p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.content-section ul, .content-section ol {
  margin: 1rem 0 1.5rem;
  padding-left: 1.5rem;
}

.content-section li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* Call to Action Button */
.cta-button, .cta-buttons {
  margin: 2rem 0;
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.play-button {
  display: inline-block;
  background: #ffeb3b;
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  background: #fff000;
}

.play-button.secondary {
  background: #e67e22;
  color: white;
  font-size: 1.1rem;
}

.play-button.secondary:hover {
  background: #d35400;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-email {
  color: #e67e22;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-email:hover {
  text-decoration: underline;
}

.contact-form-section {
  margin: 3rem 0;
  background: rgba(249, 249, 249, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e67e22;
}

.submit-button {
  background: #e67e22;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-button:hover {
  background: #d35400;
}

.form-note {
  margin-top: 1rem;
  padding: 1rem;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 6px;
  font-size: 0.9rem;
}

.faq-section {
  margin: 3rem 0;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item h3 {
  color: #e67e22;
  margin-bottom: 0.5rem;
}

.last-updated {
  color: #666;
  font-style: italic;
  margin-bottom: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.feature-card.highlighted {
  background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
  border: 2px solid #e67e22;
  transform: scale(1.02);
}

.feature-link {
  display: inline-block;
  margin-top: 1rem;
  color: #e67e22;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
}

.feature-link:hover {
  color: #d35400;
  text-decoration: underline;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffeb3b;
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #2c3e50;
}

/* Ad Container */
.ad-container {
  width: 100%;
  max-width: 100%;
  margin: 1.5rem auto;
  overflow: hidden;
  text-align: center;
  clear: both;
}

@media (min-width: 1024px) {
  .ad-container {
    max-width: 728px;
  }
}

@media (max-width: 480px) {
  .ad-container {
    margin: 1rem auto;
  }
}

/* Footer */
footer {
  background: rgba(248, 249, 250, 0.9);
  backdrop-filter: blur(10px);
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1rem 0;
}

.footer-links a {
  color: #666;
  text-decoration: none;
}

.footer-links a:hover {
  color: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .title-bar {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .site-navigation {
    margin-top: 0.5rem;
    justify-content: center;
  }
  
  .content-section {
    padding: 1.5rem;
    margin: 1rem auto;
  }
  
  .content-section h1 {
    font-size: 2rem;
  }
  
  .content-section h2 {
    font-size: 1.6rem;
  }
  
  .hero-section {
    margin: 1rem 0 2rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .page-container {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .title-bar {
    padding: 0.6rem;
  }
  
  .content-section {
    padding: 1rem;
  }
  
  .play-button {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

/* Enhanced About Page Styles */

/* Header and Subtitle */
.subtitle {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.5;
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.highlight-item h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem;
}

.highlight-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Game Rules Container */
.game-rules-container {
  background: rgba(248, 249, 250, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.rules-section:last-child {
  margin-bottom: 0;
}

.rules-section h3 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.styled-list {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #ffeb3b;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.styled-list li {
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
}

/* Scoring Grid */
.scoring-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.score-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
}

.score-item.pangram {
  background: linear-gradient(135deg, #ffeb3b 0%, #f9d71c 100%);
  border-color: #f9d71c;
  font-weight: bold;
  color: #2c3e50;
}

/* Benefits Container */
.benefits-container {
  margin: 2rem 0;
}

.benefit-category {
  background: rgba(248, 249, 250, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.benefit-category h3 {
  text-align: center;
  color: #2c3e50;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #ffeb3b;
}

.feature-card h4 {
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem;
  color: #2c3e50;
}

/* FAQ Container */
.faq-container {
  margin: 2rem 0;
}

.faq-item {
  background: rgba(248, 249, 250, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid #ffeb3b;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-item h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-item p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Testimonials */
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.testimonial {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: #ffeb3b;
  position: absolute;
  top: -10px;
  left: 15px;
  font-family: serif;
}

.testimonial-content {
  margin-top: 1rem;
}

.testimonial-content p {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: bold;
  color: #2c3e50;
  font-size: 0.9rem;
}

/* Final CTA Section */
.final-cta-text {
  font-size: 1.2rem;
  text-align: center;
  color: #2c3e50;
  margin: 2rem 0;
  line-height: 1.6;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.cta-feature {
  background: rgba(248, 249, 250, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: #2c3e50;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Enhanced CTA Button */
.cta-button-container {
  text-align: center;
  margin: 3rem 0;
}

.play-button.primary {
  background: linear-gradient(135deg, #ffeb3b 0%, #f9d71c 100%);
  color: #2c3e50;
  font-size: 1.3rem;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(249, 215, 28, 0.3);
  transition: all 0.3s ease;
  border: 2px solid #f9d71c;
}

.play-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 215, 28, 0.4);
  background: linear-gradient(135deg, #f9d71c 0%, #ffeb3b 100%);
}

.cta-subtext {
  color: #666;
  font-size: 0.9rem;
  margin-top: 1rem;
  font-style: italic;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .scoring-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-container {
    grid-template-columns: 1fr;
  }
  
  .cta-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .game-rules-container,
  .benefit-category,
  .faq-item {
    padding: 1rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .scoring-grid,
  .cta-features {
    grid-template-columns: 1fr;
  }
  
  .play-button.primary {
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }
  
  .highlight-icon {
    font-size: 2rem;
  }
}

/* Hero Icon Display for About Page */
.hero-icon-display {
  text-align: center;
  margin: 2rem 0;
}

.hero-bee {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

.hero-honeycomb {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-width: 300px;
  margin: 0 auto;
}

.hex {
  background: linear-gradient(135deg, #ffeb3b 0%, #f9d71c 100%);
  color: #2c3e50;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.hex:hover {
  transform: scale(1.1);
}

.hex.center {
  background: linear-gradient(135deg, #f9d71c 0%, #ff9800 100%);
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Games Showcase for More Games Page */
.games-showcase {
  text-align: center;
  margin: 2rem 0;
}

.game-icons {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: 0.5rem;
  animation: float 3s ease-in-out infinite;
}

.games-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
  margin-top: 1rem;
}

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

/* Mobile responsive for hero sections */
@media (max-width: 768px) {
  .hero-bee {
    font-size: 3rem;
  }
  
  .hex {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .game-icons {
    font-size: 2.5rem;
    letter-spacing: 0.3rem;
  }
}

@media (max-width: 480px) {
  .hero-bee {
    font-size: 2.5rem;
  }
  
  .hex {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .game-icons {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }
  
  .games-subtitle {
    font-size: 1rem;
  }
}

/* User Profile & Personalization System */
.wordbee-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: linear-gradient(135deg, #ffeb3b 0%, #f9d71c 100%);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 400px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.wordbee-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.notification-content h4 {
  margin: 0 0 0.25rem 0;
  color: #2c3e50;
  font-size: 1.1rem;
}

.notification-content p {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
}

.achievement-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  transform: translateY(100px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  max-width: 320px;
  border: 3px solid #ffeb3b;
}

.achievement-popup.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.achievement-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.achievement-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.achievement-text h4 {
  margin: 0 0 0.25rem 0;
  color: #2c3e50;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.achievement-text p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.achievement-text p strong {
  color: #2c3e50;
  font-size: 1.1rem;
}

/* Stats Dashboard Button */
.stats-dashboard-button {
  position: fixed;
  bottom: 80px;
  right: 2rem;
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
}

.stats-dashboard-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}