/* EnjoyGameWorld.org - Canada Social Gaming Platform */
/* Color Scheme: Vibrant Orange (#FF6B35) + Deep Teal (#2A9D8F) + Charcoal (#264653) */

:root {
  --enjoygameworld-primary: #FF6B35;
  --enjoygameworld-secondary: #2A9D8F;
  --enjoygameworld-dark: #264653;
  --enjoygameworld-light: #E9F5F3;
  --enjoygameworld-accent: #F4A261;
  --enjoygameworld-text: #1A1A1A;
  --enjoygameworld-white: #FFFFFF;
  --enjoygameworld-border: #D1E5E2;
  --enjoygameworld-shadow: rgba(38, 70, 83, 0.15);
  --enjoygameworld-hover: rgba(255, 107, 53, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--enjoygameworld-text);
  background: var(--enjoygameworld-white);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.enjoygameworld-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 25px;
}

/* SIDEBAR NAVIGATION */
.enjoygameworld-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--enjoygameworld-dark) 0%, #1a3f4a 100%);
  padding: 35px 0;
  z-index: 1000;
  overflow-y: auto;
  transition: transform 0.3s ease;
}

.enjoygameworld-sidebar-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 25px 30px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.enjoygameworld-sidebar-logo img {
  max-width: 80px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 50%;
  border: 3px solid var(--enjoygameworld-primary);
}

.enjoygameworld-sidebar-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--enjoygameworld-white);
  text-align: center;
  letter-spacing: 0.5px;
}

.enjoygameworld-sidebar-menu {
  list-style: none;
  padding: 0 15px;
}

.enjoygameworld-sidebar-menu li {
  margin-bottom: 8px;
}

.enjoygameworld-sidebar-link {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
}

.enjoygameworld-sidebar-link i {
  margin-right: 14px;
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.enjoygameworld-sidebar-link:hover,
.enjoygameworld-sidebar-link.active {
  background: var(--enjoygameworld-primary);
  color: var(--enjoygameworld-white);
  transform: translateX(5px);
}

.enjoygameworld-sidebar-cta {
  margin: 30px 15px 0;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--enjoygameworld-primary) 0%, var(--enjoygameworld-accent) 100%);
  color: var(--enjoygameworld-white);
  text-align: center;
  text-decoration: none;
  border-radius: 14px;
  display: block;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

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

.enjoygameworld-sidebar-toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  background: var(--enjoygameworld-primary);
  border: none;
  border-radius: 10px;
  padding: 12px 15px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.enjoygameworld-sidebar-toggle-bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--enjoygameworld-white);
  margin: 5px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* MAIN CONTENT AREA */
.enjoygameworld-main-wrapper {
  margin-left: 280px;
  min-height: 100vh;
  background: var(--enjoygameworld-light);
}

.enjoygameworld-main {
  padding-bottom: 0;
}

/* HERO SECTIONS */
.enjoygameworld-hero {
  background: linear-gradient(135deg, var(--enjoygameworld-secondary) 0%, var(--enjoygameworld-dark) 100%);
  padding: 90px 0;
  color: var(--enjoygameworld-white);
  position: relative;
  overflow: hidden;
}

.enjoygameworld-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.6;
}

.enjoygameworld-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.enjoygameworld-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 15px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.enjoygameworld-hero-title {
  font-size: 58px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.enjoygameworld-hero-subtitle {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.95;
  font-weight: 400;
}

.enjoygameworld-hero-cta {
  display: inline-block;
  padding: 18px 45px;
  background: var(--enjoygameworld-primary);
  color: var(--enjoygameworld-white);
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.enjoygameworld-hero-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
  color: var(--enjoygameworld-white);
}

/* SECTION STYLES */
.enjoygameworld-section {
  padding: 80px 0;
  background: var(--enjoygameworld-white);
}

.enjoygameworld-section-alt {
  background: var(--enjoygameworld-light);
}

.enjoygameworld-section h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--enjoygameworld-dark);
  text-align: center;
}

.enjoygameworld-section p.enjoygameworld-section-intro {
  font-size: 19px;
  text-align: center;
  color: #555;
  margin-bottom: 60px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

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

.enjoygameworld-mb-5 {
  margin-bottom: 50px;
}

/* CARD GRID */
.enjoygameworld-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.enjoygameworld-card {
  background: var(--enjoygameworld-white);
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 8px 30px var(--enjoygameworld-shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.enjoygameworld-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(42, 157, 143, 0.2);
  border-color: var(--enjoygameworld-secondary);
}

.enjoygameworld-card-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, var(--enjoygameworld-primary), var(--enjoygameworld-accent));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.enjoygameworld-card-icon i {
  font-size: 36px;
  color: var(--enjoygameworld-white);
}

.enjoygameworld-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--enjoygameworld-dark);
}

.enjoygameworld-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}

/* GAMES GRID */
.enjoygameworld-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.enjoygameworld-game-card {
  background: var(--enjoygameworld-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--enjoygameworld-shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.enjoygameworld-game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 50px rgba(42, 157, 143, 0.25);
  border-color: var(--enjoygameworld-primary);
}

.enjoygameworld-game-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--enjoygameworld-primary);
  color: var(--enjoygameworld-white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.enjoygameworld-game-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--enjoygameworld-light), var(--enjoygameworld-border));
}

.enjoygameworld-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.enjoygameworld-game-card:hover .enjoygameworld-game-image img {
  transform: scale(1.1);
}

.enjoygameworld-game-content {
  padding: 30px;
}

.enjoygameworld-game-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--enjoygameworld-dark);
}

.enjoygameworld-game-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.enjoygameworld-game-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--enjoygameworld-border);
}

.enjoygameworld-game-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #777;
}

.enjoygameworld-game-stats i {
  color: var(--enjoygameworld-primary);
}

.enjoygameworld-game-play {
  width: 100%;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--enjoygameworld-secondary), #229b8b);
  color: var(--enjoygameworld-white);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enjoygameworld-game-play:hover {
  background: linear-gradient(135deg, #229b8b, var(--enjoygameworld-secondary));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 157, 143, 0.3);
}

/* BUTTONS */
.enjoygameworld-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.enjoygameworld-btn-primary {
  background: var(--enjoygameworld-primary);
  color: var(--enjoygameworld-white);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.enjoygameworld-btn-primary:hover {
  background: #e5562d;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  color: var(--enjoygameworld-white);
}

.enjoygameworld-btn-secondary {
  background: transparent;
  color: var(--enjoygameworld-secondary);
  border-color: var(--enjoygameworld-secondary);
}

.enjoygameworld-btn-secondary:hover {
  background: var(--enjoygameworld-secondary);
  color: var(--enjoygameworld-white);
  transform: translateY(-3px);
}

/* ALERTS */
.enjoygameworld-alert {
  padding: 20px 25px;
  border-radius: 14px;
  margin: 25px 0;
  border-left: 5px solid;
}

.enjoygameworld-alert-info {
  background: rgba(42, 157, 143, 0.1);
  border-left-color: var(--enjoygameworld-secondary);
  color: var(--enjoygameworld-dark);
}

.enjoygameworld-alert-info strong {
  color: var(--enjoygameworld-secondary);
}

/* CTA SECTION */
.enjoygameworld-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.enjoygameworld-cta-content h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--enjoygameworld-dark);
}

.enjoygameworld-cta-content p {
  font-size: 19px;
  color: #555;
  margin-bottom: 35px;
}

.enjoygameworld-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
.enjoygameworld-footer {
  background: var(--enjoygameworld-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 30px;
}

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

.enjoygameworld-footer-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--enjoygameworld-white);
  margin-bottom: 20px;
}

.enjoygameworld-footer-section p,
.enjoygameworld-footer-section a {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.enjoygameworld-footer-section a:hover {
  color: var(--enjoygameworld-primary);
}

.enjoygameworld-footer-section strong {
  color: var(--enjoygameworld-white);
  font-weight: 600;
}

.enjoygameworld-footer-sponsor {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.enjoygameworld-footer-sponsor h4 {
  color: var(--enjoygameworld-primary);
  font-size: 18px;
  margin-bottom: 12px;
}

.enjoygameworld-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-bottom: 25px;
}

.enjoygameworld-disclaimer p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.enjoygameworld-disclaimer a {
  color: var(--enjoygameworld-primary);
  text-decoration: underline;
}

.enjoygameworld-footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.enjoygameworld-footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.enjoygameworld-footer-bottom a {
  color: var(--enjoygameworld-primary);
  text-decoration: none;
  margin: 0 10px;
}

.enjoygameworld-footer-bottom a:hover {
  text-decoration: underline;
}

/* CONTACT PAGE */
.enjoygameworld-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-top: 50px;
}

.enjoygameworld-contact-info-card,
.enjoygameworld-contact-form-card {
  background: var(--enjoygameworld-white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px var(--enjoygameworld-shadow);
}

.enjoygameworld-contact-info-card h3,
.enjoygameworld-contact-form-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--enjoygameworld-dark);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.enjoygameworld-contact-detail-item {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--enjoygameworld-border);
}

.enjoygameworld-contact-detail-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.enjoygameworld-contact-detail-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--enjoygameworld-primary), var(--enjoygameworld-accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.enjoygameworld-contact-detail-icon i {
  font-size: 22px;
  color: var(--enjoygameworld-white);
}

.enjoygameworld-contact-detail-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--enjoygameworld-dark);
  margin-bottom: 6px;
}

.enjoygameworld-contact-detail-content p,
.enjoygameworld-contact-detail-content a {
  font-size: 15px;
  color: #666;
  margin: 0;
  text-decoration: none;
}

.enjoygameworld-contact-detail-content a:hover {
  color: var(--enjoygameworld-primary);
}

.enjoygameworld-form-description {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

.enjoygameworld-form-group {
  margin-bottom: 25px;
}

.enjoygameworld-form-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--enjoygameworld-dark);
  margin-bottom: 10px;
}

.enjoygameworld-form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--enjoygameworld-border);
  border-radius: 10px;
  font-size: 15px;
  color: var(--enjoygameworld-text);
  transition: all 0.3s ease;
  font-family: inherit;
}

.enjoygameworld-form-control:focus {
  outline: none;
  border-color: var(--enjoygameworld-secondary);
  box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.1);
}

.enjoygameworld-form-control::placeholder {
  color: #999;
}

textarea.enjoygameworld-form-control {
  resize: vertical;
  min-height: 140px;
}

#enjoygameworld-form-response {
  margin-top: 25px;
  padding: 18px 22px;
  border-radius: 10px;
  font-size: 15px;
  display: none;
}

#enjoygameworld-form-response.success {
  background: rgba(42, 157, 143, 0.1);
  color: var(--enjoygameworld-secondary);
  border: 2px solid var(--enjoygameworld-secondary);
  display: block;
}

#enjoygameworld-form-response.error {
  background: rgba(255, 107, 53, 0.1);
  color: #d63031;
  border: 2px solid #d63031;
  display: block;
}

/* COOKIE CONSENT POPUP */
.enjoygameworld-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--enjoygameworld-dark);
  padding: 25px;
  z-index: 9999;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.enjoygameworld-cookie-consent.show {
  transform: translateY(0);
}

.enjoygameworld-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.enjoygameworld-cookie-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.enjoygameworld-cookie-text a {
  color: var(--enjoygameworld-primary);
  text-decoration: underline;
}

.enjoygameworld-cookie-actions {
  display: flex;
  gap: 15px;
}

.enjoygameworld-cookie-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.enjoygameworld-cookie-accept {
  background: var(--enjoygameworld-primary);
  color: var(--enjoygameworld-white);
}

.enjoygameworld-cookie-accept:hover {
  background: #e5562d;
  transform: translateY(-2px);
}

/* GAME MODAL */
.enjoygameworld-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  padding: 20px;
}

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

.enjoygameworld-modal-content {
  background: var(--enjoygameworld-white);
  border-radius: 20px;
  width: 100%;
  max-width: 1200px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
}

.enjoygameworld-modal-header {
  padding: 20px 25px;
  background: var(--enjoygameworld-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.enjoygameworld-modal-title {
  color: var(--enjoygameworld-white);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.enjoygameworld-modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--enjoygameworld-white);
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.enjoygameworld-modal-close:hover {
  background: var(--enjoygameworld-primary);
}

.enjoygameworld-modal-body {
  height: calc(90vh - 80px);
}

.enjoygameworld-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .enjoygameworld-sidebar {
    transform: translateX(-100%);
  }

  .enjoygameworld-sidebar.active {
    transform: translateX(0);
  }

  .enjoygameworld-sidebar-toggle {
    display: block;
  }

  .enjoygameworld-main-wrapper {
    margin-left: 0;
  }

  .enjoygameworld-hero-title {
    font-size: 42px;
  }

  .enjoygameworld-section h2 {
    font-size: 34px;
  }

  .enjoygameworld-contact-wrapper {
    grid-template-columns: 1fr;
  }

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

  .enjoygameworld-cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .enjoygameworld-hero {
    padding: 60px 0;
  }

  .enjoygameworld-hero-title {
    font-size: 36px;
  }

  .enjoygameworld-hero-subtitle {
    font-size: 17px;
  }

  .enjoygameworld-section {
    padding: 50px 0;
  }

  .enjoygameworld-section h2 {
    font-size: 30px;
  }

  .enjoygameworld-card-grid,
  .enjoygameworld-games-grid {
    grid-template-columns: 1fr;
  }

  .enjoygameworld-cta-content h2 {
    font-size: 32px;
  }

  .enjoygameworld-cta-actions {
    flex-direction: column;
  }

  .enjoygameworld-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .enjoygameworld-sidebar {
    width: 260px;
  }

  .enjoygameworld-hero-title {
    font-size: 30px;
  }

  .enjoygameworld-section h2 {
    font-size: 26px;
  }

  .enjoygameworld-contact-info-card,
  .enjoygameworld-contact-form-card {
    padding: 25px;
  }

  .enjoygameworld-sidebar-toggle {
    top: 15px;
    left: 15px;
    padding: 10px 12px;
  }

  .enjoygameworld-sidebar-toggle-bar {
    width: 22px;
  }
}
