/* Main website styles - Combined and optimized from styles.css and main.css */

/* ===== Base Styles ===== */
:root {
  --primary-color: #00b464;
  --secondary-color: #008a4c;
  --background-color: #ffffff;
  --text-color: #333333;
  --accent-color: #ffd700;
  --card-bg: rgba(255, 255, 255, 0.95);
  --gradient-dark: linear-gradient(135deg, rgba(255,255,255,0.97), rgba(220,255,235,0.97));
  --transition-default: all 0.3s ease;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--background-color), #e0ffe9);
  font-family: Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

/* Enhanced Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Semantic class names */
.section-hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('IMG_4492.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.section-interactive {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(220,255,235,0.95));
}

/* Enhanced form styles */
.form-poll {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255,255,255,0.9);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-poll__option {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}

.form-poll__radio {
  margin-right: 1rem;
}

.form-poll__label {
  font-size: 1.1em;
  cursor: pointer;
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
  .section-hero {
    background-attachment: scroll;
  }
  
  .grid-container {
    padding: 1rem;
  }
  
  .form-poll {
    padding: 1rem;
  }
}

/* Trivia game styles */
.trivia-game {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(255,255,255,0.95);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.trivia-question {
  margin-bottom: 2rem;
}

.trivia-options {
  display: grid;
  gap: 1rem;
}

.trivia-option {
  padding: 1rem;
  background: rgba(0,255,150,0.1);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.trivia-option:hover {
  background: rgba(0,255,150,0.2);
  transform: translateY(-2px);
}

.trivia-option.correct {
  background: rgba(0,200,100,0.2);
  border-color: var(--success-color);
}

.trivia-option.incorrect {
  background: rgba(255,0,0,0.1);
  border-color: var(--error-color);
}

/* Loading states */
.loading {
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  color: var(--primary-color);
}

.loading::before {
  content: '';
  width: 30px;
  height: 30px;
  border: 3px solid var(--primary-color);
  border-top-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -15px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Reset .hero class styles to avoid conflicts */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('IMG_4492.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

/* Enhanced Header styles */
.main-header {
  background: var(--gradient-dark);
  padding: 0.5rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  padding: 0.3rem;
  background: rgba(255,255,255,0.98);
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}

.club-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0,255,150,0.2);
  transition: transform 0.3s ease;
}

.club-logo:hover {
  transform: scale(1.05);
}

.main-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 2rem;
  padding: 0.7rem;
}

.main-nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.portal-access {
  padding: 0.6rem 1.2rem !important;
  background: var(--primary-color);
  border-radius: 25px;
  color: white !important;
  box-shadow: 0 4px 15px rgba(0,180,100,0.2);
  transition: all 0.3s ease !important;
}

.portal-access:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,180,100,0.3);
}

/* Enhanced Hero section */
.hero-content {
  max-width: 800px;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease;
}

.hero-content h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: backwards;
}

.hero-content p {
  font-size: 1.2rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: backwards;
}

/* Enhanced Section styles */
.section {
  padding: 6rem 2rem;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
  transition: transform 0.3s ease;
  cursor: default;
  animation: titleWave 4s ease-in-out infinite;
  background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0,180,100,0.2);
}

.section h2:hover {
  transform: scale(1.15);
  text-shadow: 4px 4px 8px rgba(0,180,100,0.4);
}

@keyframes titleWave {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  25% {
    transform: scale(1.08) translateY(-5px);
  }
  50% {
    transform: scale(1) translateY(0);
  }
  75% {
    transform: scale(1.08) translateY(5px);
  }
}

/* Enhanced Teams section */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--gradient-dark);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,180,100,0.2);
}

.team-players {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.player-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(0,255,150,0.05));
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.player-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(0,255,150,0.1));
}

/* Enhanced News section */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--gradient-dark);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,180,100,0.2);
}

.news-content {
  padding: 2rem;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  margin-top: 1rem;
  position: relative;
  padding-bottom: 2px;
}

.read-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: scaleX(1);
}

/* Enhanced Join section */
.join-section {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
              url('IMG_4492.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
}

.join-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,180,100,0.2);
}

.join-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0,180,100,0.3);
}

/* Enhanced Footer styles */
.main-footer {
  background: linear-gradient(0deg, #111, var(--background-color));
  padding: 4rem 2rem;
}

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

.footer-section h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.social-link:hover {
  color: var(--primary-color);
  opacity: 1;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.7;
}

/* Add styles for player profiles */
.player-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow-y: auto;
  backdrop-filter: blur(5px);
}

.player-profile {
  max-width: 800px;
  margin: 40px auto;
  background: linear-gradient(145deg, var(--card-bg), #ffffff);
  border-radius: 20px;
  overflow: hidden;
  animation: modalFadeIn 0.3s ease;
}

.profile-header {
  position: relative;
  padding: 40px;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
              var(--primary-color);
  color: white;
  text-align: center;
}

.player-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 72px;
  font-weight: bold;
  opacity: 0.5;
}

.player-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 4px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(0,255,150,0.3);
  overflow: hidden;
  background: #f0f0f0;
}

.player-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-info {
  padding: 30px;
}

.player-name {
  font-size: 2em;
  margin-bottom: 10px;
}

.player-nickname {
  font-size: 1.2em;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.player-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
  padding: 15px;
  background: rgba(0,255,150,0.1);
  border-radius: 10px;
}

.stat-label {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 5px;
}

.stat-value {
  font-size: 1.2em;
  color: var(--primary-color);
  font-weight: bold;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 1;
}

/* Add styles for the team roster view */
.roster-view {
  display: none;
  padding: 30px;
  background: linear-gradient(145deg, var(--card-bg), #ffffff);
  border-radius: 20px;
  margin-top: 20px;
}

.roster-grid {
  max-height: 500px;
  overflow-y: auto;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
}

.roster-grid::-webkit-scrollbar {
  width: 8px;
}

.roster-grid::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
}

.roster-grid::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.player-tile {
  display: grid;
  grid-template-columns: 60px 1fr 100px;
  gap: 15px;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(0,255,150,0.02));
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: center;
}

.player-tile:hover {
  transform: translateY(-2px);
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(0,255,150,0.05));
}

.player-number {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
}

.player-info {
  text-align: left;
}

.player-position {
  color: #666;
  font-size: 0.9em;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* App Download Section */
.app-download-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,40,20,0.9));
  color: white;
  text-align: center;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: 25px;
  background: rgba(255,255,255,0.1);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.store-button:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.app-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.feature:hover {
  opacity: 1;
  transform: translateY(-5px);
}

/* Interactive Section */
.interactive-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(220,255,235,0.95));
}

.interactive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.promo-card,
.game-card,
.poll-card {
  background: var(--gradient-dark);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
  animation: pulseGlow 3s infinite;
}

.promo-card:hover,
.game-card:hover,
.poll-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.promo-button,
.game-button {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 20px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.promo-button:hover,
.game-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.poll-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.poll-option {
  padding: 10px;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  background: transparent;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.poll-option:hover {
  background: var(--primary-color);
  color: white;
}

/* Responsive design */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 1rem;
  }
  
  .app-features {
    flex-direction: column;
    gap: 20px;
  }
  
  .store-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .interactive-grid {
    grid-template-columns: 1fr;
  }
}

/* Add animation for the interactive elements */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0,255,150,0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(0,255,150,0.4);
  }
}

/* Add new Mascot Section styles */
.mascot-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--background-color), #e0ffe9);
  position: relative;
  overflow: hidden;
}

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

.mascot-images {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  perspective: 1000px;
}

.mascot-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.mascot-img:hover {
  transform: scale(1.05) rotateY(10deg);
}

.mascot-story {
  background: linear-gradient(145deg, rgba(0,0,0,0.8), rgba(0,40,20,0.9));
  color: white;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.mascot-story h3 {
  color: var(--accent-color);
  font-size: 2em;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.story-content {
  font-size: 1.1em;
  line-height: 1.6;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 20px;
}

.story-content::-webkit-scrollbar {
  width: 8px;
}

.story-content::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

.story-content::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.mascot-contest {
  background: linear-gradient(145deg, var(--card-bg), #ffffff);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  text-align: center;
}

.contest-form {
  max-width: 600px;
  margin: 30px auto;
}

.contest-form .form-group {
  margin-bottom: 20px;
}

.contest-form input,
.contest-form textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  background: rgba(255,255,255,0.9);
  transition: all 0.3s ease;
}

.contest-form textarea {
  height: 120px;
  resize: none;
}

.contest-button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contest-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,180,100,0.3);
}

.mascot-products {
  padding: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.product-card {
  background: linear-gradient(145deg, var(--card-bg), #ffffff);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.product-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 15px;
  background-color: rgba(0,255,150,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,255,150,0.2), rgba(0,100,50,0.1));
  mix-blend-mode: overlay;
}

.product-card h4 {
  color: var(--primary-color);
  font-size: 1.2em;
  margin-bottom: 5px;
}

.product-card p {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 15px;
}

.buy-button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,180,100,0.3);
}

@media (max-width: 768px) {
  .mascot-images {
    flex-direction: column;
    align-items: center;
  }
  
  .mascot-img {
    width: 100%;
    max-width: 300px;
  }
  
  .mascot-story,
  .mascot-contest,
  .product-card {
    padding: 20px;
  }
}

/* Add animation for mascot section elements */
.mascot-section .mascot-img,
.mascot-section .mascot-story,
.mascot-section .mascot-contest,
.mascot-section .product-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.mascot-section .mascot-img:nth-child(2) {
  animation-delay: 0.2s;
}

.mascot-section .mascot-img:nth-child(3) {
  animation-delay: 0.4s;
}

.mascot-section .mascot-story {
  animation-delay: 0.6s;
}

.mascot-section .mascot-contest {
  animation-delay: 0.8s;
}

.mascot-section .product-card {
  animation-delay: 1s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add new gallery styles */
.gallery-section {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(220,255,235,0.95));
  padding: 6rem 2rem;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 8px 20px;
  border: 2px solid var(--primary-color);
  background: transparent;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary-color);
}

.gallery-filter.active,
.gallery-filter:hover {
  background: var(--primary-color);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.gallery-item {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.media-wrapper {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}

.gallery-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item-info {
  padding: 20px;
}

.social-actions {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-actions button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  border: none;
  background: rgba(0,0,0,0.05);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-actions button:hover {
  background: rgba(0,0,0,0.1);
}

.social-actions svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.gallery-upload {
  text-align: center;
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(145deg, var(--card-bg), #ffffff);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.upload-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.upload-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  background: var(--primary-color);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.contest-section {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(145deg, var(--card-bg), #ffffff);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contest-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

/* History Section Enhancements */
.history-content {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(220,255,235,0.95));
  border-radius: 20px;
  padding: 40px;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.1),
    0 0 20px rgba(0,255,150,0.2);
  transform: translateY(0);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.text-content {
  position: relative;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  text-align: justify;
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: default;
  margin-bottom: 30px;
}

.text-content:hover h2 {
  animation: titleWave 2s ease-in-out infinite;
}

.text-content h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0,180,100,0.2);
  transition: all 0.3s ease;
  animation: titleGlow 3s ease-in-out infinite;
}

.text-content p {
  margin-bottom: 1.2rem;
  position: relative;
  transition: transform 0.3s ease;
}

.text-content p:hover {
  transform: scale(1.08);
  color: var(--primary-color);
  text-shadow: 0 0 1px rgba(0,0,0,0.1);
  z-index: 2;
  background: rgba(255,255,255,0.5);
  border-radius: 8px;
}

@keyframes titleGlow {
  0%, 100% {
    text-shadow: 2px 2px 4px rgba(0,180,100,0.2);
    transform: scale(1) translateY(0);
  }
  50% {
    text-shadow: 2px 2px 8px rgba(0,180,100,0.4);
    transform: scale(1.05) translateY(-2px);
  }
}

/* Hymn Player Styles */
.hymn-player {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(220,255,235,0.95));
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.versions-carousel {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  max-height: 400px;
  overflow-y: auto;
  padding: 10px;
}

.versions-carousel::-webkit-scrollbar {
  width: 8px;
}

.versions-carousel::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
}

.versions-carousel::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.version-card {
  background: linear-gradient(145deg, #ffffff, #f5fff9);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.version-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.version-info {
  margin-bottom: 15px;
}

.version-info h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 1.2em;
}

.version-info p {
  color: #666;
  font-size: 0.9em;
}

.audio-player {
  background: rgba(0,0,0,0.05);
  border-radius: 10px;
  padding: 15px;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.play-btn {
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.05);
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(0,0,0,0.1);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--primary-color);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.time {
  font-size: 0.8em;
  color: #666;
  min-width: 45px;
  text-align: right;
}

.reactions {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.reaction-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reaction-btn:hover {
  color: var(--primary-color);
  transform: scale(1.05);
}

.reaction-btn span {
  font-size: 0.9em;
}

/* Add responsive styles */
@media (max-width: 768px) {
  .hymn-player {
    padding: 20px;
  }

  .version-card {
    padding: 15px;
  }

  .player-controls {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--gradient-dark);
    padding: 80px 20px;
    transition: var(--transition-default);
    z-index: 900;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .main-nav li {
    margin: 15px 0;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Add vendor prefixes for better browser support */
.diamond-icon {
  -webkit-filter: drop-shadow(0 0 10px rgba(0,255,150,0.2));
          filter: drop-shadow(0 0 10px rgba(0,255,150,0.2));
}

.myth-section .diamond-icon {
  filter: drop-shadow(0 0 10px rgba(0,255,150,0.3));
}

/* Add fallbacks for modern CSS features */
:root {
  --primary-color: #00b464;
  --secondary-color: #008a4c;
  background-color: #ffffff; /* Fallback */
  background-color: var(--background-color);
}

/* Add @supports queries for modern features */
@supports (backdrop-filter: blur(5px)) {
  .store-button {
    backdrop-filter: blur(5px);
  }
} 

@supports not (backdrop-filter: blur(5px)) {
  .store-button {
    background: rgba(255,255,255,0.9);
  }
}

/* Add print styles */
@media print {
  .app-download-section,
  .interactive-section,
  .gallery-upload,
  .social-actions {
    display: none;
  }
}

/* Add new styles for interpretations */
.myth-interpretations {
  margin-top: 40px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
}

.interpretation-cards {
  display: grid;
  gap: 20px;
  margin: 20px 0;
}

.interpretation-card {
  background: linear-gradient(145deg, var(--card-bg), #ffffff);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.interpretation-card .author {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 10px;
}

.interpretation-card .date {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 15px;
}

.share-interpretation-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-interpretation-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.interpretation-form {
  background: linear-gradient(145deg, var(--card-bg), #ffffff);
  padding: 30px;
  border-radius: 15px;
  margin-top: 20px;
}

/* Enhanced hymn player styles */
.hymn-player .player-controls.global {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  background: rgba(0,0,0,0.05);
  border-radius: 10px;
  margin-bottom: 20px;
}

.continuous-play {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.continuous-play.active {
  background: var(--primary-color);
  color: white;
}

.volume-control {
  flex: 1;
  display: flex;
  align-items: center;
}

.volume-slider {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  background: rgba(0,0,0,0.1);
  border-radius: 2px;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  background: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
}

.download-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.download-btn:hover {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.vote-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.vote-btn:hover,
.vote-btn.voted {
  color: var(--secondary-color);
  transform: scale(1.1);
}

/* Add responsive styles */
@media (max-width: 768px) {
  .interpretation-form {
    padding: 20px;
  }
  
  .hymn-player .player-controls.global {
    flex-direction: column;
    gap: 10px;
  }
}

/* Add new star animation styles */
@keyframes starGlow {
  0%, 100% {
    opacity: 0.8;
    filter: drop-shadow(0 0 3px rgba(255,255,255,0.6));
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.9));
    transform: scale(1.1) rotate(5deg);
  }
}

@keyframes diamondShine {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 10px rgba(0,255,150,0.3));
    transform: scale(1);
  }
  50% {
    filter: brightness(1.4) drop-shadow(0 0 25px rgba(0,255,150,0.6));
    transform: scale(1.02);
  }
}

.star {
  transform-origin: center;
  animation: starGlow 2s ease-in-out infinite;
}

.stars g:nth-child(2) {
  animation-delay: 0.3s;
  transform-origin: 60% 60%;
}

.stars g:nth-child(3) {
  animation-delay: 0.6s;
  transform-origin: 40% 60%;
}

.myth-section .star {
  transform-origin: center;
  animation: starGlow 2s ease-in-out infinite;
}

.myth-section .stars g:nth-child(2) {
  animation-delay: 0.3s;
  transform-origin: 60% 60%;
}

.myth-section .stars g:nth-child(3) {
  animation-delay: 0.6s;
  transform-origin: 40% 60%;
}

.diamond {
  transform-origin: center;
  animation: diamondShine 4s ease-in-out infinite;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,180,100,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,180,100,0.3);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* Enhanced app icon styles */
.app-icon {
  display: block;
  text-decoration: none;
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  padding: 30px;
  background: linear-gradient(145deg, #222, #333);
  border-radius: 40px;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.5),
    0 0 20px rgba(0,255,200,0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.diamond-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(0,255,150,0.2));
}

/* Enhance star animations */
.star {
  transform-origin: center;
  animation: starGlow 2s ease-in-out infinite;
}

.stars g:nth-child(2) {
  animation-delay: 0.3s;
  transform-origin: 60% 60%;
}

.stars g:nth-child(3) {
  animation-delay: 0.6s;
  transform-origin: 40% 60%;
}

@keyframes starGlow {
  0%, 100% {
    opacity: 0.8;
    filter: drop-shadow(0 0 3px rgba(255,255,255,0.6));
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.9));
    transform: scale(1.1) rotate(5deg);
  }
}

@keyframes diamondShine {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 10px rgba(0,255,150,0.3));
    transform: scale(1);
  }
  50% {
    filter: brightness(1.4) drop-shadow(0 0 25px rgba(0,255,150,0.6));
    transform: scale(1.02);
  }
}

.app-icon:hover {
  transform: scale(1.05);
  box-shadow: 
    0 15px 40px rgba(0,0,0,0.6),
    0 0 30px rgba(0,255,200,0.3);
}

.app-icon:hover .diamond {
  animation: diamondShine 2s ease-in-out infinite;
}

.app-icon:hover .star {
  animation: starGlow 1s ease-in-out infinite;
}

.app-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(0,255,150,0.1) 50%,
    transparent 100%
  );
  animation: shimmer 3s infinite linear;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.myth-section {
  padding: 3rem 2rem;
  margin: 2rem 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(220,255,235,0.95));
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.myth-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0,180,100,0.2);
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGlow 3s ease-in-out infinite;
  transition: transform 0.3s ease;
  cursor: default;
}

.myth-title:hover {
  transform: scale(1.05);
  text-shadow: 4px 4px 8px rgba(0,180,100,0.4);
}

.myth-title .diamond-icon {
  width: 50px; 
  height: 50px;
  order: -1;
}

.myth-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.myth-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  text-align: justify;
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: default;
}

.myth-text p {
  margin-bottom: 1.2rem;
  position: relative;
  transition: transform 0.3s ease;
}

.myth-text p:hover {
  transform: scale(1.08);
  color: var(--primary-color);
  text-shadow: 0 0 1px rgba(0,0,0,0.1);
  z-index: 2;
}

.magnifier-guide {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9rem;
  margin: 1rem 0;
  opacity: 0.7;
}

.myth-video {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(0,0,0,0.05);
  border-radius: 10px;
}

.myth-video h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.video-upload {
  width: 100%;
  padding: 1rem;
  background: white;
  border: 2px dashed var(--primary-color);
  border-radius: 8px;
  cursor: pointer;
}

.video-preview {
  margin-top: 1rem;
  min-height: 200px;
  background: rgba(0,0,0,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.myth-interactions {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.interaction-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.interaction-buttons button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.interaction-buttons button:hover {
  color: var(--primary-color);
  transform: scale(1.05);
}

.interaction-buttons svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.comment-form {
  margin-bottom: 2rem;
}

.comment-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  resize: vertical;
  margin-bottom: 1rem;
}

.comment-form button {
  padding: 0.8rem 2rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.comment-form button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

@keyframes titleGlow {
  0%, 100% {
    text-shadow: 2px 2px 4px rgba(0,180,100,0.2);
  }
  50% {
    text-shadow: 2px 2px 8px rgba(0,180,100,0.4);
  }
}

@media (max-width: 768px) {
  .myth-title {
    font-size: 1.8rem;
  }
  
  .myth-title .diamond-icon {
    width: 40px;
    height: 40px;
  }
  
  .myth-text {
    font-size: 1rem;
    padding: 1rem;
  }
  
  .interaction-buttons {
    justify-content: center;
  }
}

.history-content {
  max-width: 800px;
  margin: 0 auto;
}

.text-content {
  position: relative;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  text-align: justify;
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: default;
  margin-bottom: 30px;
}

.text-content p {
  margin-bottom: 1.2rem;
  position: relative;
  transition: transform 0.3s ease;
}

.text-content p:hover {
  transform: scale(1.08);
  color: var(--primary-color);
  text-shadow: 0 0 1px rgba(0,0,0,0.1);
  z-index: 2;
}

.hymn-section {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(220,255,235,0.95));
  border-radius: 20px;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.1),
    0 0 20px rgba(0,255,150,0.2);
  transform: translateY(0);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hymn-section:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 40px rgba(0,0,0,0.15),
    0 0 30px rgba(0,255,150,0.3);
}

.hymn-section h3 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,180,100,0.2);
  font-family: 'Cinzel', serif;
  background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGlow 3s ease-in-out infinite;
  transition: transform 0.3s ease;
  cursor: default;
  text-align: center;
}

.hymn-section h3:hover {
  transform: scale(1.05);
}

.hymn-content {
  padding: 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.5);
}

.verse, .chorus {
  margin-bottom: 20px;
  padding: 15px;
  transition: transform 0.3s ease;
}

.verse:hover, .chorus:hover {
  transform: scale(1.08);
  color: var(--primary-color);
  text-shadow: 0 0 1px rgba(0,0,0,0.1);
  z-index: 2;
  background: rgba(255,255,255,0.5);
  border-radius: 8px;
}

.verse p, .chorus p {
  margin-bottom: 0.5rem;
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
}

.chorus {
  font-weight: bold;
  color: var(--primary-color);
}

.hymn-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(0,255,150,0.2), 
    transparent);
}

.hymn-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.15' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.1;
  pointer-events: none;
  mix-blend-mode: overlay;
}

@media (max-width: 768px) {
  .hymn-section {
    margin: 20px;
    padding: 20px;
  }
  
  .hymn-section h3 {
    font-size: 1.8rem;
  }
  
  .verse p, .chorus p {
    font-size: 1rem;
  }
}

.myth-video {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(0,0,0,0.05);
  border-radius: 10px;
}

.video-player {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video-element {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-player:hover .video-controls {
  opacity: 1;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  margin-bottom: 10px;
}

.progress {
  height: 100%;
  background: var(--primary-color);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.controls-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.play-pause,
.mute-btn,
.fullscreen {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.play-pause:hover,
.mute-btn:hover,
.fullscreen:hover {
  background: rgba(255,255,255,0.1);
  transform: scale(1.1);
}

.time-display {
  color: white;
  font-size: 0.9em;
  min-width: 100px;
  text-align: center;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.volume-slider {
  width: 80px;
  height: 4px;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
}

/* Add responsive styles */
@media (max-width: 768px) {
  .controls-buttons {
    gap: 10px;
  }
  
  .volume-slider {
    width: 60px;
  }
  
  .time-display {
    min-width: 80px;
    font-size: 0.8em;
  }
}