/* futuristic teen sex doll review site - teenssex.net */
/* design futuriste avec effets néon et ambiance technologique */

:root {
  --primary-color: #00f3ff;
  --secondary-color: #ff00ff;
  --accent-color: #7b2cbf;
  --bg-dark: #0a0a0f;
  --bg-card: #13131a;
  --bg-card-hover: #1a1a24;
  --text-primary: #e0e0e0;
  --text-secondary: #a0a0a0;
  --neon-glow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
  --neon-glow-pink: 0 0 10px var(--secondary-color), 0 0 20px var(--secondary-color);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* animated background avec effets tech */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 243, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: pulse_bg 8s ease-in-out infinite;
}

@keyframes pulse_bg {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* header avec effet néon */
header {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 243, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 243, 255, 0.1);
}

.header_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--text-primary);
  text-transform: lowercase;
  position: relative;
  transition: var(--transition);
}

.logo::before {
  content: "▸";
  color: var(--primary-color);
  margin-right: 0.5rem;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.3; }
}

.logo:hover {
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
}

/* navigation futuriste */
.menu_toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid rgba(0, 243, 255, 0.2);
  border-radius: 6px;
  transition: var(--transition);
}

.menu_toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
  border-radius: 2px;
}

.menu_toggle:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.menu_toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu_toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu_toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(0, 243, 255, 0.2);
  border-radius: 6px;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  font-weight: 500;
  text-transform: lowercase;
  white-space: nowrap;
}

nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
  transition: left 0.5s;
}

nav a:hover::before {
  left: 100%;
}

nav a:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
  transform: translateY(-2px);
}

/* container principal */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* hero section avec animations */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
  border-radius: 12px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 243, 255, 0.15);
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 243, 255, 0.03) 2px,
    rgba(0, 243, 255, 0.03) 4px
  );
  animation: scan 8s linear infinite;
  pointer-events: none;
}

@keyframes scan {
  0% { transform: translateY(0); }
  100% { transform: translateY(50px); }
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: lowercase;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero .tech_badge {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 243, 255, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--primary-color);
  text-transform: lowercase;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* filtres catégories avec style tech */
.filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(19, 19, 26, 0.6);
  border-radius: 10px;
  border: 1px solid rgba(0, 243, 255, 0.1);
}

.filter_btn {
  padding: 0.7rem 1.5rem;
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid rgba(0, 243, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: lowercase;
  position: relative;
}

.filter_btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.filter_btn:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.filter_btn.active {
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(255, 0, 255, 0.2));
  color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.filter_btn.active::after {
  width: 80%;
}

/* grid produits futuriste */
.products_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* card produit avec effets néon */
.product_card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 243, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

.product_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.05), rgba(255, 0, 255, 0.05));
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.product_card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 40px rgba(0, 243, 255, 0.3), 0 0 0 1px var(--primary-color);
}

.product_card:hover::before {
  opacity: 1;
}

.product_image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #0f0f15;
}

.product_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  filter: brightness(0.9);
}

.product_card:hover .product_image img {
  transform: scale(1.05);
  filter: brightness(1);
}

.product_badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 243, 255, 0.9);
  color: var(--bg-dark);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.6);
  animation: pulse_badge 2s infinite;
}

@keyframes pulse_badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.product_info {
  padding: 1.5rem;
}

.product_name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  text-transform: lowercase;
}

.product_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  background: rgba(0, 243, 255, 0.1);
  border: 1px solid rgba(0, 243, 255, 0.3);
  border-radius: 4px;
  color: var(--primary-color);
  text-transform: lowercase;
}

.product_price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.product_rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  color: #ffc107;
  font-size: 0.9rem;
}

.rating_count {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.product_btn {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--bg-dark);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: lowercase;
  position: relative;
  overflow: hidden;
}

.product_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.product_btn:hover::before {
  width: 300px;
  height: 300px;
}

.product_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 243, 255, 0.5);
}

/* page review */
.review_page {
  max-width: 900px;
  margin: 0 auto;
}

.review_header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.05), rgba(255, 0, 255, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(0, 243, 255, 0.15);
}

.review_header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-transform: lowercase;
  font-weight: 800;
}

.review_image {
  max-width: 500px;
  margin: 0 auto 2rem;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(0, 243, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 243, 255, 0.2);
}

.review_image img {
  width: 100%;
  height: auto;
  display: block;
}

.review_meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.meta_item {
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(0, 243, 255, 0.2);
  border-radius: 8px;
}

.meta_label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
  text-transform: lowercase;
}

.meta_value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.review_content {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 243, 255, 0.1);
  line-height: 1.8;
}

.review_content h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-transform: lowercase;
  font-weight: 800;
}

.review_content h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-transform: lowercase;
  font-weight: 700;
  position: relative;
  padding-left: 1rem;
}

.review_content h2::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.review_content p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.coupon_box {
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.15), rgba(255, 0, 255, 0.15));
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.coupon_box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0, 243, 255, 0.05) 10px,
    rgba(0, 243, 255, 0.05) 20px
  );
  animation: slide_pattern 10s linear infinite;
}

@keyframes slide_pattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, 20px); }
}

.coupon_label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.coupon_code {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: "Courier New", monospace;
  text-shadow: var(--neon-glow);
  position: relative;
  z-index: 1;
}

.buy_button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--bg-dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  transition: var(--transition);
  text-transform: lowercase;
  box-shadow: 0 5px 30px rgba(0, 243, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.buy_button::before {
  content: "→";
  position: absolute;
  right: -30px;
  transition: var(--transition);
}

.buy_button:hover::before {
  right: 20px;
}

.buy_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0, 243, 255, 0.6);
}

/* commentaires avec style tech */
.comments_section {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 243, 255, 0.1);
}

.comments_section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-transform: lowercase;
  font-weight: 800;
}

.comment {
  padding: 1.5rem;
  background: rgba(10, 10, 15, 0.5);
  border-left: 3px solid var(--primary-color);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.comment:hover {
  background: rgba(10, 10, 15, 0.8);
  border-left-color: var(--secondary-color);
  transform: translateX(5px);
}

.comment_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.comment_author {
  font-weight: 700;
  color: var(--primary-color);
}

.comment_date {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.comment_rating {
  color: #ffc107;
  font-size: 0.9rem;
}

.comment_text {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* similar reviews section */
.similar_reviews {
  margin-top: 3rem;
}

.similar_reviews h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-primary);
  text-transform: lowercase;
  font-weight: 800;
}

/* breadcrumbs futuriste */
.breadcrumb {
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(19, 19, 26, 0.6);
  border-radius: 8px;
  border: 1px solid rgba(0, 243, 255, 0.1);
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb span {
  color: var(--text-secondary);
  margin: 0 0.5rem;
}

.breadcrumb .current {
  color: var(--primary-color);
}

/* footer futuriste */
footer {
  background: var(--bg-card);
  border-top: 1px solid rgba(0, 243, 255, 0.2);
  margin-top: 5rem;
  padding: 3rem 2rem 2rem;
}

.footer_content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer_section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-transform: lowercase;
  font-weight: 700;
}

.footer_section ul {
  list-style: none;
}

.footer_section a {
  color: var(--text-secondary);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: var(--transition);
  text-transform: lowercase;
}

.footer_section a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer_bottom {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 243, 255, 0.1);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* disclaimer 18+ modal */
.age_disclaimer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fade_in 0.3s;
}

@keyframes fade_in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.disclaimer_content {
  background: var(--bg-card);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 3rem;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 0 50px rgba(0, 243, 255, 0.5);
  animation: slide_up 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slide_up {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.disclaimer_content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-transform: lowercase;
}

.disclaimer_content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.disclaimer_buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.disclaimer_btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: lowercase;
  font-size: 1rem;
}

.btn_accept {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--bg-dark);
}

.btn_accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 243, 255, 0.5);
}

.btn_decline {
  background: rgba(255, 0, 0, 0.2);
  color: #ff4444;
  border: 1px solid #ff4444;
}

.btn_decline:hover {
  background: rgba(255, 0, 0, 0.3);
}

/* pages ressources & légales */
.content_page {
  max-width: 900px;
  margin: 0 auto;
}

.content_page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-transform: lowercase;
  font-weight: 800;
}

.content_page h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-transform: lowercase;
  font-weight: 700;
}

.content_page p {
  margin-bottom: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.content_page ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  color: var(--text-secondary);
}

.content_page li {
  margin-bottom: 0.8rem;
}

.faq_item {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 243, 255, 0.1);
  transition: var(--transition);
}

.faq_item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(0, 243, 255, 0.2);
}

.faq_question {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  text-transform: lowercase;
}

.faq_answer {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* innovation badges */
.innovation_badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.15), rgba(255, 0, 255, 0.15));
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--primary-color);
  margin: 0.3rem;
  text-transform: lowercase;
}

.innovation_badge::before {
  content: "◆";
  font-size: 0.7rem;
}

/* responsive design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .products_grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .header_container {
    position: relative;
  }
  
  .menu_toggle {
    display: flex;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 1000;
  }
  
  nav.active {
    max-height: 500px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
  }
  
  nav ul {
    flex-direction: column;
    padding: 1rem;
    gap: 0.8rem;
  }
  
  nav a {
    display: block;
    text-align: center;
    width: 100%;
  }
  
  .review_header h1 {
    font-size: 1.8rem;
  }
  
  .review_content {
    padding: 1.5rem;
  }
  
  .disclaimer_content {
    margin: 1rem;
    padding: 2rem;
  }
  
  .disclaimer_buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .products_grid {
    grid-template-columns: 1fr;
  }
  
  .coupon_code {
    font-size: 1.5rem;
  }
}

/* loading animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 243, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
