/* FunEntryClub - Gratis Sosiale Spill */

html {
  font-size: 16px !important;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  scroll-behavior: smooth;
}

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

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

:root {
  --funentryclub-primary: #8b4c7f;
  --funentryclub-primary-dark: #6a3a5f;
  --funentryclub-primary-light: #a86b9a;
  --funentryclub-accent: #f4a261;
  --funentryclub-accent-dark: #e76f51;
  --funentryclub-success: #2a9d8f;
  --funentryclub-warning: #f77f00;
  --funentryclub-danger: #d62828;

  --funentryclub-neutral-50: #faf5f8;
  --funentryclub-neutral-100: #f0e6ed;
  --funentryclub-neutral-200: #e0cbd9;
  --funentryclub-neutral-300: #c9a8b8;
  --funentryclub-neutral-400: #a87a92;
  --funentryclub-neutral-500: #7d5a6b;
  --funentryclub-neutral-600: #5d3f4d;
  --funentryclub-neutral-700: #452d3a;
  --funentryclub-neutral-800: #2e1e27;
  --funentryclub-neutral-900: #1a1115;

  --funentryclub-white: #ffffff;
  --funentryclub-black: #000000;

  --funentryclub-shadow-sm: 0 2px 6px rgba(139, 76, 127, 0.15);
  --funentryclub-shadow: 0 4px 14px rgba(139, 76, 127, 0.2);
  --funentryclub-shadow-md: 0 8px 28px rgba(139, 76, 127, 0.25);
  --funentryclub-shadow-lg: 0 16px 40px rgba(139, 76, 127, 0.3);
  --funentryclub-shadow-xl: 0 24px 56px rgba(139, 76, 127, 0.35);

  --funentryclub-gradient-primary: linear-gradient(135deg, #8b4c7f 0%, #a86b9a 100%);
  --funentryclub-gradient-accent: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
  --funentryclub-gradient-hero: linear-gradient(135deg, #6a3a5f 0%, #8b4c7f 50%, #a86b9a 100%);

  --funentryclub-radius: 12px;
  --funentryclub-radius-lg: 20px;
  --funentryclub-radius-xl: 28px;

  --funentryclub-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --funentryclub-transition-fast: all 0.2s ease;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: var(--funentryclub-neutral-800);
  background: var(--funentryclub-neutral-50);
  overflow-x: hidden;
}

a {
  color: var(--funentryclub-primary);
  text-decoration: none;
  transition: var(--funentryclub-transition-fast);
}

a:hover {
  color: var(--funentryclub-primary-dark);
}

.funentryclub-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background: var(--funentryclub-neutral-900);
  color: var(--funentryclub-white);
  z-index: 1000;
  overflow-y: auto;
  box-shadow: var(--funentryclub-shadow-lg);
  transition: transform 0.3s ease;
}

.funentryclub-sidebar-header {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.funentryclub-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--funentryclub-white);
  font-weight: 700;
  font-size: 1.4rem;
}

.funentryclub-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.funentryclub-logo-text {
  color: var(--funentryclub-white);
}

.funentryclub-sidebar-nav {
  padding: 1.5rem 0;
}

.funentryclub-nav-item {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--funentryclub-neutral-300);
  font-weight: 500;
  transition: var(--funentryclub-transition-fast);
  border-left: 3px solid transparent;
  word-break: break-word;
  overflow-wrap: break-word;
}

.funentryclub-nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--funentryclub-white);
  border-left-color: var(--funentryclub-accent);
}

.funentryclub-nav-item.funentryclub-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--funentryclub-white);
  border-left-color: var(--funentryclub-primary);
  font-weight: 600;
}

.funentryclub-nav-cta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--funentryclub-gradient-accent);
  color: var(--funentryclub-white);
  font-weight: 600;
  border-radius: var(--funentryclub-radius);
  box-shadow: var(--funentryclub-shadow);
  transition: var(--funentryclub-transition);
  text-align: center;
  justify-content: center;
}

.funentryclub-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--funentryclub-shadow-md);
  color: var(--funentryclub-white);
}

.funentryclub-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--funentryclub-primary);
  border: none;
  border-radius: var(--funentryclub-radius);
  padding: 0.75rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: var(--funentryclub-shadow-md);
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1001;
}

.funentryclub-toggle-line {
  width: 26px;
  height: 3px;
  background: var(--funentryclub-white);
  border-radius: 2px;
  transition: var(--funentryclub-transition);
}

.funentryclub-main {
  margin-left: 280px;
  min-height: 100vh;
}

.funentryclub-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.funentryclub-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: var(--funentryclub-white);
}

.funentryclub-hero-visual {
  background: var(--funentryclub-gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.funentryclub-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.08)"/></svg>');
  opacity: 0.5;
}

.funentryclub-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 3rem;
  color: var(--funentryclub-white);
}

.funentryclub-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  color: var(--funentryclub-white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.funentryclub-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--funentryclub-white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.funentryclub-hero-subtitle {
  font-size: 1.25rem;
  color: var(--funentryclub-white);
  opacity: 0.95;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.funentryclub-hero-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 3.5rem;
  background: var(--funentryclub-white);
  color: var(--funentryclub-primary);
  font-weight: 700;
  border-radius: var(--funentryclub-radius-lg);
  box-shadow: var(--funentryclub-shadow-lg);
  transition: var(--funentryclub-transition);
  font-size: 1.1rem;
}

.funentryclub-hero-button:hover {
  transform: translateY(-6px);
  box-shadow: var(--funentryclub-shadow-xl);
  color: var(--funentryclub-primary-dark);
}

.funentryclub-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem;
  background: var(--funentryclub-neutral-50);
}

.funentryclub-hero-text h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--funentryclub-neutral-900);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.funentryclub-hero-text p {
  color: var(--funentryclub-neutral-600);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.funentryclub-masonry-section {
  padding: 6rem 0;
  background: var(--funentryclub-white);
}

.funentryclub-masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
  align-items: stretch;
}

.funentryclub-masonry-card {
  background: var(--funentryclub-white);
  border-radius: var(--funentryclub-radius-xl);
  overflow: hidden;
  box-shadow: var(--funentryclub-shadow);
  transition: var(--funentryclub-transition);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}


.funentryclub-masonry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--funentryclub-shadow-lg);
  border-color: var(--funentryclub-primary);
}

.funentryclub-masonry-visual {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.funentryclub-masonry-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--funentryclub-transition);
}

.funentryclub-masonry-card:hover .funentryclub-masonry-visual img {
  transform: scale(1.1);
}

.funentryclub-masonry-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.funentryclub-masonry-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--funentryclub-neutral-900);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.funentryclub-masonry-text {
  color: var(--funentryclub-neutral-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  flex-grow: 1;
}

.funentryclub-masonry-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: var(--funentryclub-gradient-primary);
  color: var(--funentryclub-white);
  font-weight: 600;
  border-radius: var(--funentryclub-radius);
  transition: var(--funentryclub-transition);
  box-shadow: var(--funentryclub-shadow);
  margin-top: auto;
  align-self: flex-start;
}

.funentryclub-masonry-link:hover {
  transform: translateX(6px);
  color: var(--funentryclub-white);
  box-shadow: var(--funentryclub-shadow-md);
}

.funentryclub-features-section {
  padding: 6rem 0;
  background: var(--funentryclub-neutral-100);
}

.funentryclub-features-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--funentryclub-neutral-900);
  text-align: center;
  margin-bottom: 4rem;
}

.funentryclub-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.funentryclub-feature-card {
  background: var(--funentryclub-white);
  padding: 2.5rem 2rem;
  border-radius: var(--funentryclub-radius-xl);
  box-shadow: var(--funentryclub-shadow);
  text-align: center;
  transition: var(--funentryclub-transition);
  border: 2px solid transparent;
}

.funentryclub-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--funentryclub-shadow-lg);
  border-color: var(--funentryclub-primary);
}

.funentryclub-feature-icon {
  width: 72px;
  height: 72px;
  background: var(--funentryclub-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--funentryclub-white);
  font-size: 1.75rem;
}

.funentryclub-feature-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--funentryclub-neutral-900);
  margin-bottom: 1rem;
}

.funentryclub-feature-description {
  color: var(--funentryclub-neutral-600);
  line-height: 1.7;
}

.funentryclub-page-banner {
  background: var(--funentryclub-gradient-primary);
  color: var(--funentryclub-white);
  padding: 4rem 0;
  text-align: center;
  margin: 0 0 3rem 0;
}

.funentryclub-page-banner h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.funentryclub-page-banner p {
  font-size: 1.25rem;
  opacity: 0.95;
}

.funentryclub-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 3rem 0;
}

.funentryclub-game-box {
  background: var(--funentryclub-white);
  border-radius: var(--funentryclub-radius-xl);
  overflow: hidden;
  box-shadow: var(--funentryclub-shadow);
  transition: var(--funentryclub-transition);
  border: 2px solid transparent;
}

.funentryclub-game-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--funentryclub-shadow-lg);
  border-color: var(--funentryclub-primary);
}

.funentryclub-game-thumb {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.funentryclub-game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--funentryclub-transition);
}

.funentryclub-game-box:hover .funentryclub-game-thumb img {
  transform: scale(1.1);
}

.funentryclub-game-info {
  padding: 2rem;
}

.funentryclub-game-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--funentryclub-neutral-900);
  margin-bottom: 1rem;
}

.funentryclub-game-info p {
  color: var(--funentryclub-neutral-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.funentryclub-game-play {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--funentryclub-gradient-primary);
  color: var(--funentryclub-white);
  font-weight: 600;
  border-radius: var(--funentryclub-radius);
  transition: var(--funentryclub-transition);
  box-shadow: var(--funentryclub-shadow);
}

.funentryclub-game-play:hover {
  transform: translateX(6px);
  color: var(--funentryclub-white);
  box-shadow: var(--funentryclub-shadow-md);
}

.funentryclub-about-content {
  padding: 3rem 0;
}

.funentryclub-about-section {
  margin-bottom: 3rem;
  background: var(--funentryclub-white);
  padding: 2.5rem;
  border-radius: var(--funentryclub-radius-xl);
  box-shadow: var(--funentryclub-shadow);
}

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

.funentryclub-about-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--funentryclub-neutral-900);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--funentryclub-primary);
}

.funentryclub-about-section p {
  color: var(--funentryclub-neutral-700);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.funentryclub-about-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.funentryclub-about-list li {
  color: var(--funentryclub-neutral-700);
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
}

.funentryclub-about-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--funentryclub-accent);
  font-weight: 700;
  font-size: 1.5rem;
}

.funentryclub-contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
}

.funentryclub-contact-form-box {
  background: var(--funentryclub-white);
  padding: 3rem;
  border-radius: var(--funentryclub-radius-xl);
  box-shadow: var(--funentryclub-shadow);
}

.funentryclub-contact-form-box h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--funentryclub-neutral-900);
  margin-bottom: 0.75rem;
}

.funentryclub-contact-form-box > p {
  color: var(--funentryclub-neutral-600);
  margin-bottom: 2rem;
}

.funentryclub-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.funentryclub-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.funentryclub-form-group label {
  font-weight: 600;
  color: var(--funentryclub-neutral-800);
}

.funentryclub-input,
.funentryclub-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--funentryclub-neutral-200);
  border-radius: var(--funentryclub-radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--funentryclub-transition-fast);
  background: var(--funentryclub-white);
}

.funentryclub-input:focus,
.funentryclub-textarea:focus {
  outline: none;
  border-color: var(--funentryclub-primary);
  box-shadow: 0 0 0 4px rgba(139, 76, 127, 0.1);
}

.funentryclub-textarea {
  resize: vertical;
  min-height: 140px;
}

.funentryclub-submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--funentryclub-gradient-primary);
  color: var(--funentryclub-white);
  font-weight: 600;
  border: none;
  border-radius: var(--funentryclub-radius-lg);
  cursor: pointer;
  transition: var(--funentryclub-transition);
  font-size: 1.1rem;
  box-shadow: var(--funentryclub-shadow);
}

.funentryclub-submit-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--funentryclub-shadow-md);
}

.funentryclub-submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.funentryclub-contact-info-box {
  background: var(--funentryclub-gradient-primary);
  color: var(--funentryclub-white);
  padding: 3rem;
  border-radius: var(--funentryclub-radius-xl);
}

.funentryclub-contact-info-box h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.funentryclub-contact-info-box > p {
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.7;
  font-size: 1.05rem;
}

.funentryclub-contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.funentryclub-contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.funentryclub-contact-icon i {
  font-size: 1.5rem;
}

.funentryclub-contact-text h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.funentryclub-contact-text p,
.funentryclub-contact-text a {
  color: var(--funentryclub-white);
  opacity: 0.95;
  line-height: 1.7;
}

.funentryclub-legal-content {
  padding: 3rem 0;
}

.funentryclub-legal-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.funentryclub-legal-block {
  margin-bottom: 3rem;
  background: var(--funentryclub-white);
  padding: 2.5rem;
  border-radius: var(--funentryclub-radius-xl);
  box-shadow: var(--funentryclub-shadow);
}

.funentryclub-legal-block:last-child {
  margin-bottom: 0;
}

.funentryclub-legal-block h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--funentryclub-neutral-900);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--funentryclub-primary);
}

.funentryclub-legal-block h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--funentryclub-neutral-900);
  margin: 2rem 0 1rem;
}

.funentryclub-legal-block p {
  color: var(--funentryclub-neutral-700);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.funentryclub-legal-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.funentryclub-legal-list li {
  color: var(--funentryclub-neutral-700);
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
}

.funentryclub-legal-list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--funentryclub-accent);
  font-weight: 700;
  font-size: 1.25rem;
}

.funentryclub-alert {
  padding: 1.25rem 1.5rem;
  border-radius: var(--funentryclub-radius);
  margin-bottom: 1.5rem;
}

.funentryclub-alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.funentryclub-alert-danger {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

.funentryclub-footer {
  background: var(--funentryclub-neutral-900);
  color: var(--funentryclub-neutral-300);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  margin-left: 280px;
}

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

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

.funentryclub-footer-block h3 {
  color: var(--funentryclub-white);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.funentryclub-footer-block p {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--funentryclub-neutral-300);
  word-break: break-word;
  overflow-wrap: break-word;
}

.funentryclub-footer-block a {
  color: var(--funentryclub-neutral-300);
  transition: var(--funentryclub-transition-fast);
}

.funentryclub-footer-block a:hover {
  color: var(--funentryclub-white);
}

.funentryclub-footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.funentryclub-footer-disclaimer p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  color: var(--funentryclub-neutral-300);
}

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

.funentryclub-footer-disclaimer a:hover {
  color: var(--funentryclub-white);
}

.funentryclub-footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.funentryclub-footer-copyright p {
  font-size: 0.95rem;
  color: var(--funentryclub-neutral-400);
}

.funentryclub-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 280px;
  right: 0;
  background: var(--funentryclub-neutral-900);
  color: var(--funentryclub-white);
  padding: 2rem;
  box-shadow: var(--funentryclub-shadow-xl);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.funentryclub-cookie-banner.funentryclub-visible {
  transform: translateY(0);
}

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

.funentryclub-cookie-message {
  flex: 1;
}

.funentryclub-cookie-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.funentryclub-cookie-description {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.7;
}

.funentryclub-cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.funentryclub-cookie-accept {
  padding: 0.875rem 2.25rem;
  background: var(--funentryclub-accent);
  color: var(--funentryclub-white);
  border: none;
  border-radius: var(--funentryclub-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--funentryclub-transition);
}

.funentryclub-cookie-accept:hover {
  background: var(--funentryclub-accent-dark);
}

.funentryclub-cookie-link {
  padding: 0.875rem 1.75rem;
  color: var(--funentryclub-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--funentryclub-radius);
  font-weight: 600;
  transition: var(--funentryclub-transition);
}

.funentryclub-cookie-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--funentryclub-white);
}

@media (max-width: 1024px) {
  .funentryclub-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .funentryclub-hero-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .funentryclub-sidebar {
    transform: translateX(-100%);
  }

  .funentryclub-sidebar.funentryclub-sidebar-open {
    transform: translateX(0);
  }

  .funentryclub-main {
    margin-left: 0;
  }

  .funentryclub-footer {
    margin-left: 0;
  }

  .funentryclub-cookie-banner {
    left: 0;
  }

  .funentryclub-mobile-toggle {
    display: flex;
  }

  .funentryclub-mobile-toggle.funentryclub-toggle-open .funentryclub-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
  }

  .funentryclub-mobile-toggle.funentryclub-toggle-open .funentryclub-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .funentryclub-mobile-toggle.funentryclub-toggle-open .funentryclub-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .funentryclub-hero-title {
    font-size: 2.5rem;
  }

  .funentryclub-hero-subtitle {
    font-size: 1.15rem;
  }

  .funentryclub-page-banner {
    margin: 0 0 2rem 0;
    padding: 3rem 0;
  }

  .funentryclub-page-banner h1 {
    font-size: 2rem;
  }

  .funentryclub-features-grid {
    grid-template-columns: 1fr;
  }

  .funentryclub-games-grid {
    grid-template-columns: 1fr;
  }

  .funentryclub-masonry-grid {
    grid-template-columns: 1fr;
  }

  .funentryclub-masonry-card:nth-child(2n),
  .funentryclub-masonry-card:nth-child(3n) {
    margin-top: 0;
  }

  .funentryclub-cookie-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .funentryclub-cookie-actions {
    flex-direction: column;
    width: 100%;
  }

  .funentryclub-cookie-accept,
  .funentryclub-cookie-link {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .funentryclub-container {
    padding: 0 1rem;
  }

  .funentryclub-nav-item {
    font-size: 0.85rem;
    padding: 0.875rem 1.25rem;
  }
  
  .funentryclub-page-banner h1 {
    font-size: 1.75rem;
    word-break: break-word;
  }
  
  .funentryclub-legal-block h2 {
    font-size: 1.35rem;
    word-break: break-word;
  }

  .funentryclub-footer-block a {
    font-size: 0.9rem;
    word-break: break-word;
  }

  .funentryclub-hero-visual {
    min-height: 60vh;
  }

  .funentryclub-hero-title {
    font-size: 2rem;
  }

  .funentryclub-hero-button {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
  }

  .funentryclub-masonry-heading {
    font-size: 1.5rem;
  }

  .funentryclub-features-title {
    font-size: 2rem;
  }

  .funentryclub-contact-form-box,
  .funentryclub-contact-info-box {
    padding: 2rem 1.5rem;
  }

  .funentryclub-legal-block {
    padding: 2rem 1.5rem;
  }

  .funentryclub-legal-block h2 {
    font-size: 1.5rem;
  }
}
