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

:root {
  --lmk_rainbow-gradient: linear-gradient(135deg, #ff00cc, #3333ff, #00ccff, #00ff99, #ffff00);
  --lmk_neon-gradient: linear-gradient(45deg, #ff00cc, #ff0066, #ff6600, #ffcc00);
  --lmk_ocean-gradient: linear-gradient(135deg, #0066ff, #00ccff, #00ffcc, #66ff99);
  --lmk_sunset-gradient: linear-gradient(135deg, #ff3366, #ff6633, #ffcc33, #ffff66);
  --lmk_magic-gradient: linear-gradient(135deg, #cc00ff, #6600ff, #0066ff, #00ccff);
  --lmk_header-height: 5rem;
  --lmk_transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --lmk_transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --lmk_shadow-glow: 0 0 20px rgba(255, 0, 204, 0.5);
  --lmk_shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.6;
  color: #333;
  background: var(--lmk_ocean-gradient);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Marcellus', serif;
  font-weight: normal;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  min-height: 4.2rem;
}

h2 {
  font-size: 2.8rem;
  min-height: 3.4rem;
}

h3 {
  font-size: 2rem;
  min-height: 2.4rem;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--lmk_transition-smooth);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--lmk_transition-smooth);
}

.lmk_age-verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  overflow-y: auto;
}

.lmk_age-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: lmk_modal-appear 0.5s ease-out;
  overflow-y: auto;
  max-height: 95vh;
}

.lmk_age-content h2 {
  margin-bottom: 1rem;
  color: #ff3366;
}

.lmk_age-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.lmk_age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.lmk_age-buttons button {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: var(--lmk_transition-bounce);
}

.lmk_age-confirm {
  background: var(--lmk_neon-gradient);
  color: white;
}

.lmk_age-confirm:hover {
  transform: translateY(-5px);
  box-shadow: var(--lmk_shadow-glow);
}

.lmk_age-decline {
  background: #f0f0f0;
  color: #333;
}

.lmk_age-decline:hover {
  background: #e0e0e0;
  transform: translateY(-3px);
}

.lmk_age-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.lmk_age-partners a {
  display: inline-block;
  transition: var(--lmk_transition-smooth);
}

.lmk_age-partners a:hover {
  transform: scale(1.05);
}

.lmk_age-symbol {
  margin-top: 1rem;
}

.lmk_cookies-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1.5rem;
  z-index: 9998;
}

.lmk_cookies-content {
  max-width: 1460px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.lmk_cookies-content p {
  flex: 1;
  margin: 0;
}

.lmk_cookies-content a {
  color: #00ccff;
  text-decoration: underline;
}

.lmk_cookies-accept {
  background: var(--lmk_magic-gradient);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  transition: var(--lmk_transition-bounce);
}

.lmk_cookies-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 204, 255, 0.4);
}

.lmk_site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--lmk_shadow-soft);
  min-height: var(--lmk_header-height);
}

.lmk_header-container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.lmk_header-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.lmk_header-logo {
  width: 40px;
  height: 40px;
}

.lmk_header-title {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  background: var(--lmk_rainbow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lmk_header-nav {
  display: flex;
}

.lmk_nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  list-style: none;
  gap: 2rem;
}

.lmk_nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: var(--lmk_transition-smooth);
  position: relative;
  overflow: hidden;
}

.lmk_nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--lmk_neon-gradient);
  transition: var(--lmk_transition-smooth);
  border-radius: 25px;
  z-index: -1;
}

.lmk_nav-link:hover {
  left: 10px;
  color: white;
  transform: translateY(-10px);
}

.lmk_nav-link:hover::before {
  left: 5px;
}

.lmk_nav-home {
  background: var(--lmk_ocean-gradient);
  color: white;
}

.lmk_contact-trigger {
  background: var(--lmk_sunset-gradient);
  color: white;
  border-radius: 25px;
}

.lmk_nav-toggle {
  display: none;
  flex-direction: column;
  width: 30px;
  height: 24px;
  background: transparent;
  gap: 5px;
}

.lmk_nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--lmk_magic-gradient);
  border-radius: 3px;
  transition: var(--lmk_transition-smooth);
}

.lmk_welcome-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--lmk_rainbow-gradient);
  position: relative;
  overflow: hidden;
}

.lmk_welcome-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/lmk-engine/lmk-imgs/background-1.webp') center/cover no-repeat;
  opacity: 0.2;
}

.lmk_welcome-content {
  text-align: center;
  max-width: 1200px;
  z-index: 1;
  color: white;
}

.lmk_welcome-content h1 {
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.lmk_welcome-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.lmk_welcome-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lmk_welcome-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  width: 220px;
  text-align: center;
  transition: var(--lmk_transition-bounce);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lmk_welcome-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.lmk_welcome-card p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  min-height: 5rem;
}

.lmk_welcome-card i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
  background: var(--lmk_neon-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lmk_card-link {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  color: #ff3366;
  border-radius: 50px;
  font-weight: bold;
  transition: var(--lmk_transition-smooth);
}

.lmk_card-link:hover {
  background: white;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.lmk_about-section {
  padding: 6rem 2rem;
  background: white;
}

.lmk_about-container {
  max-width: 1460px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.lmk_about-block {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--lmk_shadow-soft);
  transition: var(--lmk_transition-smooth);
}

.lmk_about-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.lmk_about-imageblock {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 415px;
}

.lmk_about-imageblock img {
  width: 100%;
  max-width: 325px;
  height: 100%;
  max-height: 325px;
}

.lmk_about-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
}

.lmk_about-overlay h2 {
  margin-bottom: 1rem;
}

.lmk_about-textblock {
  padding: 3rem;
  background: var(--lmk_ocean-gradient);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 415px;
}

.lmk_about-textblock h2 {
  margin-bottom: 1.5rem;
}

.lmk_about-textblock p {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.lmk_about-minicards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.lmk_minicard {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
}

.lmk_minicard i {
  font-size: 1.2rem;
}

.lmk_about-link {
  display: inline-block;
  padding: 1rem 2rem;
  background: white;
  color: #0066ff;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  transition: var(--lmk_transition-bounce);
  align-self: flex-start;
}

.lmk_about-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.lmk_features-section {
  padding: 6rem 2rem;
  background: var(--lmk_magic-gradient);
  position: relative;
  overflow: hidden;
}

.lmk_features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/lmk-engine/lmk-imgs/background-2.webp') center/cover no-repeat;
  opacity: 0.1;
}

.lmk_features-content {
  max-width: 1460px;
  margin: 0 auto;
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
}

.lmk_features-content h2 {
  margin-bottom: 3rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.lmk_features-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lmk_features-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  width: 250px;
  text-align: center;
  transition: var(--lmk_transition-bounce);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lmk_features-card:hover {
  transform: translateY(-15px) rotate(3deg);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.lmk_features-card i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  background: var(--lmk_sunset-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lmk_features-card h3 {
  margin-bottom: 1rem;
  min-height: 2.8rem;
}

.lmk_features-card p {
  line-height: 1.6;
}

.lmk_games-section {
  padding: 6rem 2rem;
  background: white;
}

.lmk_games-container {
  max-width: 1460px;
  margin: 0 auto;
}

.lmk_games-container h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.lmk_games-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lmk_game-card {
  width: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--lmk_shadow-soft);
  transition: var(--lmk_transition-bounce);
  position: relative;
  background: white;
}

.lmk_game-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.lmk_game-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--lmk_neon-gradient);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 2;
}

.lmk_game-card img {
  width: 100%;
  height: 100%;
  max-height: 195px;
}

.lmk_game-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  text-align: center;
  min-height: 8rem;
}

.lmk_game-link {
  display: block;
  text-align: center;
  padding: 1rem;
  background: var(--lmk_ocean-gradient);
  color: white;
  font-weight: bold;
  transition: var(--lmk_transition-smooth);
  margin: 1rem 1.5rem;
  border-radius: 50px;
}

.lmk_game-link:hover {
  background: var(--lmk_magic-gradient);
  transform: scale(1.05);
}

.lmk_game-card i {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: #ff3366;
  opacity: 0.7;
}

.lmk_subscribe-section {
  padding: 6rem 2rem;
  background: var(--lmk_sunset-gradient);
}

.lmk_subscribe-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.lmk_subscribe-container h2 {
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.lmk_subscribe-container p {
  margin-bottom: 3rem;
  font-size: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.lmk_subscribe-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.lmk_subscribe-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  width: 200px;
  transition: var(--lmk_transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lmk_subscribe-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.lmk_subscribe-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  background: var(--lmk_rainbow-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lmk_subscribe-card p {
  margin: 0;
  font-size: 1rem;
}

.lmk_subscribe-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--lmk_shadow-soft);
}

.lmk_form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.lmk_form-group input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  transition: var(--lmk_transition-smooth);
}

.lmk_form-group input:focus {
  outline: none;
  border-color: #ff3366;
  box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.2);
}

.lmk_form-group textarea {
  width: 100%;
  height: 100%;
  min-height: 130px;
  padding: 1rem 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  transition: var(--lmk_transition-smooth);
}

.lmk_form-group textarea:focus {
  outline: none;
  border-color: #ff3366;
  box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.2);
}

.lmk_form-error {
  color: #ff3366;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: block;
  min-height: 1.2rem;
}

.lmk_checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.lmk_checkbox-group input {
  width: auto;
  margin-top: 0.3rem;
}

.lmk_checkbox-group label {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.4;
}

.lmk_checkbox-group a {
  color: #ff3366;
  text-decoration: underline;
}

.lmk_subscribe-button {
  background: var(--lmk_neon-gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  width: 100%;
  transition: var(--lmk_transition-bounce);
}

.lmk_subscribe-button:hover {
  transform: translateY(-5px);
  box-shadow: var(--lmk_shadow-glow);
}

.lmk_subscribe-success {
  display: none;
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--lmk_shadow-soft);
  text-align: center;
}

.lmk_subscribe-success h3 {
  margin-bottom: 1rem;
  color: #00cc66;
}

.lmk_subscribe-success p {
  color: #2c3e50;
  margin-bottom: 2rem;
}

.lmk_success-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.lmk_success-btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  transition: var(--lmk_transition-smooth);
}

.lmk_success-buttons a {
  background: var(--lmk_ocean-gradient);
  color: white;
}

.lmk_unsubscribe-btn {
  background: #f0f0f0;
  color: #333;
}

.lmk_success-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--lmk_shadow-soft);
}

.lmk_faq-section {
  padding: 6rem 2rem;
  background: white;
}

.lmk_faq-container {
  max-width: 1460px;
  margin: 0 auto;
}

.lmk_faq-container h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.lmk_faq-blocks {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.lmk_faq-block {
  flex: 1;
}

.lmk_faq-block h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--lmk_ocean-gradient);
  color: #333;
}

.lmk_faq-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--lmk_shadow-soft);
}

.lmk_faq-question {
  padding: 1.5rem;
  background: #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--lmk_transition-smooth);
}

.lmk_faq-question:hover {
  background: #e9ecef;
}

.lmk_faq-question span {
  font-weight: 600;
  flex: 1;
}

.lmk_faq-question i {
  color: #ff3366;
  transition: var(--lmk_transition-smooth);
}

.lmk_faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--lmk_transition-smooth);
  background: white;
}

.lmk_faq-answer p {
  padding: 1.5rem;
  margin: 0;
}

.lmk_faq-answer a {
  color: #ff3366;
  text-decoration: underline;
}

.lmk_faq-item.active .lmk_faq-question {
  background: var(--lmk_ocean-gradient);
  color: white;
}

.lmk_faq-item.active .lmk_faq-question i {
  transform: rotate(45deg);
  color: white;
}

.lmk_faq-item.active .lmk_faq-answer {
  max-height: 500px;
  padding: 0;
}

.lmk_faq-contact {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.lmk_faq-contact p {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 2rem;
}

.lmk_faq-contact a {
  width: 100%;
  max-width: 220px;
  color: #2c3e50;
  padding: 1rem;
  font-weight: bold;
  text-decoration: underline;
  border-top: 1px solid #e0e0e0;
  border-radius: 25px;
}

.lmk_faq-contact a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--lmk_neon-gradient);
  transition: var(--lmk_transition-smooth);
  border-radius: 25px;
  z-index: -1;
}

.lmk_faq-contact a:hover {
  left: 3px;
  color: white;
  transform: translateY(-3px);
}

.lmk_faq-contact a:hover::before {
  left: 2px;
}

.lmk_reviews-section {
  padding: 6rem 2rem;
  background: var(--lmk_ocean-gradient);
}

.lmk_reviews-container {
  max-width: 1460px;
  margin: 0 auto;
}

.lmk_reviews-container h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.lmk_reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.lmk_review-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--lmk_shadow-soft);
  transition: var(--lmk_transition-bounce);
  display: flex;
  flex-direction: column;
}

.lmk_review-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.lmk_review-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.lmk_review-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}

.lmk_review-info {
  flex: 1;
}

.lmk_review-name {
  display: block;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.lmk_review-location {
  display: block;
  font-size: 0.9rem;
  color: #666;
}

.lmk_review-rating {
  color: #ffcc00;
}

.lmk_review-text {
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.lmk_review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lmk_review-date {
  font-size: 0.9rem;
  color: #666;
}

.lmk_review-footer i {
  font-size: 1.5rem;
  color: #ff3366;
  opacity: 0.7;
}

.lmk_responsible-section {
  padding: 6rem 2rem;
  background: white;
}

.lmk_responsible-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.lmk_responsible-container h2 {
  margin-bottom: 2rem;
  color: #333;
}

.lmk_responsible-content {
  margin-bottom: 3rem;
  text-align: left;
}

.lmk_responsible-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.lmk_responsible-content a {
  color: #ff3366;
  font-weight: bold;
  text-decoration: underline;
}

.lmk_responsible-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.lmk_responsible-partners a {
  transition: var(--lmk_transition-smooth);
}

.lmk_responsible-partners a:hover {
  transform: scale(1.05);
}

.lmk_responsible-symbol {
  margin-top: 2rem;
}

.lmk_site-footer {
  background: var(--lmk_magic-gradient);
  color: white;
  padding: 3rem 2rem 2rem;
}

.lmk_footer-container {
  max-width: 1460px;
  margin: 0 auto;
}

.lmk_footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.lmk_footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lmk_footer-title {
  font-family: 'Marcellus', serif;
  font-size: 2rem;
  font-weight: bold;
}

.lmk_footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.lmk_footer-links a {
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: var(--lmk_transition-smooth);
  position: relative;
  overflow: hidden;
}

.lmk_contact-trigger::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--lmk_neon-gradient);
  transition: var(--lmk_transition-smooth);
  border-radius: 25px;
  z-index: -1;
}

.lmk_contact-trigger:hover {
  left: 3px;
  color: white;
  transform: translateY(-3px);
}

.lmk_contact-trigger:hover::before {
  left: 2px;
}

.lmk_footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
  gap: 1rem;
}

.lmk_footer-icons {
  display: flex;
  gap: 1rem;
}

.lmk_footer-icons i {  
  font-size: 1.5rem;
  border-radius: 25px;
  color: white;
  padding: 0.5rem;
  transition: var(--lmk_transition-smooth);
  position: relative;
  transition: var(--lmk_transition-smooth);
  cursor: pointer;
}

.lmk_contact-trigger i {
  width: 100%;
  max-width: 40px;
  height: 100%;
  max-height: 40px;
}

.lmk_contact-trigger.lmk_footer-icons i::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 40px;
  height: 100%;
  max-height: 40px;
  background: var(--lmk_neon-gradient);
  transition: var(--lmk_transition-smooth);
  border-radius: 25px;
  z-index: -1;
}

.lmk_contact-trigger.lmk_footer-icons i:hover {
  left: 3px;
  color: white;
  transform: translateY(-3px);
}

.lmk_contact-trigger.lmk_footer-icons i:hover::before {
  left: 2px;
}

.lmk_contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9997;
  padding: 1rem;
  overflow-y: auto;
}

.lmk_contact-content {
  background: white;
  border-radius: 20px;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: lmk_modal-appear 0.5s ease-out;
}

.lmk_contact-content::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.lmk_contact-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--lmk_neon-gradient);
  z-index: 1;
  transition: var(--lmk_transition-smooth);
}

.lmk_contact-close:hover {
  color: #ff3366;
  transform: rotate(90deg);
}

.lmk_contact-blocks {
  display: flex;
  min-height: 600px;
}

.lmk_contact-formblock {
  flex: 1;
  padding: 3rem;
  background: #f8f9fa;
}

.lmk_contact-formblock h2 {
  margin-bottom: 2rem;
  color: #333;
}

.lmk_contact-form {
  display: flex;
  flex-direction: column;
}

.lmk_contact-infoblock {
  flex: 1;
  padding: 3rem;
  background: var(--lmk_rainbow-gradient);
  color: white;
}

.lmk_contact-infoblock h3 {
  margin-bottom: 1.5rem;
}

.lmk_contact-infoblock p {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.lmk_contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.lmk_contact-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lmk_contact-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.lmk_contact-card h4 {
  margin-bottom: 0.5rem;
}

.lmk_contact-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.lmk_contact-card a {
  color: #ffcc00;
  text-decoration: underline;
}

.lmk_contact-button {
  background: var(--lmk_neon-gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  margin-top: 1rem;
  transition: var(--lmk_transition-bounce);
}

.lmk_contact-button:hover {
  transform: translateY(-5px);
  box-shadow: var(--lmk_shadow-glow);
}

.lmk_contact-success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9997;
  padding: 1rem;
}

.lmk_success-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  animation: lmk_modal-appear 0.5s ease-out;
}

.lmk_success-content h3 {
  margin-bottom: 1rem;
  color: #00cc66;
}

.lmk_success-content p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.lmk_success-close {
  background: var(--lmk_ocean-gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  transition: var(--lmk_transition-smooth);
}

.lmk_success-close:hover {
  transform: translateY(-3px);
  box-shadow: var(--lmk_shadow-soft);
}

.lmk_unsubscribe-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9997;
  padding: 1rem;
}

.lmk_unsubscribe-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  animation: lmk_modal-appear 0.5s ease-out;
}

.lmk_unsubscribe-content h3 {
  margin-bottom: 1rem;
  color: #ff3366;
}

.lmk_unsubscribe-content p {
  margin-bottom: 2rem;
}

.lmk_unsubscribe-close {
  background: var(--lmk_ocean-gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  transition: var(--lmk_transition-smooth);
}

.lmk_unsubscribe-close:hover {
  transform: translateY(-3px);
  box-shadow: var(--lmk_shadow-soft);
}

.lmk_scroll-top {
  position: fixed;
  bottom: 4rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--lmk_neon-gradient);
  color: white;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 999;
  transition: var(--lmk_transition-bounce);
  box-shadow: var(--lmk_shadow-glow);
}

.lmk_scroll-top:hover {
  transform: translateY(-5px) scale(1.1);
}

@keyframes lmk_modal-appear {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
    min-height: 3.6rem;
  }
  
  h2 {
    font-size: 2.4rem;
    min-height: 2.9rem;
  }
  
  .lmk_about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lmk_about-block img {
    opacity: 0.3;
  }

  .lmk_about-overlay h2 {
    color: #2c3e50;
  }
  
  .lmk_faq-blocks {
    flex-direction: column;
    gap: 2rem;
  }
  
  .lmk_contact-blocks {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    min-height: 3rem;
  }
  
  h2 {
    font-size: 2rem;
    min-height: 2.4rem;
  }
  
  h3 {
    font-size: 1.7rem;
    min-height: 2rem;
  }
  
  .lmk_header-container {
    padding: 1rem;
  }
  
  .lmk_header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    flex-direction: column;
    text-align: center;
  }
  
  .lmk_header-nav.active {
    display: flex;
  }
  
  .lmk_nav-list {
    flex-direction: column;
    gap: 2rem;
  }
  
  .lmk_nav-toggle {
    display: flex;
  }
  
  .lmk_header-brand {
    order: 2;
    margin: 0 auto;
  }
  
  .lmk_nav-toggle {
    order: 1;
  }

  .lmk_nav-link:hover {
    left: 2%;
    color: white;
    transform: translateY(-3px);
  }

  .lmk_nav-link:hover::before {
    left: 1%;
  }
  
  .lmk_features-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .lmk_games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .lmk_reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .lmk_contact-cards {
    grid-template-columns: 1fr;
  }
  
  .lmk_footer-top {
    flex-direction: column;
    text-align: center;
  }
  
  .lmk_footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    padding: 0;
  }
  
  h1 {
    font-size: 2rem;
    min-height: 2.4rem;
  }
  
  h2 {
    font-size: 1.7rem;
    min-height: 2rem;
  }
  
  h3 {
    font-size: 1.4rem;
    min-height: 1.7rem;
  }
  
  .lmk_welcome-section,
  .lmk_about-section,
  .lmk_features-section,
  .lmk_games-section,
  .lmk_subscribe-section,
  .lmk_faq-section,
  .lmk_reviews-section,
  .lmk_responsible-section {
    padding: 4rem 0.5rem;
  }
  
  .lmk_features-cards {
    grid-template-columns: 1fr;
  }
  
  .lmk_games-grid {
    grid-template-columns: 1fr;
  }
  
  .lmk_subscribe-cards {
    grid-template-columns: 1fr;
  }
  
  .lmk_age-content,
  .lmk_subscribe-form,
  .lmk_subscribe-success,
  .lmk_contact-formblock,
  .lmk_contact-infoblock,
  .lmk_success-content,
  .lmk_unsubscribe-content {
    padding: 2rem 1.5rem;
  }
  
  .lmk_age-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .lmk_age-buttons button {
    width: 100%;
    max-width: 250px;
  }
  
  .lmk_age-partners {
    flex-direction: column;
    align-items: center;
  }
  
  .lmk_responsible-partners {
    flex-direction: column;
    align-items: center;
  }
  
  .lmk_cookies-content {
    flex-direction: column;
    text-align: center;
  }
  
  .lmk_success-buttons {
    flex-direction: column;
  }
}

@media (max-width: 320px) {
  .lmk_welcome-section,
  .lmk_about-section,
  .lmk_features-section,
  .lmk_games-section,
  .lmk_subscribe-section,
  .lmk_faq-section,
  .lmk_reviews-section,
  .lmk_responsible-section {
    padding: 3rem 0.3rem;
  }
  
  .lmk_age-content,
  .lmk_subscribe-form,
  .lmk_subscribe-success,
  .lmk_contact-formblock,
  .lmk_contact-infoblock,
  .lmk_success-content,
  .lmk_unsubscribe-content {
    padding: 1.5rem 1rem;
  }
  
  .lmk_welcome-card,
  .lmk_features-card,
  .lmk_subscribe-card {
    width: 100%;
    max-width: 280px;
  }
}

.lmkpages_privacy-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.lmkpages_privacy-hero {
  padding: 6rem 2rem 4rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.lmkpages_privacy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/lmk-engine/lmk-imgs/background-3.webp') center/cover no-repeat;
  opacity: 0.1;
}

.lmkpages_privacy-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lmkpages_privacy-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.lmkpages_privacy-hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.lmkpages_privacy-hero i {
  font-size: 4rem;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lmkpages_bounce 2s infinite;
}

.lmkpages_privacy-content {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.95);
}

.lmkpages_privacy-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.lmkpages_privacy-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #e0e0e0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lmkpages_privacy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.lmkpages_privacy-card:hover::before {
  left: 100%;
}

.lmkpages_privacy-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.lmkpages_privacy-card i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lmkpages_privacy-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  min-height: 3.5rem;
}

.lmkpages_privacy-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.lmkpages_privacy-card a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.lmkpages_privacy-card a:hover {
  text-decoration: underline;
}

.lmkpages_privacy-contact {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  text-align: center;
}

.lmkpages_privacy-contactbox {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  max-width: 500px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.lmkpages_privacy-contactbox:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.lmkpages_privacy-contactbox i {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lmkpages_privacy-contactbox h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.lmkpages_privacy-contactbox p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.lmkpages_contact-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.lmkpages_contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

@keyframes lmkpages_bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .lmkpages_privacy-hero {
    padding: 4rem 1rem 3rem;
  }
  
  .lmkpages_privacy-hero h1 {
    font-size: 2.5rem;
  }
  
  .lmkpages_privacy-hero p {
    font-size: 1.1rem;
  }
  
  .lmkpages_privacy-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .lmkpages_privacy-card {
    padding: 2rem;
  }
  
  .lmkpages_privacy-content {
    padding: 3rem 1rem;
  }
  
  .lmkpages_privacy-contact {
    padding: 3rem 1rem;
  }
  
  .lmkpages_privacy-contactbox {
    padding: 2rem;
    margin: 0 1rem;
  }
}

@media (max-width: 480px) {
  .lmkpages_privacy-hero h1 {
    font-size: 2rem;
  }
  
  .lmkpages_privacy-hero p {
    font-size: 1rem;
  }
  
  .lmkpages_privacy-card {
    padding: 1.5rem;
  }
  
  .lmkpages_privacy-card h2 {
    font-size: 1.3rem;
  }
  
  .lmkpages_privacy-contactbox {
    padding: 1.5rem;
  }
  
  .lmkpages_privacy-contactbox h3 {
    font-size: 1.5rem;
  }
}

.lmkpages_terms-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
}

.lmkpages_terms-header {
  padding: 5rem 2rem 3rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.lmkpages_terms-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(transparent, rgba(255,255,255,0.1));
}

.lmkpages_terms-titlebox {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lmkpages_terms-titlebox h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.lmkpages_terms-titlebox p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.lmkpages_terms-titlebox i {
  font-size: 4rem;
  background: linear-gradient(45deg, #fff, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lmkpages_spin 3s linear infinite;
}

.lmkpages_terms-accordion {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.lmkpages_terms-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}

.lmkpages_terms-answer p {
  padding: 0 2rem 2rem;
  margin: 0;
  color: #666;
  line-height: 1.7;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.lmkpages_terms-item.active .lmkpages_terms-answer {
  max-height: 500px;
}

.lmkpages_terms-item.active .lmkpages_terms-toggle {
  transform: rotate(45deg);
}

.lmkpages_terms-answer p {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease 0.2s;
}

.lmkpages_terms-item.active .lmkpages_terms-answer p {
  opacity: 1;
  transform: translateY(0);
}

.lmkpages_terms-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.lmkpages_terms-item {
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.lmkpages_terms-item:last-child {
  border-bottom: none;
}

.lmkpages_terms-item:hover {
  background: rgba(255, 107, 107, 0.05);
}

.lmkpages_terms-question {
  padding: 2rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 1.5rem;
}

.lmkpages_terms-question:hover {
  background: rgba(255, 107, 107, 0.1);
}

.lmkpages_terms-question i {
  font-size: 2rem;
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}

.lmkpages_terms-question h2 {
  font-size: 1.4rem;
  color: #333;
  margin: 0;
  flex: 1;
  min-height: auto;
}

.lmkpages_terms-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff6b6b;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.lmkpages_terms-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}

.lmkpages_terms-answer p {
  padding: 0 2rem 2rem;
  margin: 0;
  color: #666;
  line-height: 1.7;
  font-size: 1.05rem;
}

.lmkpages_terms-answer a {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: 600;
}

.lmkpages_terms-answer a:hover {
  text-decoration: underline;
}

.lmkpages_terms-item.active .lmkpages_terms-answer {
  max-height: 500px;
}

.lmkpages_terms-item.active .lmkpages_terms-toggle {
  transform: rotate(45deg);
}

.lmkpages_terms-summary {
  padding: 3rem 2rem;
  text-align: center;
}

.lmkpages_terms-highlight {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.lmkpages_terms-highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.lmkpages_terms-highlight i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.lmkpages_terms-highlight h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.lmkpages_terms-highlight p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

@keyframes lmkpages_spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .lmkpages_terms-header {
    padding: 4rem 1rem 2rem;
  }
  
  .lmkpages_terms-titlebox h1 {
    font-size: 2.5rem;
  }
  
  .lmkpages_terms-titlebox p {
    font-size: 1.1rem;
  }
  
  .lmkpages_terms-accordion {
    padding: 1rem;
  }

  .lmkpages_terms-answer p {
    padding: 0 1.5rem 1.5rem;
  }
  
  .lmkpages_terms-question {
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .lmkpages_terms-question h2 {
    font-size: 1.2rem;
  }
  
  .lmkpages_terms-answer p {
    padding: 0 1.5rem 1.5rem;
  }
  
  .lmkpages_terms-summary {
    padding: 2rem 1rem;
  }
  
  .lmkpages_terms-highlight {
    padding: 2rem;
    margin: 0 1rem;
  }
}

@media (max-width: 480px) {
  .lmkpages_terms-titlebox h1 {
    font-size: 2rem;
  }
  
  .lmkpages_terms-question {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .lmkpages_terms-question h2 {
    font-size: 1.1rem;
  }
  
  .lmkpages_terms-highlight {
    padding: 1.5rem;
  }
  
  .lmkpages_terms-highlight h3 {
    font-size: 1.5rem;
  }
  
  .lmkpages_terms-highlight p {
    font-size: 1rem;
  }
}

.lmkpages_cookies-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.lmkpages_cookies-intro {
  padding: 5rem 2rem 3rem;
  text-align: center;
  color: #2c3e50;
}

.lmkpages_cookies-banner {
  max-width: 800px;
  margin: 0 auto;
}

.lmkpages_cookies-banner h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #2c3e50, #3498db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lmkpages_cookies-banner p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #34495e;
  line-height: 1.6;
}

.lmkpages_cookies-icon {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.lmkpages_cookies-icon i {
  font-size: 4rem;
  background: linear-gradient(135deg, #e74c3c, #e67e22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lmkpages_pulse 2s ease-in-out infinite;
}

.lmkpages_cookies-icon i:last-child {
  animation-delay: 0.5s;
}

.lmkpages_cookies-info {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.9);
}

.lmkpages_cookies-content {
  max-width: 1000px;
  margin: 0 auto;
}

.lmkpages_cookies-section {
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #3498db;
}

.lmkpages_cookies-section:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.lmkpages_cookies-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.lmkpages_cookies-header i {
  font-size: 2rem;
  color: #3498db;
}

.lmkpages_cookies-header h2 {
  font-size: 1.6rem;
  color: #2c3e50;
  margin: 0;
  min-height: auto;
}

.lmkpages_cookies-section p {
  color: #5d6d7e;
  line-height: 1.7;
  font-size: 1.05rem;
  margin: 0;
}

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

.lmkpages_cookie-type {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.lmkpages_cookie-type:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

.lmkpages_cookie-type i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lmkpages_cookie-type h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.lmkpages_cookie-type p {
  color: #5d6d7e;
  line-height: 1.6;
  font-size: 0.95rem;
}

.lmkpages_cookies-actions {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
}

.lmkpages_cookies-controls {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.lmkpages_cookies-controls h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.lmkpages_cookies-controls p {
  color: #5d6d7e;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.lmkpages_cookie-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lmkpages_cookie-btns button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.lmkpages_cookie-accept {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
}

.lmkpages_cookie-customize {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
}

.lmkpages_cookie-reject {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
}

.lmkpages_cookie-btns button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.lmkpages_cookie-success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.lmkpages_cookie-success-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  animation: lmkpages_modal-appear 0.5s ease-out;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.lmkpages_cookie-success-content i {
  font-size: 4rem;
  color: #2ecc71;
  margin-bottom: 1.5rem;
  display: block;
}

.lmkpages_cookie-success-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.lmkpages_cookie-success-content p {
  color: #5d6d7e;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

.lmkpages_cookie-success-close {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.lmkpages_cookie-success-close:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

@keyframes lmkpages_pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes lmkpages_modal-appear {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 768px) {
  .lmkpages_cookies-intro {
    padding: 4rem 1rem 2rem;
  }
  
  .lmkpages_cookies-banner h1 {
    font-size: 2.5rem;
  }
  
  .lmkpages_cookies-banner p {
    font-size: 1.1rem;
  }
  
  .lmkpages_cookies-info {
    padding: 2rem 1rem;
  }
  
  .lmkpages_cookies-section {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .lmkpages_cookies-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .lmkpages_cookies-types {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .lmkpages_cookies-actions {
    padding: 3rem 1rem;
  }
  
  .lmkpages_cookies-controls {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .lmkpages_cookie-btns {
    flex-direction: column;
    align-items: center;
  }
  
  .lmkpages_cookie-btns button {
    width: 100%;
    max-width: 250px;
  }

  .lmkpages_cookie-success-content {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .lmkpages_cookie-success-content i {
    font-size: 3rem;
  }
  
  .lmkpages_cookie-success-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .lmkpages_cookies-banner h1 {
    font-size: 2rem;
  }
  
  .lmkpages_cookies-section {
    padding: 1.5rem;
  }
  
  .lmkpages_cookies-header h2 {
    font-size: 1.3rem;
  }
  
  .lmkpages_cookies-controls {
    padding: 1.5rem;
  }
  
  .lmkpages_cookies-controls h3 {
    font-size: 1.5rem;
  }

  .lmkpages_cookie-success-content {
    padding: 1.5rem;
  }
  
  .lmkpages_cookie-success-content h3 {
    font-size: 1.3rem;
  }
  
  .lmkpages_cookie-success-content p {
    font-size: 1rem;
  }
}

.lmkpages_responsible-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.lmkpages_responsible-hero {
  padding: 5rem 2rem 3rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.lmkpages_responsible-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/lmk-engine/lmk-imgs/background-4.webp') center/cover no-repeat;
  opacity: 0.1;
}

.lmkpages_responsible-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lmkpages_responsible-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.lmkpages_responsible-hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.lmkpages_responsible-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.lmkpages_responsible-icons i {
  font-size: 3.5rem;
  background: linear-gradient(45deg, #fff, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lmkpages_float 3s ease-in-out infinite;
}

.lmkpages_responsible-icons i:nth-child(2) {
  animation-delay: 0.5s;
}

.lmkpages_responsible-icons i:nth-child(3) {
  animation-delay: 1s;
}

.lmkpages_responsible-tips {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.95);
}

.lmkpages_responsible-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.lmkpages_responsible-wrapper h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.lmkpages_responsible-wrapper p {
  font-size: 1.2rem;
  color: #5d6d7e;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.lmkpages_tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.lmkpages_tip-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.lmkpages_tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.lmkpages_tip-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.lmkpages_tip-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  font-weight: bold;
  color: rgba(79, 172, 254, 0.1);
  line-height: 1;
}

.lmkpages_tip-card i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lmkpages_tip-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  min-height: 3rem;
}

.lmkpages_tip-card p {
  color: #5d6d7e;
  line-height: 1.6;
  margin: 0;
}

.lmkpages_responsible-resources {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.lmkpages_responsible-resourcebox {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.lmkpages_responsible-resourcebox h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.lmkpages_responsible-resourcebox p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  opacity: 0.9;
}

.lmkpages_resource-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.lmkpages_resource-link {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lmkpages_resource-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.lmkpages_resource-link i {
  font-size: 2.5rem;
}

.lmkpages_resource-link span {
  font-weight: 600;
  font-size: 1.1rem;
}

.lmkpages_emergency-contact {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 15px;
  color: #2c3e50;
  margin-top: 2rem;
}

.lmkpages_emergency-contact i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #e74c3c;
}

.lmkpages_emergency-contact h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.lmkpages_emergency-contact p {
  color: #5d6d7e;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.lmkpages_emergency-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.lmkpages_emergency-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

@keyframes lmkpages_float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .lmkpages_responsible-hero {
    padding: 4rem 1rem 2rem;
  }
  
  .lmkpages_responsible-hero h1 {
    font-size: 2.5rem;
  }
  
  .lmkpages_responsible-hero p {
    font-size: 1.1rem;
  }
  
  .lmkpages_responsible-icons {
    gap: 1rem;
  }
  
  .lmkpages_responsible-icons i {
    font-size: 2.5rem;
  }
  
  .lmkpages_responsible-tips {
    padding: 3rem 1rem;
  }
  
  .lmkpages_responsible-wrapper h2 {
    font-size: 2rem;
  }
  
  .lmkpages_tips-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .lmkpages_tip-card {
    padding: 2rem 1.5rem;
  }
  
  .lmkpages_responsible-resources {
    padding: 3rem 1rem;
  }
  
  .lmkpages_resource-links {
    grid-template-columns: 1fr;
  }
  
  .lmkpages_emergency-contact {
    padding: 2rem;
    margin: 0 1rem;
  }
}

@media (max-width: 480px) {
  .lmkpages_responsible-hero h1 {
    font-size: 2rem;
  }
  
  .lmkpages_responsible-wrapper h2 {
    font-size: 1.7rem;
  }
  
  .lmkpages_tip-card h3 {
    font-size: 1.2rem;
  }
  
  .lmkpages_emergency-contact {
    padding: 1.5rem;
  }
  
  .lmkpages_emergency-contact h3 {
    font-size: 1.5rem;
  }
}

.lmkpages_404-main {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lmkpages_404-container {
  max-width: 800px;
  width: 100%;
}

.lmkpages_404-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lmkpages_404-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  animation: lmkpages_shine 3s ease-in-out infinite;
}

.lmkpages_404-animation {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 2rem;
}

.lmkpages_404-orb {
  position: absolute;
  border-radius: 50%;
  animation: lmkpages_orbfloat 3s ease-in-out infinite;
}

.lmkpages_404-orb1 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.lmkpages_404-orb2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  top: 35px;
  left: 35px;
  animation-delay: 0.5s;
}

.lmkpages_404-orb3 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  top: 45px;
  left: 45px;
  animation-delay: 1s;
}

.lmkpages_404-animation i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  z-index: 2;
  animation: lmkpages_searchpulse 2s ease-in-out infinite;
}

.lmkpages_404-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  position: relative;
  z-index: 1;
}

.lmkpages_404-content p {
  font-size: 1.2rem;
  color: #5d6d7e;
  line-height: 1.6;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.lmkpages_404-suggestions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.lmkpages_404-suggestion {
  padding: 2rem 1.5rem;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.lmkpages_404-suggestion:hover {
  transform: translateY(-5px);
  background: rgba(102, 126, 234, 0.1);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
}

.lmkpages_404-suggestion i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lmkpages_404-suggestion h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.lmkpages_404-suggestion p {
  font-size: 0.95rem;
  color: #5d6d7e;
  margin: 0;
  line-height: 1.5;
}

.lmkpages_404-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.lmkpages_404-homebtn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.lmkpages_404-contactbtn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #667eea;
}

.lmkpages_404-homebtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.lmkpages_404-contactbtn:hover {
  transform: translateY(-3px);
  background: #667eea;
  color: white;
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.2);
}

@keyframes lmkpages_orbfloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(120deg);
  }
  66% {
    transform: translateY(5px) rotate(240deg);
  }
}

@keyframes lmkpages_searchpulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes lmkpages_shine {
  0% {
    transform: rotate(45deg) translateX(-100%);
  }
  100% {
    transform: rotate(45deg) translateX(100%);
  }
}

@media (max-width: 768px) {
  .lmkpages_404-main {
    padding: 1rem;
  }
  
  .lmkpages_404-content {
    padding: 3rem 2rem;
  }
  
  .lmkpages_404-content h1 {
    font-size: 2.5rem;
  }
  
  .lmkpages_404-content p {
    font-size: 1.1rem;
  }
  
  .lmkpages_404-suggestions {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .lmkpages_404-suggestion {
    padding: 1.5rem;
  }
  
  .lmkpages_404-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .lmkpages_404-homebtn,
  .lmkpages_404-contactbtn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .lmkpages_404-content {
    padding: 2rem 1.5rem;
  }
  
  .lmkpages_404-content h1 {
    font-size: 2rem;
  }
  
  .lmkpages_404-content p {
    font-size: 1rem;
  }
  
  .lmkpages_404-animation {
    width: 120px;
    height: 120px;
  }
  
  .lmkpages_404-orb1 {
    width: 80px;
    height: 80px;
  }
  
  .lmkpages_404-orb2 {
    width: 60px;
    height: 60px;
    top: 30px;
    left: 30px;
  }
  
  .lmkpages_404-orb3 {
    width: 40px;
    height: 40px;
    top: 40px;
    left: 40px;
  }
  
  .lmkpages_404-animation i {
    font-size: 2rem;
  }
}