/* EnjoyGameWorld.com - Norway Social Gaming Platform */
/* Color Scheme: Scandinavian Cool (Nordic Blues, Whites, Cool Grays) */

:root {
  --enjoygameworld-primary: #2C5F5D;
  --enjoygameworld-secondary: #97C1A9;
  --enjoygameworld-dark: #1A3C40;
  --enjoygameworld-light: #F8F9FA;
  --enjoygameworld-accent: #6B9AC4;
  --enjoygameworld-text: #2D3748;
  --enjoygameworld-white: #FFFFFF;
  --enjoygameworld-border: #E2E8F0;
  --enjoygameworld-shadow: rgba(44, 95, 93, 0.08);
  --enjoygameworld-hover: rgba(107, 154, 196, 0.1);
  --enjoygameworld-gradient: linear-gradient(135deg, #2C5F5D 0%, #6B9AC4 100%);
  --enjoygameworld-gradient-alt: linear-gradient(135deg, #97C1A9 0%, #2C5F5D 100%);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--enjoygameworld-text);
  background: linear-gradient(180deg, var(--enjoygameworld-light) 0%, var(--enjoygameworld-white) 100%);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-weight: 400;
}

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

/* HEADER NAVIGATION */
.enjoygameworld-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--enjoygameworld-white);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--enjoygameworld-border);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px var(--enjoygameworld-shadow);
}

.enjoygameworld-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  height: 70px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.enjoygameworld-header-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.enjoygameworld-header-logo img {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
}

.enjoygameworld-header-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--enjoygameworld-primary);
  letter-spacing: -0.5px;
}

.enjoygameworld-header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.enjoygameworld-header-nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.enjoygameworld-header-nav-link {
  color: var(--enjoygameworld-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.enjoygameworld-header-nav-link:hover,
.enjoygameworld-header-nav-link.active {
  background: var(--enjoygameworld-hover);
  color: var(--enjoygameworld-primary);
}

.enjoygameworld-header-cta {
  background: var(--enjoygameworld-gradient);
  color: var(--enjoygameworld-white);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(44, 95, 93, 0.3);
}

.enjoygameworld-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 93, 0.4);
}

.enjoygameworld-mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  background: var(--enjoygameworld-light);
  transition: all 0.3s ease;
  border: none;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.enjoygameworld-mobile-menu-toggle:hover {
  background: var(--enjoygameworld-border);
}

.enjoygameworld-mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--enjoygameworld-primary);
  transition: all 0.3s ease;
  transform-origin: center;
}

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

  .enjoygameworld-header-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--enjoygameworld-white);
    border-top: 1px solid var(--enjoygameworld-border);
    padding: 20px 25px;
    flex-direction: column;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--enjoygameworld-shadow);
  }

  .enjoygameworld-header-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .enjoygameworld-header-nav-list {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .enjoygameworld-header-nav-link {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  .enjoygameworld-header-cta {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }
}

/* HIDDEN SIDEBAR STYLES (keeping for potential future use) */
.enjoygameworld-sidebar {
  display: none;
}

.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 {
  padding-top: 70px;
  min-height: 100vh;
}

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

/* HERO SECTIONS */
.enjoygameworld-hero {
  background: var(--enjoygameworld-gradient);
  padding: 120px 0 100px;
  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: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.enjoygameworld-hero-title {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.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 {
    padding-top: 70px;
  }

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