:root {
  --main-bg: #181a20;
  --accent: #00e0ca;
  --text: #fff;
  --secondary: #23272f;
  --border-radius: 12px;
  --shadow: 0 2px 16px rgba(0,0,0,0.12);
  --font-main: 'Segoe UI', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--main-bg);
  color: var(--text);
  line-height: 1.6;
}

header, footer {
  background: var(--secondary);
  padding: 24px 0;
  text-align: center;
  box-shadow: var(--shadow);
}

nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}

nav a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

nav a:hover {
  color: #fff;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 48px 16px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(24,26,32,0.45);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero .cta {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 38px;
  background: linear-gradient(90deg, #00e0ca 0%, #00bfa3 100%);
  color: #181a20;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(0,224,202,0.12);
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.hero .cta:hover, .hero .cta:focus {
  background: linear-gradient(90deg, #00bfa3 0%, #00e0ca 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(0,224,202,0.18);
  outline: none;
}

section {
  margin: 48px auto;
  max-width: 1100px;
  padding: 0 16px;
}

h2 {
  color: var(--accent);
  margin-bottom: 16px;
}

.benefits, .categories, .reviews, .faq {
  display: grid;
  gap: 32px;
}

.benefits {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 32px;
}

.benefit {
  background: linear-gradient(120deg, #23272f 60%, #00e0ca22 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 32px 20px 28px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.15s, box-shadow 0.15s;
}

.benefit:hover, .benefit:focus-within {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,224,202,0.18);
  z-index: 2;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  width: 64px;
  height: 64px;
  background: #181a20;
  border-radius: 50%;
  box-shadow: 0 2px 16px rgba(0,224,202,0.10);
}

.benefit h3 {
  color: var(--accent);
  margin: 12px 0 8px 0;
  font-size: 1.18rem;
}

.benefit p {
  color: #fff;
  font-size: 1.04rem;
  margin: 0;
}

.categories {
  grid-template-columns: 1fr;
}

.category {
  background: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 32px;
  padding: 24px;
}

.skins {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.skin {
  background: linear-gradient(120deg, #00e0ca 0%, #181a20 100%);
  border-radius: var(--border-radius);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

.skin img {
  width: 150px;
  height: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

.promo, .why-us, .about, .subscription {
  background: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  margin-bottom: 32px;
}

.promo-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(90deg, #00e0ca 0%, #181a20 100%);
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
  padding: 32px 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.promo-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,224,202,0.15);
  width: 80px;
  height: 80px;
}

.promo-content {
  flex: 1 1 260px;
  color: #fff;
}

.promo-content h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #fff;
}

.promo-content p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #eafffa;
}

.promo-btn.modern-link {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #181a20;
  background: linear-gradient(90deg, #fff 0%, #00e0ca 100%);
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 16px rgba(0,224,202,0.18);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.promo-btn.modern-link:hover, .promo-btn.modern-link:focus {
  background: linear-gradient(90deg, #00e0ca 0%, #fff 100%);
  color: #00e0ca;
  box-shadow: 0 4px 24px rgba(0,224,202,0.28);
}

.reviews {
  margin: 48px auto 32px auto;
  text-align: center;
}
.reviews h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #00e0ca;
}
.reviews-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.review-card {
  background: linear-gradient(120deg, #181a20 60%, #00e0ca 100%);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,224,202,0.10);
  padding: 24px 20px 20px 20px;
  max-width: 320px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.review-card:hover, .review-card:focus {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,224,202,0.18);
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e0ca 60%, #181a20 100%);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,224,202,0.12);
  margin-right: 8px;
  flex-shrink: 0;
}
.review-content {
  text-align: left;
}
.review-text {
  font-size: 1.08rem;
  margin-bottom: 8px;
  font-style: italic;
  color: #eafffa;
}
.review-author {
  font-size: 1rem;
  color: #00e0ca;
  font-weight: 600;
}
@media (max-width: 900px) {
  .reviews-list {
    gap: 16px;
  }
  .review-card {
    max-width: 100%;
    min-width: 0;
    flex: 1 1 100%;
  }
}
@media (max-width: 600px) {
  .reviews-list {

    gap: 12px;
  }
  .review-card {
    padding: 16px 10px 14px 10px;
    font-size: 0.98rem;
  }
  .review-avatar {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}
.subscription {
  background: linear-gradient(120deg, #00e0ca 0%, #181a20 100%);
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,224,202,0.10);
  padding: 40px 32px;
  margin: 48px auto 32px auto;
  max-width: 600px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.subscription::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  z-index: 0;
}

.subscription h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.subscription-desc {
  font-size: 1.15rem;
  color: #eafffa;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.subscription form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.subscription input[type="email"] {
  padding: 12px;
  border-radius: 8px;
  border: none;
  min-width: 220px;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(0,224,202,0.10);
}

.subscription button {
  background: linear-gradient(90deg, #fff 0%, #00e0ca 100%);
  color: #181a20;
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  font-weight: bold;
  font-size: 1.08rem;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(0,224,202,0.18);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.subscription button:hover, .subscription button:focus {
  background: linear-gradient(90deg, #00e0ca 0%, #fff 100%);
  color: #00e0ca;
  box-shadow: 0 4px 24px rgba(0,224,202,0.28);
}

.faq {
  background: linear-gradient(120deg, #23272f 60%, #00e0ca22 100%);
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,224,202,0.10);
  padding: 40px 32px;
  margin: 48px auto 32px auto;
  max-width: 800px;
  text-align: left;
}
.faq h2 {
  color: #00e0ca;
  font-size: 2rem;
  margin-bottom: 24px;
  text-align: center;
}
.faq-list {
  display: grid;
  gap: 20px;
}
.faq-item {
  background: #20232a;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,224,202,0.08);
  padding: 22px 20px 18px 20px;
  font-size: 1.08rem;
  color: #fff;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 8px 32px rgba(0,224,202,0.18);
  transform: translateY(-2px) scale(1.02);
  z-index: 2;
}
.faq-item b {
  color: #00e0ca;
  font-size: 1.12rem;
}
@media (max-width: 700px) {
  .faq {
    padding: 18px 6px;
    max-width: 98vw;
  }
  .faq h2 {
    font-size: 1.3rem;
  }
  .faq-item {
    padding: 14px 8px 12px 8px;
    font-size: 0.98rem;
  }
}
@media (max-width: 700px) {
  .hero {
    min-height: 180px;
    padding: 32px 8px;
  }
  section {
    margin: 24px auto;
  }
  .category {
    padding: 12px;
  }
  .promo, .why-us, .about, .subscription {
    padding: 16px 8px;
  }
  .promo-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 10px;
    gap: 18px;
  }
  .promo-icon {
    width: 60px;
    height: 60px;
  }
  .promo-content h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 800px) {
  header > div {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #menu-toggle {
    display: block !important;
  }
  nav#main-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--secondary);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100vw;
    box-shadow: var(--shadow);
    z-index: 100;
    padding: 16px 0;
    text-align: center;
  }
  nav#main-nav.open {
    display: flex;
  }
  nav#main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid #2226;
    font-size: 1.2rem;
  }
}

@media (max-width: 500px) {
  header > div span {
    font-size: 1.1rem !important;
  }
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,26,32,0.75);
  transition: opacity 0.2s;
}
.modal-content {
  background: linear-gradient(120deg, #00e0ca 0%, #181a20 100%);
  color: #fff;
  padding: 36px 28px 28px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,224,202,0.18);
  text-align: center;
  max-width: 350px;
  width: 90vw;
  position: relative;
  animation: modalIn 0.25s cubic-bezier(.4,2,.6,1) both;
  margin: auto;
}
@keyframes modalIn {
  0% { transform: scale(0.85) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.modal-content h3 {
  margin-top: 0;
  color: #fff;
  font-size: 1.4rem;
}
.modal-content p {
  color: #eafffa;
  font-size: 1.08rem;
  margin-bottom: 0;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 2;
  outline: none;
}
.modal-close:hover, .modal-close:focus {
  color: #00e0ca;
}

.why-us {
  background: linear-gradient(120deg, #00e0ca 0%, #181a20 100%);
  border-radius: 28px;
  box-shadow: 0 4px 32px rgba(0,224,202,0.10);
  padding: 48px 32px;
  margin: 48px auto 32px auto;
  max-width: 1100px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-us h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 36px;
  letter-spacing: 1px;
}
.whyus-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  justify-items: center;
}
.whyus-card {
  background: #20232a;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0,224,202,0.10);
  padding: 36px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
  min-height: 260px;
}
.whyus-card:hover, .whyus-card:focus-within {
  box-shadow: 0 8px 32px rgba(0,224,202,0.18);
  transform: translateY(-4px) scale(1.03);
  z-index: 2;
}
.whyus-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 16px rgba(0,224,202,0.10);
}
.whyus-title {
  color: #00e0ca;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
.whyus-desc {
  color: #eafffa;
  font-size: 1.05rem;
  text-align: center;
}
@media (max-width: 900px) {
  .why-us {
    padding: 24px 8px;
  }
  .whyus-list {
    gap: 18px;
  }
  .whyus-card {
    padding: 20px 8px 16px 8px;
    min-height: 180px;
  }
  .whyus-title {
    font-size: 1.05rem;
  }
}

.skins-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  justify-content: center;
}
.filter-btn {
  background: linear-gradient(90deg, #00e0ca 0%, #181a20 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,224,202,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
}
.filter-btn.active, .filter-btn:hover, .filter-btn:focus {
  background: linear-gradient(90deg, #181a20 0%, #00e0ca 100%);
  color: #00e0ca;
  box-shadow: 0 4px 24px rgba(0,224,202,0.18);
}
@media (max-width: 700px) {
  .skins-filter {
    gap: 8px;
    margin-bottom: 18px;
  }
  .filter-btn {
    padding: 8px 14px;
    font-size: 0.98rem;
  }
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(24,26,32,0.98);
  color: #fff;
  padding: 18px 8px 12px 8px;
  box-shadow: 0 -2px 16px 0 rgba(0,0,0,0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}
.cookie-banner-content {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin: 0 auto;
}
.cookie-banner-content span {
  line-height: 1.5;
}
.cookie-banner-content a {
  color: #00e0ca;
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.cookie-banner-actions button {
  background: #00e0ca;
  color: #181a20;
  border: none;
  border-radius: 4px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-banner-actions button:hover {
  background: #00bfa3;
}
@media (max-width: 600px) {
  .cookie-banner-content {
    font-size: 0.95rem;
    padding: 0 2px;
  }
  .cookie-banner {
    padding: 14px 2px 8px 2px;
  }
  .cookie-banner-actions button {
    padding: 8px 10px;
    font-size: 0.95rem;
  }
}
