/* PlayFunZone - Modern Social Gaming Styles */

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
}

html {
  font-size: 14px;
}

/* Navigation Styles */
.playfunzone-navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.playfunzone-navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.playfunzone-navbar-brand {
  display: flex;
  align-items: center;
}

.playfunzone-navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

.playfunzone-logo-img {
  margin-right: 0.75rem;
  border-radius: 8px;
}

.playfunzone-logo-text {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.playfunzone-navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.playfunzone-nav-link {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.playfunzone-nav-link:hover,
.playfunzone-nav-link.active {
  color: white;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.playfunzone-cta-button {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.playfunzone-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,107,107,0.4);
  color: white;
}

.playfunzone-navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.playfunzone-toggle-line {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Old hero styles removed - replaced with new banner design */

/* Section Styles */
.playfunzone-section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #2c3e50;
  position: relative;
}

.playfunzone-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 2px;
}

/* Features Section */
.playfunzone-features {
  padding: 80px 0;
  background: white;
}

.playfunzone-features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.playfunzone-feature-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid #f1f3f4;
}

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

.playfunzone-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.playfunzone-feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.playfunzone-feature-description {
  color: #6c757d;
  line-height: 1.6;
}

/* How It Works Section */
.playfunzone-how-it-works {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.playfunzone-how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.playfunzone-step-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  transition: all 0.3s ease;
}

.playfunzone-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Step numbers removed - replaced with cleaner design */

.playfunzone-step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
}

.playfunzone-step-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.playfunzone-step-description {
  color: #6c757d;
  line-height: 1.6;
}

/* Featured Games Section */
.playfunzone-featured-games {
  padding: 80px 0;
  background: white;
}

.playfunzone-featured-games-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.playfunzone-games-showcase {
  margin-bottom: 3rem;
}

.playfunzone-game-preview {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.playfunzone-game-title {
  padding: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin: 0;
}

.playfunzone-game-frame {
  position: relative;
  width: 100%;
  height: 500px;
  background: #f8f9fa;
}

.playfunzone-game-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.playfunzone-game-description {
  padding: 2rem;
  color: #6c757d;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.playfunzone-games-cta {
  text-align: center;
}

.playfunzone-games-button {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}

.playfunzone-games-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102,126,234,0.4);
  color: white;
}

/* Gaming Tips Section */
.playfunzone-gaming-tips {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.playfunzone-gaming-tips-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.playfunzone-tip-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.playfunzone-tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.playfunzone-tip-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.playfunzone-tip-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.playfunzone-tip-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.playfunzone-tip-link:hover {
  color: #764ba2;
}

/* Footer Styles */
.playfunzone-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 60px 0 30px;
}

.playfunzone-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.playfunzone-footer-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ecf0f1;
}

.playfunzone-footer-address,
.playfunzone-footer-phone,
.playfunzone-footer-email {
  margin-bottom: 0.5rem;
  color: #bdc3c7;
}

.playfunzone-footer-email a {
  color: #3498db;
  text-decoration: none;
}

.playfunzone-footer-email a:hover {
  color: #2980b9;
}

.playfunzone-footer-links {
  list-style: none;
}

.playfunzone-footer-links li {
  margin-bottom: 0.75rem;
}

.playfunzone-footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.playfunzone-footer-links a:hover {
  color: #3498db;
}

.playfunzone-footer-disclaimer {
  border-top: 1px solid #34495e;
  padding-top: 2rem;
}

.playfunzone-disclaimer-content {
  text-align: center;
  color: #bdc3c7;
  line-height: 1.6;
}

.playfunzone-disclaimer-content p {
  margin-bottom: 1rem;
}

.playfunzone-disclaimer-content a {
  color: #3498db;
  text-decoration: none;
}

.playfunzone-disclaimer-content a:hover {
  color: #2980b9;
}

.playfunzone-copyright {
  margin-top: 1.5rem;
  font-weight: 600;
  color: #ecf0f1;
}

/* Cookie Popup */
.playfunzone-cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 10000;
  max-width: 400px;
  margin: 0 auto;
}

.playfunzone-cookie-content {
  padding: 1.5rem;
}

.playfunzone-cookie-content p {
  margin-bottom: 1rem;
  color: #2c3e50;
  line-height: 1.5;
}

.playfunzone-cookie-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.playfunzone-cookie-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.playfunzone-cookie-accept {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.playfunzone-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}

/* Games Page Styles */
.playfunzone-games-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 120px 0 60px;
  color: white;
  text-align: center;
}

.playfunzone-games-hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.playfunzone-games-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.playfunzone-games-hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.playfunzone-games-hero-alert {
  background: rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(10px);
}

.playfunzone-games-grid {
  padding: 80px 0;
  background: white;
}

.playfunzone-games-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.playfunzone-games-categories {
  margin-bottom: 3rem;
}

.playfunzone-category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.playfunzone-category-tab {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  color: #6c757d;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.playfunzone-category-tab:hover,
.playfunzone-category-tab.active {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border-color: #667eea;
  transform: translateY(-2px);
}

.playfunzone-games-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.playfunzone-game-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid #f1f3f4;
}

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

.playfunzone-game-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f1f3f4;
}

.playfunzone-game-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.playfunzone-game-badge {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.playfunzone-game-preview {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.playfunzone-game-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.playfunzone-game-card:hover .playfunzone-game-thumbnail {
  transform: scale(1.05);
}

.playfunzone-game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.playfunzone-game-card:hover .playfunzone-game-overlay {
  opacity: 1;
}

.playfunzone-play-button {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.playfunzone-play-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}

.playfunzone-game-info {
  padding: 1.5rem;
}

.playfunzone-game-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.playfunzone-game-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.playfunzone-game-feature {
  background: #f8f9fa;
  color: #6c757d;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Game Modal Styles */
.playfunzone-game-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 2rem;
}

.playfunzone-game-modal-content {
  background: white;
  border-radius: 20px;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.playfunzone-game-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #f1f3f4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.playfunzone-game-modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
}

.playfunzone-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6c757d;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.playfunzone-modal-close:hover {
  background: #f8f9fa;
  color: #2c3e50;
}

.playfunzone-game-modal-body {
  padding: 0;
}

#playfunzone-game-frame-container {
  width: 100%;
  height: 70vh;
  min-height: 500px;
}

#playfunzone-game-frame {
  width: 100%;
  height: 100%;
  border: none;
}

/* About Page Styles */
.playfunzone-about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 120px 0 60px;
  color: white;
  text-align: center;
}

.playfunzone-about-hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.playfunzone-about-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.playfunzone-about-hero-description {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.playfunzone-about-content {
  padding: 80px 0;
  background: white;
}

.playfunzone-about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.playfunzone-about-section {
  margin-bottom: 80px;
}

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

.playfunzone-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.playfunzone-about-text {
  order: 1;
}

.playfunzone-about-visual {
  order: 2;
  display: flex;
  justify-content: center;
}

.playfunzone-about-grid:nth-child(even) .playfunzone-about-text {
  order: 2;
}

.playfunzone-about-grid:nth-child(even) .playfunzone-about-visual {
  order: 1;
}

.playfunzone-about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #2c3e50;
  position: relative;
}

.playfunzone-about-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 2px;
}

.playfunzone-about-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.playfunzone-about-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  box-shadow: 0 10px 30px rgba(102,126,234,0.3);
}

.playfunzone-about-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.playfunzone-about-link:hover {
  color: #764ba2;
}

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

.playfunzone-offering-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid #f1f3f4;
}

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

.playfunzone-offering-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.playfunzone-offering-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.playfunzone-offering-description {
  color: #6c757d;
  line-height: 1.6;
}

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

.playfunzone-social-step {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  transition: all 0.3s ease;
}

.playfunzone-social-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Step numbers removed - replaced with cleaner design */

.playfunzone-step-content {
  margin-top: 1rem;
}

.playfunzone-step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.playfunzone-step-content p {
  color: #6c757d;
  line-height: 1.6;
}

.playfunzone-why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.playfunzone-why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.playfunzone-why-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.playfunzone-why-icon {
  color: #28a745;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.playfunzone-why-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.playfunzone-why-content p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

.playfunzone-about-cta {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  text-align: center;
}

.playfunzone-about-cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.playfunzone-about-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.playfunzone-about-cta-description {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.playfunzone-about-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.playfunzone-about-cta-primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}

.playfunzone-about-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102,126,234,0.4);
  color: white;
}

.playfunzone-about-cta-secondary {
  background: rgba(255,255,255,0.9);
  color: #667eea;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #667eea;
}

.playfunzone-about-cta-secondary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

/* Contact Page Styles */
.playfunzone-contact-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 120px 0 60px;
  color: white;
  text-align: center;
}

.playfunzone-contact-hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.playfunzone-contact-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.playfunzone-contact-hero-description {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.playfunzone-contact-content {
  padding: 80px 0;
  background: white;
}

.playfunzone-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.playfunzone-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.playfunzone-contact-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.playfunzone-contact-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 2rem;
}

.playfunzone-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.playfunzone-contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.playfunzone-contact-method:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.playfunzone-contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.playfunzone-contact-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.playfunzone-contact-details p {
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.playfunzone-contact-details small {
  color: #adb5bd;
  font-size: 0.9rem;
}

.playfunzone-contact-details a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.playfunzone-contact-details a:hover {
  color: #764ba2;
}

.playfunzone-contact-alert {
  background: rgba(102,126,234,0.1);
  border: 1px solid rgba(102,126,234,0.2);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.playfunzone-contact-alert i {
  color: #667eea;
  font-size: 1.2rem;
  margin-top: 0.25rem;
}

.playfunzone-contact-alert h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.playfunzone-contact-alert p {
  color: #6c757d;
  line-height: 1.5;
  margin: 0;
}

/* Contact Form Styles */
.playfunzone-contact-form-section {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 20px;
}

.playfunzone-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.playfunzone-form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.playfunzone-form-input,
.playfunzone-form-select,
.playfunzone-form-textarea {
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.playfunzone-form-input:focus,
.playfunzone-form-select:focus,
.playfunzone-form-textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.playfunzone-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.playfunzone-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6c757d;
  margin-bottom: 1rem;
}

.playfunzone-form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 16px;
  height: 16px;
  accent-color: #667eea;
  flex-shrink: 0;
  cursor: pointer;
}

.playfunzone-form-checkbox label {
  cursor: pointer;
  flex: 1;
}

.playfunzone-form-checkbox a {
  color: #667eea;
  text-decoration: none;
}

.playfunzone-form-checkbox a:hover {
  color: #764ba2;
}

.playfunzone-form-submit {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}

.playfunzone-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102,126,234,0.4);
}

.playfunzone-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* FAQ Section Styles */
.playfunzone-faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.playfunzone-faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.playfunzone-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.playfunzone-faq-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.playfunzone-faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.playfunzone-faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.playfunzone-faq-answer {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

.playfunzone-faq-cta {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.playfunzone-faq-cta p {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.playfunzone-faq-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.playfunzone-faq-link:hover {
  color: #764ba2;
}

/* Blog Page Styles */
.playfunzone-blog-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 120px 0 60px;
  color: white;
  text-align: center;
}

.playfunzone-blog-hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.playfunzone-blog-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.playfunzone-blog-hero-description {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.playfunzone-blog-content {
  padding: 80px 0;
  background: white;
}

.playfunzone-blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Featured Article */
.playfunzone-featured-article {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 3rem;
}

.playfunzone-featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.playfunzone-featured-badge {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
  width: fit-content;
}

.playfunzone-featured-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  line-height: 1.3;
}

.playfunzone-featured-excerpt {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 2rem;
}

.playfunzone-featured-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.playfunzone-meta-date,
.playfunzone-meta-category {
  font-size: 0.9rem;
  color: #adb5bd;
}

.playfunzone-meta-category {
  background: rgba(102,126,234,0.1);
  color: #667eea;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-weight: 500;
}

.playfunzone-featured-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.playfunzone-featured-link:hover {
  color: #764ba2;
}

/* Blog Categories */
.playfunzone-blog-categories {
  margin-bottom: 3rem;
}

.playfunzone-categories-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  text-align: center;
}

.playfunzone-categories-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.playfunzone-category-btn {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  color: #6c757d;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.playfunzone-category-btn:hover,
.playfunzone-category-btn.active {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border-color: #667eea;
  transform: translateY(-2px);
}

/* Blog Articles Grid */
.playfunzone-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.playfunzone-blog-article {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid #f1f3f4;
  padding: 2rem;
}

.playfunzone-blog-article:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.playfunzone-article-content {
  padding: 0;
}

.playfunzone-article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.playfunzone-article-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
  line-height: 1.4;
}

.playfunzone-article-excerpt {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.playfunzone-article-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.playfunzone-article-link:hover {
  color: #764ba2;
}

/* Newsletter Section */
.playfunzone-newsletter {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.playfunzone-newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.playfunzone-newsletter-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.playfunzone-newsletter-description {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.playfunzone-newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto 1rem;
}

.playfunzone-newsletter-input {
  flex: 1;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.playfunzone-newsletter-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.playfunzone-newsletter-btn {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.playfunzone-newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}

.playfunzone-newsletter-note {
  color: #adb5bd;
  font-size: 0.9rem;
}

/* Legal Pages Styles */
.playfunzone-legal-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 120px 0 60px;
  color: white;
  text-align: center;
}

.playfunzone-legal-hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.playfunzone-legal-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.playfunzone-legal-hero-description {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.playfunzone-legal-hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
}

.playfunzone-legal-date {
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.playfunzone-legal-content {
  padding: 80px 0;
  background: white;
}

.playfunzone-legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.playfunzone-legal-section {
  margin-bottom: 3rem;
}

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

.playfunzone-legal-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  position: relative;
}

.playfunzone-legal-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 2px;
}

.playfunzone-legal-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: #2c3e50;
}

.playfunzone-legal-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #6c757d;
  margin-bottom: 1rem;
}

.playfunzone-legal-section ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.playfunzone-legal-section li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.playfunzone-legal-section strong {
  color: #2c3e50;
  font-weight: 600;
}

.playfunzone-contact-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 1rem;
}

.playfunzone-contact-info p {
  margin-bottom: 0.5rem;
}

.playfunzone-contact-info a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.playfunzone-contact-info a:hover {
  color: #764ba2;
}

.playfunzone-legal-notice {
  background: rgba(102,126,234,0.1);
  border: 2px solid rgba(102,126,234,0.2);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 1rem;
}

.playfunzone-legal-notice p {
  margin-bottom: 1rem;
}

.playfunzone-legal-notice p:last-child {
  margin-bottom: 0;
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
  .playfunzone-footer-content {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    text-align: center;
  }
  
  .playfunzone-footer-section {
    max-width: 300px;
  }
  
  .playfunzone-banner-games-container {
    text-align: center;
    padding: 0 1rem;
  }
  
  .playfunzone-banner-games-preview {
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 600px;
  }
  
  .playfunzone-game-preview-item {
    flex: 0 0 auto;
  }
  
  .playfunzone-preview-icon {
    width: 120px;
    height: 120px;
  }
  
  /* Games page - 2 cards per row on tablets */
  .playfunzone-games-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .playfunzone-game-card {
    max-width: none;
  }
}

/* iPad Mini and smaller tablets */
@media (max-width: 768px) and (min-width: 481px) {
  .playfunzone-banner-games-container {
    text-align: center;
    padding: 0 1rem;
  }
  
  .playfunzone-banner-games-preview {
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 500px;
  }
  
  .playfunzone-game-preview-item {
    flex: 0 0 auto;
  }
  
  .playfunzone-preview-icon {
    width: 100px;
    height: 100px;
  }
  
  /* Games page - 2 cards per row on iPad Mini */
  .playfunzone-games-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .playfunzone-game-card {
    max-width: none;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .playfunzone-main-banner {
    padding: 4rem 0 2rem 0;
    align-items: center;
    margin-top: 0; /* Убираем отступ */
  }
  
  .playfunzone-banner-content {
    padding-top: 70px; /* Отступ для навигации */
    min-height: 100vh;
  }
  
  .playfunzone-banner-badge {
    margin-top: 0;
  }
  
  .playfunzone-navbar-toggle {
    display: block;
    z-index: 1001;
  }
  
  .playfunzone-navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 0.5rem;
  }
  
  .playfunzone-navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .playfunzone-navbar-menu .playfunzone-nav-link,
  .playfunzone-navbar-menu .playfunzone-cta-button {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    text-align: left;
    border-radius: 8px;
    margin-bottom: 0.25rem;
    white-space: nowrap;
  }
  
  .playfunzone-navbar-menu .playfunzone-cta-button {
    margin-top: 0.5rem;
    text-align: center;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    font-weight: 600;
  }
  
  .playfunzone-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .playfunzone-hero-title {
    font-size: 2.5rem;
  }
  
  .playfunzone-hero-buttons {
    justify-content: center;
  }
  
  .playfunzone-features-grid,
  .playfunzone-steps-grid,
  .playfunzone-tips-grid {
    grid-template-columns: 1fr;
  }
  
  .playfunzone-footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .playfunzone-cookie-popup {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .playfunzone-cookie-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .playfunzone-games-hero-title {
    font-size: 2.5rem;
  }
  
  
  .playfunzone-category-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .playfunzone-game-modal {
    padding: 1rem;
  }
  
  #playfunzone-game-frame-container {
    height: 60vh;
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .playfunzone-navbar {
    padding: 0.5rem 0;
  }
  
  .playfunzone-navbar-container {
    padding: 0 1rem;
  }
  
  .playfunzone-logo-text {
    font-size: 1.2rem;
  }
  
  .playfunzone-banner-badge {
    margin-top: 0;
  }
  
  .playfunzone-main-banner {
    padding: 3rem 0 2rem 0;
    margin-top: 0; /* Убираем отступ */
  }
  
  .playfunzone-banner-content {
    padding-top: 60px; /* Отступ для навигации */
    min-height: 100vh;
  }
  
  /* Games page - center cards properly on small screens */
  .playfunzone-games-showcase {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
  }
  
  .playfunzone-game-card {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
  
  .playfunzone-hero-title {
    font-size: 2rem;
  }
  
  .playfunzone-section-title {
    font-size: 2rem;
  }
  
  .playfunzone-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .playfunzone-hero-cta,
  .playfunzone-hero-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .playfunzone-games-hero-title {
    font-size: 2rem;
  }
  
  .playfunzone-game-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  /* About page mobile styles */
  .playfunzone-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .playfunzone-about-text {
    order: 1;
  }
  
  .playfunzone-about-visual {
    order: 2;
  }
  
  .playfunzone-about-grid:nth-child(even) .playfunzone-about-text {
    order: 1;
  }
  
  .playfunzone-about-grid:nth-child(even) .playfunzone-about-visual {
    order: 2;
  }
  
  .playfunzone-about-hero-title,
  .playfunzone-contact-hero-title,
  .playfunzone-blog-hero-title {
    font-size: 2.5rem;
  }
  
  /* Contact page mobile styles */
  .playfunzone-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .playfunzone-newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Blog page mobile styles */
  .playfunzone-featured-article {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .playfunzone-featured-content {
    padding: 2rem;
  }
  
  .playfunzone-featured-title {
    font-size: 1.5rem;
  }
  
  .playfunzone-blog-grid {
    grid-template-columns: 1fr;
  }
  
  .playfunzone-categories-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .playfunzone-newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
  
  .playfunzone-navbar-menu {
    min-width: 180px;
    max-width: 250px;
  }
  
  /* Legal pages mobile styles */
  .playfunzone-legal-hero-title {
    font-size: 2.5rem;
  }
  
  .playfunzone-legal-section h2 {
    font-size: 1.8rem;
  }
  
  .playfunzone-legal-section h3 {
    font-size: 1.3rem;
  }
  
  .playfunzone-legal-section p,
  .playfunzone-legal-section li {
    font-size: 1rem;
  }
} 

/* ===== HOMEPAGE STYLES ===== */

/* Main Banner Section */
.playfunzone-main-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
  padding: 6rem 0 4rem 0;
  margin-top: 0; /* Убираем отступ, чтобы убрать белую полосу */
}

.playfunzone-banner-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/playfunzone-banner-bg.jpg') center/cover;
  z-index: 1;
}

.playfunzone-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  z-index: 2;
}

.playfunzone-banner-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  /* padding-top: 40px; */
}

.playfunzone-banner-text {
  color: white;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.playfunzone-banner-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.playfunzone-banner-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: white;
}

.playfunzone-banner-emphasis {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.playfunzone-banner-subtitle {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.playfunzone-banner-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.playfunzone-banner-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.playfunzone-banner-feature:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.playfunzone-banner-feature i {
  color: #ffd700;
  font-size: 1.2rem;
}

.playfunzone-banner-feature span {
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.playfunzone-banner-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  border-left: 4px solid #ffd700;
  border-right: 4px solid #ffd700;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.playfunzone-banner-notice i {
  color: #ffd700;
  font-size: 1.2rem;
}

.playfunzone-banner-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.playfunzone-banner-stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
  transition: all 0.3s ease;
}

.playfunzone-banner-stat:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.playfunzone-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffd700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.playfunzone-stat-label {
  display: block;
  font-size: 1rem;
  color: white;
  font-weight: 600;
}

.playfunzone-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.playfunzone-banner-primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #333;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.playfunzone-banner-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  color: #333;
}

.playfunzone-banner-secondary {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.playfunzone-banner-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.playfunzone-banner-games-section {
  background: white;
  padding: 4rem 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.playfunzone-banner-games-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.playfunzone-banner-games-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 100%;
}

.playfunzone-game-preview-item {
  background: #764ba2e6;
  border-radius: 25px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid #f8f9fa;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.playfunzone-game-preview-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  border-color: #667eea;
  text-decoration: none;
}

.playfunzone-preview-icon {
  width: 150px;
  height: 150px;
  border-radius: 20px;
  object-fit: cover;
}

.playfunzone-banner-games-text {
  text-align: center;
  margin-top: 2rem;
  padding: 0 1rem;
}

.playfunzone-banner-games-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.playfunzone-banner-games-description {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.playfunzone-banner-games-cta {
  display: inline-block;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.playfunzone-banner-games-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  color: white;
  text-decoration: none;
}

/* Quick Access Section */
.playfunzone-quick-access {
  padding: 4rem 0;
  background: #f8f9fa;
}

.playfunzone-quick-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.playfunzone-quick-item {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.playfunzone-quick-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.playfunzone-quick-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.playfunzone-quick-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.playfunzone-quick-desc {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.playfunzone-quick-link {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.playfunzone-quick-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
  color: white;
}

/* Platform Benefits Section */
.playfunzone-benefits {
  padding: 4rem 0;
  background: white;
}

.playfunzone-benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.playfunzone-benefits-header {
  text-align: center;
  margin-bottom: 4rem;
}

.playfunzone-benefits-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 1rem;
}

.playfunzone-benefits-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.playfunzone-benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.playfunzone-benefits-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.playfunzone-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.playfunzone-benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.playfunzone-benefit-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.playfunzone-benefit-content p {
  color: #666;
  line-height: 1.6;
}

.playfunzone-benefits-visual {
  display: flex;
  justify-content: center;
}

.playfunzone-benefits-image {
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.playfunzone-benefits-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Getting Started Section */
.playfunzone-getting-started {
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.playfunzone-started-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.playfunzone-started-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
}

.playfunzone-started-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.playfunzone-started-step {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.playfunzone-started-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.playfunzone-started-step-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.playfunzone-started-step-desc {
  opacity: 0.9;
  line-height: 1.6;
}

.playfunzone-started-arrow {
  font-size: 2rem;
  opacity: 0.7;
  margin: 0 1rem;
}

/* Featured Game Showcase */
.playfunzone-showcase {
  padding: 4rem 0;
  background: #f8f9fa;
}

.playfunzone-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.playfunzone-showcase-header {
  text-align: center;
  margin-bottom: 3rem;
}

.playfunzone-showcase-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 1rem;
}

.playfunzone-showcase-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.playfunzone-showcase-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.playfunzone-showcase-game {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.playfunzone-game-frame {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.playfunzone-game-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.playfunzone-showcase-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.playfunzone-showcase-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.playfunzone-showcase-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.playfunzone-showcase-feature i {
  color: #667eea;
  font-size: 1.2rem;
  width: 20px;
}

.playfunzone-showcase-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.playfunzone-showcase-button {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.playfunzone-showcase-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
  color: white;
}

.playfunzone-showcase-link {
  background: transparent;
  color: #667eea;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  border: 2px solid #667eea;
  transition: all 0.3s ease;
}

.playfunzone-showcase-link:hover {
  background: #667eea;
  color: white;
}

/* Community Section */
.playfunzone-community {
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.playfunzone-community-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.playfunzone-community-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.playfunzone-community-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.playfunzone-community-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.playfunzone-community-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.playfunzone-community-feature i {
  font-size: 2rem;
  color: #ffd700;
}

.playfunzone-community-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.playfunzone-community-button {
  background: #ffd700;
  color: #333;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.playfunzone-community-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  color: #333;
}

.playfunzone-community-link {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.playfunzone-community-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

/* Mobile Responsiveness for Homepage */
@media (max-width: 768px) {
  .playfunzone-banner-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .playfunzone-banner-title {
    font-size: 3rem;
  }
  
  .playfunzone-banner-features {
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .playfunzone-banner-feature {
    padding: 0.5rem 1rem;
  }
  
  .playfunzone-banner-feature span {
    font-size: 0.9rem;
  }
  
  .playfunzone-banner-stats {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .playfunzone-banner-stat {
    padding: 1rem;
    min-width: 100px;
  }
  
  .playfunzone-stat-number {
    font-size: 2rem;
  }
  
  .playfunzone-banner-actions {
    justify-content: center;
  }
  
  .playfunzone-banner-games-preview {
    max-width: 400px;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  
  .playfunzone-banner-games-container {
    text-align: center;
  }
  
  .playfunzone-banner-games-section {
    padding: 3rem 0;
  }
  
  .playfunzone-quick-access {
    padding: 3rem 0;
  }
  
  .playfunzone-benefits {
    padding: 3rem 0;
  }
  
  .playfunzone-getting-started {
    padding: 3rem 0;
  }
  
  .playfunzone-showcase {
    padding: 3rem 0;
  }
  
  .playfunzone-community {
    padding: 3rem 0;
  }
  
  .playfunzone-benefits-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .playfunzone-started-steps {
    flex-direction: column;
    gap: 2rem;
  }
  
  .playfunzone-started-arrow {
    transform: rotate(90deg);
    margin: 0;
  }
  
  .playfunzone-showcase-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .playfunzone-community-features {
    gap: 2rem;
  }
  
  .playfunzone-community-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .playfunzone-banner-title {
    font-size: 2.5rem;
  }
  
  .playfunzone-banner-features {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .playfunzone-banner-feature {
    padding: 0.5rem 0.75rem;
  }
  
  .playfunzone-banner-feature span {
    font-size: 0.8rem;
  }
  
  .playfunzone-banner-stats {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .playfunzone-banner-stat {
    padding: 0.75rem;
    min-width: 80px;
  }
  
  .playfunzone-stat-number {
    font-size: 1.5rem;
  }
  
  .playfunzone-stat-label {
    font-size: 0.9rem;
  }
  
  .playfunzone-banner-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .playfunzone-banner-games-preview {
    max-width: 300px;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  
  .playfunzone-banner-games-container {
    text-align: center;
  }
  
  .playfunzone-preview-icon {
    width: 100px;
    height: 100px;
  }
  
  .playfunzone-banner-games-title {
    font-size: 1.5rem;
  }
  
  .playfunzone-banner-games-description {
    font-size: 1rem;
  }
  
  .playfunzone-banner-games-section {
    padding: 2rem 0;
  }
  
  .playfunzone-quick-access {
    padding: 2rem 0;
  }
  
  .playfunzone-benefits {
    padding: 2rem 0;
  }
  
  .playfunzone-getting-started {
    padding: 2rem 0;
  }
  
  .playfunzone-showcase {
    padding: 2rem 0;
  }
  
  .playfunzone-community {
    padding: 2rem 0;
  }
  
  .playfunzone-quick-grid {
    grid-template-columns: 1fr;
  }
  
  .playfunzone-benefit-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .playfunzone-benefit-icon {
    margin: 0 auto 1rem auto;
  }
  
  .playfunzone-blog-article {
    padding: 1.5rem;
  }
}

/* Extra small screens (iPhone SE and similar) */
@media (max-width: 375px) {
  .playfunzone-games-showcase {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    padding: 0 0.5rem;
  }
  
  .playfunzone-game-card {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
  
  .playfunzone-games-container {
    padding: 0 1rem;
  }
  
  .playfunzone-game-header {
    padding: 1rem;
  }
  
  .playfunzone-game-info {
    padding: 1rem;
  }
  
  .playfunzone-game-name {
    font-size: 1.2rem;
  }
} 