<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* === HEADER === */
.header-bar {
  background: #29c6f5;
  padding: 12px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 16px;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icons a {
  color: white;
  font-size: 18px;
}

.main-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-logo h1 {
  font-size: 26px;
  color: white;
  font-weight: 800;
}

.main-logo .egg {
  color: gold;
}

.hamburger {
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  display: none;
}

.search-icon {
  font-size: 18px;
  color: white;
}

.navbar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 10px 24px;
}

.navbar.open {
  display: flex;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 600;
  font-size: 16px;
  color: #553c9a;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.nav-item:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 8px;
  color: #222;
}

/* === BREADCRUMBS === */
.breadcrumbs-nav {
  background: #f4f4f4;
  padding: 12px 24px;
  display: flex;
  gap: 8px;
}

/* === LAYOUT === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.specs {
  flex: 2;
  background: #e3f6ff;
  padding: 20px;
  border-radius: 10px;
}

.sidebar {
  flex: 1;
  padding: 20px;
}

.casino {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

/* === LANGUAGE SELECTOR === */
.language-selector {
  position: fixed;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  background: white;
  padding: 6px;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  z-index: 999;
}

.language-selector img {
  width: 24px;
  height: 16px;
}

/* === MEDIA QUERIES === */
@media (max-width: 768px) {
  .right-tools {
    gap: 12px;
    margin-left: auto;
  }

  .search-icon,
  .social-icons,
  .breadcrumbs-nav {
    display: none !important;
  }

  .hamburger {
    display: block;
  }

  .navbar {
    display: none;
    flex-direction: column;
    padding: 10px 24px;
    background: #29c6f5;
    border-radius: 0 0 12px 12px;
  }

  .navbar.open {
    display: flex;
  }

  .navbar .nav-item {
    width: 100%;
  }

  .navbar .dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    background: transparent;
    padding-left: 16px;
  }

  .dropdown-menu a {
    padding: 8px 0;
  }

  .language-selector {
    top: auto;
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    padding: 12px;
    border-radius: 14px;
  }

  .language-selector img {
    width: 32px;
    height: 20px;
  }
}</pre></body></html>