/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

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

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

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

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
  50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid #ffd700;
}

.age-badge {
  background: #ff4757;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  animation: pulse 2s infinite;
}

.social-gaming-banner {
  flex: 1;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.highlight {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  animation: glow 2s infinite;
}

.user-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.coin-balance {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: #ffd700;
}

.coin-icon {
  animation: spin 3s linear infinite;
}

.username {
  font-weight: 500;
}

.login-btn, .logout-btn {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a2e;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login-btn:hover, .logout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.5rem;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: bounce 2s infinite;
}

.tagline {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: -5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link:hover, .nav-link.active {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a2e;
  transform: translateY(-2px);
}

/* Main Content */
main {
  animation: fadeIn 1s ease-in;
}

/* Hero Section */
.hero {
  position: relative;
  color: white;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 52, 96, 0.9)),
              linear-gradient(45deg, #667eea 0%, #764ba2 50%, #ffd700 100%);
  z-index: 1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: shimmer 3s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1s ease-in 0.5s both;
  background: linear-gradient(45deg, #fff, #ffd700, #fff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 0;
  color: #ffd700;
  animation: fadeIn 1s ease-in 1s both;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-in 1.5s both;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px 25px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  min-width: 200px;
}

.feature:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  animation: bounce 2s infinite;
}

.feature-text {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Games Sections */
.free-games, .premium-games {
  padding: 80px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  margin: 40px 0;
  border-radius: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.free-games h3, .premium-games h3 {
  font-size: 2.5rem;
  color: #1a1a2e;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.game-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.game-frame {
  width: 414px;
  height: 504px;
  margin: 0 auto 20px;
  border: 4px solid #ffd700;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.game-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: white;
  text-align: center;
  padding: 20px;
  position: relative;
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.game-info {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  margin-top: auto;
  margin-bottom: 20px;
}

.game-info h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.game-info p {
  font-size: 1rem;
  opacity: 0.9;
  color: white;
}

.lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 3;
}

.lock-icon {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: bounce 2s infinite;
}

.game-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.game-close-btn:hover {
  background: rgba(255, 0, 0, 0.8);
  transform: scale(1.1);
}

.spin-btn {
  background: linear-gradient(45deg, #ff6b6b, #ee5a52);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}

.spin-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.spin-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.locked .spin-btn {
  background: #666;
}

/* Offers Section */
.offers {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
}

.offers h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto 0;
}

.offer-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(45deg, #ff6b6b, #ee5a52);
}

.offer-header {
  margin-bottom: 20px;
}

.offer-header h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #1a1a2e;
}

.offer-value {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b6b;
  animation: pulse 2s infinite;
}

.claim-btn {
  background: linear-gradient(45deg, #ff6b6b, #ee5a52);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  margin-top: 20px;
}

.claim-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.claim-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Leaderboard */
.leaderboard {
  padding: 80px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  margin: 40px 0;
  border-radius: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.leaderboard h3 {
  font-size: 2.5rem;
  color: #1a1a2e;
  margin-bottom: 10px;
  font-weight: 700;
}

.leaderboard-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.leaderboard-header {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  background: linear-gradient(45deg, #1a1a2e, #16213e);
  color: white;
  padding: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leaderboard-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  padding: 20px;
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease;
}

.leaderboard-row:hover {
  background: #f8f9fa;
}

.leaderboard-row:last-child {
  border-bottom: none;
}

.rank {
  font-weight: 600;
  font-size: 1.1rem;
}

.player {
  font-weight: 500;
}

.coins {
  color: #ffd700;
  font-weight: 600;
}

/* About Section */
.about {
  padding: 80px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  margin: 40px 0;
  border-radius: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about h3 {
  font-size: 2.5rem;
  color: #1a1a2e;
  margin-bottom: 30px;
  font-weight: 700;
}

.about-content {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #555;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #ffd700;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffd700;
}

.footer-disclaimer {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  margin: 40px 0 20px;
  border-radius: 15px;
  text-align: center;
  position: relative;
}

.footer-disclaimer p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.age-badge-footer {
  background: #ff4757;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
  animation: pulse 2s infinite;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #ccc;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: fadeIn 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.terms-content {
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header h2 {
  color: #1a1a2e;
  margin-bottom: 10px;
}

.social-gaming-text {
  color: #ffd700;
  font-weight: 600;
}

.age-check {
  margin: 30px 0;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
  background-color: #ffd700;
  border-color: #ffd700;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #1a1a2e;
  font-weight: bold;
}

.cta-button {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a2e;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}

.cta-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.cta-button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #aaa;
  transition: color 0.3s ease;
}

.close:hover {
  color: #000;
}

#loginForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#loginForm input {
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

#loginForm input:focus {
  outline: none;
  border-color: #ffd700;
}

.modal-footer {
  text-align: center;
  margin-top: 20px;
  color: #666;
}

.modal-footer a {
  color: #ffd700;
  text-decoration: none;
}

.terms-text {
  text-align: left;
  line-height: 1.6;
}

.terms-text h3 {
  color: #1a1a2e;
  margin: 30px 0 15px;
  font-size: 1.3rem;
}

.terms-text p, .terms-text li {
  margin-bottom: 15px;
  color: #555;
}

.terms-text ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

/* Page Content Styles */
.page-content {
  padding: 80px 20px;
  min-height: 80vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.container h1 {
  font-size: 3rem;
  color: #1a1a2e;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-bottom: 50px;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-info h3 {
  color: #1a1a2e;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.contact-methods {
  margin-top: 30px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2rem;
  width: 60px;
  text-align: center;
}

.contact-method h4 {
  color: #1a1a2e;
  margin-bottom: 5px;
}

.contact-method p {
  color: #666;
  font-weight: 600;
}

.contact-method small {
  color: #999;
}

.contact-form-section h3 {
  color: #1a1a2e;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

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

.faq-section {
  margin-top: 60px;
}

.faq-section h3 {
  color: #1a1a2e;
  margin-bottom: 30px;
  font-size: 2rem;
  text-align: center;
}

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

.faq-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid #ffd700;
}

.faq-item h4 {
  color: #1a1a2e;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

/* FAQ Page Styles */
.faq-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.faq-category {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 20px;
  border-top: 5px solid #ffd700;
}

.faq-category h3 {
  color: #1a1a2e;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.faq-category .faq-item {
  background: white;
  margin-bottom: 20px;
  border-left: 3px solid #ff6b6b;
}

.faq-category .faq-item:last-child {
  margin-bottom: 0;
}

.help-section {
  text-align: center;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  padding: 40px;
  border-radius: 20px;
  color: #1a1a2e;
}

.help-section h3 {
  margin-bottom: 15px;
  font-size: 2rem;
}

.help-section p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* Help Page Styles */
.help-search {
  display: flex;
  max-width: 600px;
  margin: 0 auto 60px;
  gap: 10px;
}

.search-input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid #ddd;
  border-radius: 25px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #ffd700;
}

.search-btn {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border: none;
  padding: 15px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.search-btn:hover {
  transform: scale(1.05);
}

.help-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.help-category {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.help-category:hover {
  transform: translateY(-5px);
}

.help-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
}

.help-category h3 {
  color: #1a1a2e;
  margin-bottom: 15px;
  font-size: 1.5rem;
  text-align: center;
}

.help-category p {
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}

.help-category ul {
  list-style: none;
}

.help-category ul li {
  margin-bottom: 10px;
}

.help-category ul li a {
  color: #ff6b6b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.help-category ul li a:hover {
  color: #ffd700;
}

.help-guides {
  margin-bottom: 60px;
}

.help-guides h3 {
  color: #1a1a2e;
  margin-bottom: 30px;
  font-size: 2rem;
  text-align: center;
}

.guide-item {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  border-left: 5px solid #ffd700;
}

.guide-item h4 {
  color: #1a1a2e;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.guide-content p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.6;
}

.guide-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.guide-content li {
  margin-bottom: 10px;
  color: #555;
}

.help-contact {
  text-align: center;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  padding: 40px;
  border-radius: 20px;
  color: white;
}

.help-contact h3 {
  margin-bottom: 15px;
  font-size: 2rem;
}

.help-contact p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.help-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.help-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Terms, Privacy, Responsible Pages */
.terms-content,
.privacy-content,
.responsible-content {
  text-align: left;
  line-height: 1.8;
}

.terms-section,
.privacy-section,
.responsible-section {
  margin-bottom: 40px;
}

.terms-section h3,
.privacy-section h3,
.responsible-section h3 {
  color: #1a1a2e;
  margin-bottom: 20px;
  font-size: 1.5rem;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 10px;
}

.terms-section h4,
.privacy-section h4,
.responsible-section h4 {
  color: #333;
  margin: 20px 0 10px;
  font-size: 1.2rem;
}

.terms-section p,
.privacy-section p,
.responsible-section p {
  margin-bottom: 15px;
  color: #555;
}

.terms-section ul,
.privacy-section ul,
.responsible-section ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.terms-section li,
.privacy-section li,
.responsible-section li {
  margin-bottom: 8px;
  color: #555;
}

.terms-footer,
.privacy-footer,
.responsible-footer {
  text-align: center;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  padding: 30px;
  border-radius: 15px;
  color: #1a1a2e;
  margin-top: 40px;
}

.age-reminder {
  background: #ff4757;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
  margin-top: 15px;
  animation: pulse 2s infinite;
}

/* Responsible Play Specific Styles */
.guidelines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.guideline-item {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.guideline-item:hover {
  transform: translateY(-5px);
}

.guideline-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.guideline-item h4 {
  color: #1a1a2e;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.currency-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.currency-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #ffd700;
}

.currency-item h4 {
  color: #1a1a2e;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.support-option {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.support-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.support-option h4 {
  color: #1a1a2e;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.support-link {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #ee5a52);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  transition: transform 0.3s ease;
}

.support-link:hover {
  transform: translateY(-2px);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.resource-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  border-top: 4px solid #ff6b6b;
}

.resource-item h4 {
  color: #1a1a2e;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.commitment-statement {
  background: rgba(255, 255, 255, 0.2);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.commitment-statement h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .social-gaming-banner {
    font-size: 14px;
  }
  
  .nav {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .hero {
    padding: 60px 20px;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 20px;
  }
  
  .feature {
    min-width: auto;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .game-frame {
    width: 100%;
    max-width: 414px;
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .modal-content {
    margin: 10% auto;
    padding: 20px;
  }
  
  .container {
    padding: 30px 20px;
  }
  
  .container h1 {
    font-size: 2.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .faq-categories,
  .help-categories {
    grid-template-columns: 1fr;
  }
  
  .contact-options {
    flex-direction: column;
    align-items: center;
  }
  
  .guidelines-grid,
  .currency-info,
  .support-options,
  .resources-grid {
    grid-template-columns: 1fr;
  }
}