/* GameCircleHub.org - Polish Gaming Platform Styles */

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

/* Typography with responsive font sizing */
h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

/* Fix Bootstrap's font-size issue */
html {
  font-size: 16px !important;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin-bottom: 0;
}

/* Responsive font sizing */
@media (max-width: 768px) {
  html {
    font-size: 15px !important;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px !important;
  }
}

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

/* Container */
.gamecirclehub-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Navigation */
.gamecirclehub-navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.gamecirclehub-navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

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

.gamecirclehub-logo img {
  height: 55px;
  margin-right: 10px;
}

.gamecirclehub-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.gamecirclehub-menu-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.gamecirclehub-menu-link:hover,
.gamecirclehub-menu-link.active {
  color: #ffd700;
  background-color: rgba(255, 255, 255, 0.1);
}

.gamecirclehub-cta {
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gamecirclehub-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
  color: white;
}

/* Mobile Menu Toggle */
.gamecirclehub-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.gamecirclehub-toggle-bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.gamecirclehub-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

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

.gamecirclehub-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.gamecirclehub-hero-title {
  margin-bottom: 1.5rem;
  color: white;
}

.gamecirclehub-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.gamecirclehub-hero-cta {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gamecirclehub-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  color: white;
}

/* Sections */
.gamecirclehub-section {
  padding: 4rem 0;
}

.gamecirclehub-section-sm {
  padding: 2rem 0;
}

/* Cards */
.gamecirclehub-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

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

/* Game Cards */
.gamecirclehub-game-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

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

.gamecirclehub-game-image {
  position: relative;
  overflow: hidden;
}

.gamecirclehub-game-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gamecirclehub-game-card:hover .gamecirclehub-game-image img {
  transform: scale(1.05);
}

.gamecirclehub-game-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.gamecirclehub-game-content {
  padding: 1.5rem;
}

.gamecirclehub-game-title {
  margin-bottom: 0.75rem;
  color: #333;
}

.gamecirclehub-game-desc {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* Limit to 3 lines */
  overflow: hidden;
  text-overflow: ellipsis;
}

.gamecirclehub-game-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #555;
  align-items: center;
  flex-wrap: wrap;
}

.gamecirclehub-game-stats span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  padding: 0.5rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(102, 126, 234, 0.2);
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.gamecirclehub-game-stats span:hover {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.15) 0%,
    rgba(118, 75, 162, 0.15) 100%
  );
  border-color: rgba(102, 126, 234, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.gamecirclehub-game-stats span i {
  color: #667eea;
  font-size: 0.9rem;
}

.gamecirclehub-game-stats span:first-child i {
  color: #28a745;
}

.gamecirclehub-game-stats span:last-child i {
  color: #ffc107;
}

.gamecirclehub-game-play {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  display: inline-block;
}

.gamecirclehub-game-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

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

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

/* Feature Cards */
.gamecirclehub-feature-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gamecirclehub-feature-card:hover {
  transform: translateY(-5px);
}

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

.gamecirclehub-feature-title {
  margin-bottom: 1rem;
  color: #333;
}

.gamecirclehub-feature-desc {
  color: #666;
  line-height: 1.6;
}

.gamecirclehub-section-black-text {
  color: #fff !important;
}

/* Buttons */
.gamecirclehub-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.gamecirclehub-btn-primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
}

.gamecirclehub-btn-secondary {
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  color: white;
}

.gamecirclehub-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
}

/* Forms */
.gamecirclehub-form-group {
  margin-bottom: 1.5rem;
}

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

.gamecirclehub-form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.gamecirclehub-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Contact Form */
.gamecirclehub-contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.gamecirclehub-footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0 1rem;
}

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

.gamecirclehub-footer-section h3 {
  margin-bottom: 1rem;
  color: #ffd700;
}

.gamecirclehub-footer-section p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

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

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

.gamecirclehub-disclaimer {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.gamecirclehub-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bdc3c7;
}

/* Cookie Popup */
.gamecirclehub-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);
  padding: 1.5rem;
  z-index: 10000;
  display: none;
  max-width: 500px;
  margin: 0 auto;
}

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

.gamecirclehub-cookie-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
}

.gamecirclehub-cookie-actions {
  display: flex;
  gap: 0.5rem;
}

.gamecirclehub-cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gamecirclehub-cookie-accept {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
}

.gamecirclehub-cookie-decline {
  background: #e9ecef;
  color: #666;
}

.gamecirclehub-cookie-btn:hover {
  transform: translateY(-1px);
}

/* Alerts */
.gamecirclehub-alert {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-left: 4px solid;
}

.gamecirclehub-alert-info {
  background: #e3f2fd;
  border-color: #2196f3;
  color: #0d47a1;
}

.gamecirclehub-alert-success {
  background: #e8f5e8;
  border-color: #4caf50;
  color: #1b5e20;
}

.gamecirclehub-alert-error {
  background: #ffebee;
  border-color: #f44336;
  color: #c62828;
}

/* Stats */
.gamecirclehub-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.gamecirclehub-stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gamecirclehub-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #667eea;
  display: block;
  margin-bottom: 0.5rem;
}

.gamecirclehub-stat-label {
  color: #666;
  font-weight: 500;
}

/* Utility Classes */
.gamecirclehub-text-center {
  text-align: center;
}

.gamecirclehub-mb-5 {
  margin-bottom: 3rem;
}

.gamecirclehub-mt-5 {
  margin-top: 3rem;
}

.gamecirclehub-mt-4 {
  margin-top: 2rem;
}

/* Hide close button on desktop */
.gamecirclehub-menu-close {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gamecirclehub-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .gamecirclehub-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
  }

  .gamecirclehub-toggle.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
  }

  .gamecirclehub-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(102, 126, 234, 0.98) 0%,
      rgba(118, 75, 162, 0.98) 100%
    );
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow-y: auto;
  }

  .gamecirclehub-menu.active {
    transform: translateX(0);
  }

  .gamecirclehub-menu li {
    margin: 1rem 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
  }

  .gamecirclehub-menu.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .gamecirclehub-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .gamecirclehub-menu.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .gamecirclehub-menu.active li:nth-child(3) {
    transition-delay: 0.3s;
  }

  .gamecirclehub-menu-link {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
  }

  .gamecirclehub-menu-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(5px);
  }

  .gamecirclehub-menu-link.active {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    color: #ffd700;
  }

  .gamecirclehub-cta {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    border: none;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    margin-top: 1rem;
  }

  .gamecirclehub-cta:hover {
    transform: translateX(5px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  }

  .gamecirclehub-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    margin: 0 !important;
    display: block;
  }

  .gamecirclehub-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .gamecirclehub-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
  }

  .gamecirclehub-hero {
    padding: 2rem 0;
  }

  /* Contact Page Mobile */
  .gamecirclehub-contact-hero {
    padding: 4rem 0;
  }

  .gamecirclehub-contact-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .gamecirclehub-contact-hero-stat-number {
    font-size: 1.5rem;
  }

  .gamecirclehub-contact-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .gamecirclehub-contact-feature {
    padding: 2rem 1.5rem;
  }

  .gamecirclehub-contact-main {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    margin: 2rem 0;
  }

  .gamecirclehub-contact-info-section,
  .gamecirclehub-contact-form-section {
    padding: 2rem !important;
  }

  .gamecirclehub-contact-method {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    align-items: center !important;
  }

  .gamecirclehub-contact-method-icon {
    margin: 0 auto;
  }

  .gamecirclehub-section {
    padding: 2rem 0;
  }

  .gamecirclehub-grid {
    grid-template-columns: 1fr;
  }

  .gamecirclehub-form-row {
    grid-template-columns: 1fr;
  }

  .gamecirclehub-footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gamecirclehub-cookie-popup {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .gamecirclehub-cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .gamecirclehub-cookie-actions {
    justify-content: center;
  }
}

/* Animation Classes */
.gamecirclehub-fade-in {
  animation: fadeIn 0.6s ease-in;
}

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

.gamecirclehub-slide-up {
  animation: slideUp 0.6s ease-out;
}

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

/* Loading States */
.gamecirclehub-loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

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

/* Game Categories */
.gamecirclehub-category-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.gamecirclehub-category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

.gamecirclehub-category-games {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.gamecirclehub-game-tag {
  background: #e9ecef;
  color: #666;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
}

/* Testimonials */
.gamecirclehub-testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.gamecirclehub-testimonial-content {
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.gamecirclehub-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gamecirclehub-author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.gamecirclehub-author-info h4 {
  margin-bottom: 0.25rem;
  color: #333;
}

.gamecirclehub-author-info span {
  color: #666;
  font-size: 0.9rem;
}

/* News Cards */
.gamecirclehub-news-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.gamecirclehub-news-card:hover {
  transform: translateY(-3px);
}

.gamecirclehub-news-date {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  min-width: 80px;
  height: fit-content;
}

.gamecirclehub-news-day {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.gamecirclehub-news-month {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.gamecirclehub-news-content h3 {
  margin-bottom: 0.75rem;
  color: #333;
}

.gamecirclehub-news-content p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.gamecirclehub-news-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.gamecirclehub-news-link:hover {
  color: #764ba2;
}

/* Community Highlights */
.gamecirclehub-highlight-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gamecirclehub-highlight-card:hover {
  transform: translateY(-5px);
}

.gamecirclehub-highlight-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

.gamecirclehub-highlight-stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}

/* Contact Page Specific */
.gamecirclehub-contact-hero {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}

.gamecirclehub-contact-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.gamecirclehub-contact-hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  animation: gamecirclehub-particles-float 20s ease-in-out infinite;
}

.gamecirclehub-contact-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.gamecirclehub-contact-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.gamecirclehub-contact-shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation: gamecirclehub-shape-float 15s ease-in-out infinite;
}

.gamecirclehub-contact-shape-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation: gamecirclehub-shape-float 12s ease-in-out infinite reverse;
}

.gamecirclehub-contact-shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation: gamecirclehub-shape-float 18s ease-in-out infinite;
}

.gamecirclehub-contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gamecirclehub-contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.gamecirclehub-contact-hero-badge i {
  color: #ffc107;
  font-size: 1rem;
}

.gamecirclehub-contact-hero-title {
  margin-bottom: 1.5rem;
}

.gamecirclehub-contact-hero-title-main {
  display: block;
  /* font-size: clamp(2.5rem, 5vw, 3.5rem); */
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gamecirclehub-contact-hero-title-accent {
  display: block;
  /* font-size: clamp(2rem, 4vw, 2.8rem); */
  font-weight: 600;
  background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gamecirclehub-contact-hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gamecirclehub-contact-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.gamecirclehub-contact-hero-stat {
  text-align: center;
}

.gamecirclehub-contact-hero-stat-number {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 0.5rem;
}

.gamecirclehub-contact-hero-stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

/* Contact Features */
.gamecirclehub-contact-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.gamecirclehub-contact-feature {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.gamecirclehub-contact-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.gamecirclehub-contact-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.gamecirclehub-contact-feature h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.gamecirclehub-contact-feature p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Main Contact Section */
.gamecirclehub-contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 4rem 0;
}

.gamecirclehub-contact-info-section {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.gamecirclehub-contact-info-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gamecirclehub-contact-info-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gamecirclehub-contact-info-title i {
  color: #667eea;
  font-size: 1.5rem;
}

.gamecirclehub-contact-info-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin: 0;
}

.gamecirclehub-contact-methods {
  margin-bottom: 3rem;
}

.gamecirclehub-contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(118, 75, 162, 0.05) 100%
  );
  border-radius: 15px;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
}

.gamecirclehub-contact-method:hover {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  transform: translateX(5px);
}

.gamecirclehub-contact-method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.gamecirclehub-contact-method-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.gamecirclehub-contact-method-content p {
  color: #666;
  margin: 0;
  line-height: 1.5;
}

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

.gamecirclehub-contact-link:hover {
  color: #764ba2;
}

.gamecirclehub-contact-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  border-radius: 15px;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.gamecirclehub-contact-cta h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.gamecirclehub-contact-cta p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.gamecirclehub-contact-cta-actions {
  display: flex;
  justify-content: center;
}

/* Contact Form Section */
.gamecirclehub-contact-form-section {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.gamecirclehub-contact-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.gamecirclehub-contact-form-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gamecirclehub-contact-form-title i {
  color: #667eea;
  font-size: 1.5rem;
}

.gamecirclehub-contact-form-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.6;
}

.gamecirclehub-contact-form-container {
  position: relative;
}

.gamecirclehub-btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  justify-content: center;
}

.gamecirclehub-form-response {
  display: none;
  margin-top: 1rem;
  /* padding: 1rem 1.5rem; */
  /* border-radius: 8px; */
  margin-top: 1rem;
  margin-bottom: 1rem;
  /* border-left: 4px solid; */
  font-weight: 500;
}

/* About Page Specific */
.gamecirclehub-about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.gamecirclehub-about-hero-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 1rem;
  font-size: 2rem;
}

.gamecirclehub-about-mission-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 2rem 0;
}

.gamecirclehub-about-mission-visual {
  display: flex;
  justify-content: center;
}

.gamecirclehub-about-mission-card {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
}

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

.gamecirclehub-team-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gamecirclehub-team-card:hover {
  transform: translateY(-5px);
}

.gamecirclehub-team-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

.gamecirclehub-community-content {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
}

.gamecirclehub-community-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.gamecirclehub-disclaimer-content {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Games Page Specific */
.gamecirclehub-games-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.gamecirclehub-games-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.gamecirclehub-stat-item {
  text-align: center;
}

.gamecirclehub-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.25rem;
}

.gamecirclehub-stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.gamecirclehub-popular-games {
  background: #f8f9fa;
  padding: 3rem 0;
}

.gamecirclehub-all-games {
  padding: 3rem 0;
}

.gamecirclehub-game-stats {
  padding: 12px 0;
}

.gamecirclehub-community-features {
  padding: 3rem 0;
}

.gamecirclehub-disclaimer-section {
  background: #f8f9fa;
  padding: 2rem 0;
}

/* Responsive adjustments for contact and about pages */
@media (max-width: 768px) {
  .gamecirclehub-contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gamecirclehub-about-mission-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gamecirclehub-cta-actions,
  .gamecirclehub-community-cta {
    flex-direction: column;
    align-items: center;
  }

  .gamecirclehub-games-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .gamecirclehub-news-card {
    flex-direction: column;
  }

  .gamecirclehub-news-date {
    align-self: center;
  }
}

/* New Stunning Hero Section Design */
.gamecirclehub-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.gamecirclehub-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.gamecirclehub-hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  animation: gamecirclehub-particles-float 20s ease-in-out infinite;
}

.gamecirclehub-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.gamecirclehub-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: gamecirclehub-shape-float 15s ease-in-out infinite;
}

.gamecirclehub-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.gamecirclehub-shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}

.gamecirclehub-shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 10s;
}

.gamecirclehub-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gamecirclehub-hero-text {
  color: white;
}

.gamecirclehub-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  font-weight: 600;
}

.gamecirclehub-hero-badge i {
  color: #ffd700;
  font-size: 1.1rem;
}

.gamecirclehub-hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gamecirclehub-hero-title-main {
  display: block;
  /* font-size: clamp(3rem, 8vw, 4.5rem); */
  font-weight: 800;
  background: linear-gradient(45deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.gamecirclehub-hero-title-accent {
  display: block;
  /* font-size: clamp(2.5rem, 6vw, 3.5rem); */
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gamecirclehub-hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 500px;
}

.gamecirclehub-hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

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

.gamecirclehub-hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 0.25rem;
}

.gamecirclehub-hero-stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

.gamecirclehub-hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.gamecirclehub-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  border: none;
}

.gamecirclehub-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
  color: white;
}

.gamecirclehub-hero-cta i {
  font-size: 1.2rem;
}

.gamecirclehub-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.gamecirclehub-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: white;
}

.gamecirclehub-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gamecirclehub-hero-games-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.gamecirclehub-hero-game {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gamecirclehub-hero-game:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.gamecirclehub-hero-game-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gamecirclehub-hero-game-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gamecirclehub-hero-game:hover .gamecirclehub-hero-game-image img {
  transform: scale(1.1);
}

.gamecirclehub-hero-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;
}

.gamecirclehub-section-with-bg {
  background: rgb(60, 171, 195);
}

.gamecirclehub-section-with-bg h1,
.gamecirclehub-section-with-bg p {
  color: #fff;
}

.gamecirclehub-hero-game:hover .gamecirclehub-hero-game-overlay {
  opacity: 1;
}

.gamecirclehub-hero-game-overlay i {
  color: white;
  font-size: 2rem;
}

.gamecirclehub-hero-game-info h4 {
  color: #333;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.gamecirclehub-hero-game-info p {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
}

.gamecirclehub-hero-game-1 {
  grid-column: 1;
  grid-row: 1;
}

.gamecirclehub-hero-game-2 {
  grid-column: 2;
  grid-row: 1;
}

.gamecirclehub-hero-game-3 {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: 250px;
  margin: 0 auto;
}

.gamecirclehub-hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.gamecirclehub-floating-element {
  position: absolute;
  color: rgba(255, 255, 255, 0.3);
  font-size: 2rem;
  animation: gamecirclehub-float 6s ease-in-out infinite;
}

.gamecirclehub-floating-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.gamecirclehub-floating-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.gamecirclehub-floating-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

/* Animations */
@keyframes gamecirclehub-particles-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes gamecirclehub-shape-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

@keyframes gamecirclehub-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(10deg);
  }
}

.gamecirclehub-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gamecirclehub-section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: #333;
}

.gamecirclehub-section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.gamecirclehub-games-preview {
  background: #f8f9fa;
}

.gamecirclehub-game-preview {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gamecirclehub-game-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gamecirclehub-game-preview-image {
  position: relative;
  overflow: hidden;
}

.gamecirclehub-game-preview-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gamecirclehub-game-preview:hover .gamecirclehub-game-preview-image img {
  transform: scale(1.05);
}

.gamecirclehub-game-preview-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;
}

.gamecirclehub-game-preview:hover .gamecirclehub-game-preview-overlay {
  opacity: 1;
}

.gamecirclehub-game-preview-play {
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.gamecirclehub-game-preview-play:hover {
  transform: scale(1.1);
  color: white;
}

.gamecirclehub-game-preview-content {
  padding: 1.5rem;
}

.gamecirclehub-game-preview-content h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.gamecirclehub-game-preview-content p {
  color: #666;
  margin-bottom: 1rem;
}

.gamecirclehub-game-preview-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #888;
}

.gamecirclehub-game-preview-stats span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.gamecirclehub-section-cta {
  text-align: center;
  margin-top: 3rem;
}

.gamecirclehub-stats-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.gamecirclehub-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.gamecirclehub-stat-item {
  padding: 2rem 1rem;
}

.gamecirclehub-stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #ffd700;
}

.gamecirclehub-stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.gamecirclehub-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.gamecirclehub-step {
  text-align: center;
  position: relative;
}

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

.gamecirclehub-step-content h3 {
  margin-bottom: 1rem;
  color: #333;
}

.gamecirclehub-step-content p {
  color: #666;
}

.gamecirclehub-cta-section {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
  color: white;
  text-align: center;
}

.gamecirclehub-cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.gamecirclehub-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.gamecirclehub-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.gamecirclehub-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.gamecirclehub-btn-secondary:hover {
  background: white;
  color: #ff6b6b;
}

.gamecirclehub-disclaimer-section {
  background: #f8f9fa;
}

.gamecirclehub-disclaimer-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gamecirclehub-disclaimer-content h3 {
  color: #333;
  margin-bottom: 1rem;
}

.gamecirclehub-disclaimer-content p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 1099px) {
  .gamecirclehub-hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding: 0 1rem;
  }
}

@media (max-width: 992px) {
  .gamecirclehub-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Responsive for New Hero Design */
@media (max-width: 768px) {
  .gamecirclehub-hero {
    min-height: 100vh;
    padding: 2rem 0;
  }

  .gamecirclehub-hero-title-main {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .gamecirclehub-hero-title-accent {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .gamecirclehub-hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .gamecirclehub-hero-stats {
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .gamecirclehub-hero-stat-number {
    font-size: 1.5rem;
  }

  .gamecirclehub-hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .gamecirclehub-hero-cta,
  .gamecirclehub-hero-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .gamecirclehub-hero-games-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 300px;
  }

  .gamecirclehub-hero-game-1,
  .gamecirclehub-hero-game-2,
  .gamecirclehub-hero-game-3 {
    grid-column: 1;
  }

  .gamecirclehub-hero-game-1 {
    grid-row: 1;
  }

  .gamecirclehub-hero-game-2 {
    grid-row: 2;
  }

  .gamecirclehub-hero-game-3 {
    grid-row: 3;
  }

  .gamecirclehub-shape-1,
  .gamecirclehub-shape-2,
  .gamecirclehub-shape-3 {
    display: none;
  }

  .gamecirclehub-floating-element {
    font-size: 1.5rem;
  }

  .gamecirclehub-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gamecirclehub-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gamecirclehub-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .gamecirclehub-hero-title {
    font-size: 1.8rem;
  }

  .gamecirclehub-grid-3 {
    grid-template-columns: 1fr;
  }

  .gamecirclehub-hero-subtitle {
    font-size: 1rem;
  }

  .gamecirclehub-card {
    padding: 1.5rem;
  }

  .gamecirclehub-game-content {
    padding: 1rem;
  }

  .gamecirclehub-stats {
    grid-template-columns: 1fr;
  }

  .gamecirclehub-stats-grid {
    grid-template-columns: 1fr;
  }
}
