:root {
  --primary-color: #8d230f;
  --secondary-color: #1e434c;
  --accent-color: #9b4f0f;
  --highlight-color: #c99e10;

  --primary-gradient: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  --secondary-gradient: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  --accent-gradient: linear-gradient(
    135deg,
    var(--accent-color),
    var(--highlight-color)
  );
  --warm-gradient: linear-gradient(
    135deg,
    var(--primary-color),
    var(--highlight-color)
  );

  --bg-color: #0f1419;
  --card-bg: #1a1f2e;
  --section-bg: #141922;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(
    135deg,
    var(--bg-color) 0%,
    #0a0e14 50%,
    var(--secondary-color) 100%
  );
  background-attachment: fixed;
  color: #e8e6e3;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: clamp(14px, 1.2vw + 0.5rem, 18px);
  line-height: 1.7;
  overflow-x: hidden;
}

p {
  font-size: clamp(14px, 1vw + 0.5rem, 17px);
  line-height: 1.8;
  color: #d4d2cf;
}

h1 {
  font-size: clamp(32px, 5vw + 1rem, 55px);
  line-height: 1.1;
  font-weight: 800;
  background: var(--warm-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(201, 158, 16, 0.3);
}

h2 {
  font-size: clamp(28px, 3.5vw + 1rem, 48px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--highlight-color);
  text-shadow: 0 0 20px rgba(201, 158, 16, 0.4);
}

h3 {
  font-size: clamp(24px, 2.8vw + 0.5rem, 38px);
  line-height: 1.3;
  font-weight: 600;
  color: var(--accent-color);
}

h4 {
  font-size: clamp(20px, 2.2vw + 0.5rem, 30px);
  line-height: 1.4;
  font-weight: 600;
  color: #e8e6e3;
}

h5 {
  font-size: clamp(18px, 1.8vw + 0.5rem, 26px);
  line-height: 1.5;
  font-weight: 500;
  color: #d4d2cf;
}

h6 {
  font-size: clamp(16px, 1.4vw + 0.3rem, 22px);
  line-height: 1.5;
  font-weight: 500;
  color: #c0bdb8;
}

.btn-primary {
  background: var(--primary-gradient);
  border: 2px solid transparent;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(141, 35, 15, 0.3);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(141, 35, 15, 0.4);
  filter: brightness(1.1);
}

.btn-outline-light {
  color: var(--highlight-color);
  border: 2px solid var(--highlight-color);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-outline-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--accent-gradient);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-outline-light:hover::before {
  width: 100%;
}

.btn-outline-light:hover {
  color: white;
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 158, 16, 0.3);
}

.logo {
  font-weight: 900;
  font-size: 1.5rem;
  background: var(--warm-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(201, 158, 16, 0.3));
}

header {
  padding: 1.5rem 0;
  background: rgba(15, 20, 25, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 158, 16, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 12px;
}

.btn span.arrow {
  margin-left: 0.75rem;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover span.arrow {
  transform: translateX(6px);
}

.btn-group-custom {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .btn-group-custom {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .btn-group-custom .btn {
    width: 100%;
  }
}

.hero-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(201, 158, 16, 0.2);
}

.hero-text-block {
  flex: 1;
  background: linear-gradient(135deg, var(--card-bg), var(--secondary-color));
  padding: 2rem;
  border-radius: 16px;
  margin-top: 1.5rem;
  border: 1px solid rgba(201, 158, 16, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-timer-block {
  flex: 1;
}

.fake-timer-box {
  padding: 1.5rem 0;
}

.timer-label {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  color: var(--highlight-color);
  font-weight: 600;
}

.timer-fake {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.segment {
  flex: 1;
  background: var(--accent-gradient);
  border-radius: 12px;
  padding: 1.2rem 0.8rem;
  text-align: center;
  animation: glow 3s infinite ease-in-out;
  box-shadow: 0 8px 25px rgba(155, 79, 15, 0.4);
  border: 1px solid rgba(201, 158, 16, 0.3);
  position: relative;
  overflow: hidden;
}

.segment::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 2s infinite;
}

.segment:nth-child(2) {
  animation-delay: 0.4s;
}
.segment:nth-child(3) {
  animation-delay: 0.8s;
}
.segment:nth-child(4) {
  animation-delay: 1.2s;
}

.segment .number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.segment .text {
  font-size: 0.95rem;
  color: #f5f5f5;
  margin-top: 0.5rem;
  font-weight: 500;
}

@keyframes glow {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(155, 79, 15, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(155, 79, 15, 0.6);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.btn-navbar {
  padding: 0.9rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 10px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .btn-navbar {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .segment {
    max-width: 65px;
    padding: 0.8rem 0.5rem;
  }

  .timer-fake {
    gap: 0.5rem;
  }
}

.hero-like-section {
  width: 85vw;
  margin: 0 auto;
  padding: 2rem 0;
  gap: 6rem;
}

.vertical-img {
  max-height: 650px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(201, 158, 16, 0.2);
}

.step-number-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--warm-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.step-dash {
  width: 50px;
  height: 5px;
  background: var(--accent-gradient);
  margin-top: 8px;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(155, 79, 15, 0.4);
}

@media (max-width: 768px) {
  .hero-like-section {
    flex-direction: column;
    align-items: center;
    width: 95vw;
    gap: 3rem;
  }

  .vertical-img {
    width: 280px;
    height: 240px;
    margin-bottom: 2rem;
  }
}

.card {
  background: var(--secondary-gradient);
  border: 2px solid rgba(201, 158, 16, 0.2);
  color: white;
  position: relative;
  padding: 2.5rem 2rem 2rem 4rem;
  width: 28rem;
  box-shadow: 0 15px 40px rgba(30, 67, 76, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
}

.card .quote-icon {
  position: absolute;
  top: 0.5rem;
  left: 1.2rem;
  font-size: 6rem;
  font-family: "Georgia", serif;
  font-weight: 700;
  color: var(--highlight-color);
  opacity: 0.6;
  user-select: none;
  line-height: 1;
  transform: rotate(-8deg);
  transition: all 0.3s ease;
}

.card:hover .quote-icon {
  opacity: 0.8;
  transform: rotate(-5deg) scale(1.05);
}

.card .card-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--highlight-color);
  font-size: 1.3rem;
}

.card .card-text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #f0f0f0;
}

.cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .cards-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 21rem;
  }
}

.label-box {
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.15rem;
  color: #e8e6e3;
}

.indicator {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hot-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  box-shadow: 0 0 15px rgba(141, 35, 15, 0.6);
}

.cold-gradient {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--highlight-color)
  );
  box-shadow: 0 0 15px rgba(30, 67, 76, 0.6);
}

.circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: white;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  user-select: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.circle:hover {
  transform: scale(1.05);
}

.circle.hot {
  background: var(--primary-gradient);
  box-shadow: 0 0 20px rgba(141, 35, 15, 0.6);
}

.circle.cold {
  background: var(--secondary-gradient);
  box-shadow: 0 0 20px rgba(30, 67, 76, 0.6);
}

.process-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    var(--section-bg) 0%,
    var(--bg-color) 100%
  );
  position: relative;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(201, 158, 16, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(141, 35, 15, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--warm-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(201, 158, 16, 0.3);
}

.section-description {
  font-size: 1.3rem;
  color: #c0bdb8;
  margin-bottom: 5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.process-container {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}

.process-item {
  background: var(--secondary-gradient);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 4rem;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 50px rgba(30, 67, 76, 0.3);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(201, 158, 16, 0.2);
  transition: all 0.3s ease;
}

.process-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(30, 67, 76, 0.4);
}

.process-item:last-child {
  margin-bottom: 0;
}

.process-number {
  margin-right: 2.5rem;
  flex-shrink: 0;
  position: relative;
}

.number-decoration {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(201, 158, 16, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.number-icon {
  position: relative;
  color: var(--highlight-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.icon-one::before {
  content: "◆";
  font-size: 18px;
  line-height: 1;
}

.icon-two::before {
  content: "◆◆";
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1;
}

.icon-three::before {
  content: "◆◆◆";
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
}

.process-content {
  flex: 1;
  color: white;
}

.process-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.process-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1.15rem;
}

.process-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -35px;
  transform: translateX(-50%);
  width: 4px;
  height: 35px;
  background: var(--accent-gradient);
  border-radius: 2px;
  z-index: 10;
}

.process-item::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid var(--accent-color);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
  z-index: 10;
}

.process-item:last-child::before,
.process-item:last-child::after {
  display: none;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .process-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 4rem;
    padding: 2.5rem;
  }

  .process-number {
    margin-right: 0;
    margin-bottom: 1.5rem;
    align-self: center;
  }
}

.bg-section {
  width: 85%;
  height: 250px;
  background: linear-gradient(rgba(141, 35, 15, 0.7), rgba(30, 67, 76, 0.7)),
    url("https://powerlottotips.com/assets/img1.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  border: 3px solid rgba(201, 158, 16, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.image-row {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.img-wrapper {
  width: 23%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid rgba(201, 158, 16, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.img-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  border-color: rgba(201, 158, 16, 0.4);
}

.img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

@media (max-width: 768px) {
  .image-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .img-wrapper {
    width: 45%;
    margin-bottom: 1.5rem;
  }
}

.icon-18plus {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: white;
  font-weight: 900;
  font-size: 2.2rem;
  user-select: none;
  box-shadow: 0 0 25px rgba(141, 35, 15, 0.7);
  margin-bottom: 1.5rem;
  border: 3px solid rgba(201, 158, 16, 0.3);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--section-bg), var(--bg-color));
  border-top: 2px solid rgba(201, 158, 16, 0.2);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #e8e6e3;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: var(--highlight-color);
}

.footer-images {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  max-width: 320px;
}

.footer-images img {
  width: 45px;
  height: 36px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(201, 158, 16, 0.2);
  transition: all 0.3s ease;
}

.footer-images img:hover {
  transform: scale(1.05);
  border-color: rgba(201, 158, 16, 0.4);
}

@media (max-width: 600px) {
  .footer {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 1rem;
  }
  .footer-images {
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.age-warning {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  width: 100%;
  padding: 1.5rem 2rem;
  border-bottom: 3px solid var(--highlight-color);
}

.age-warning__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.age-warning__badge {
  background: white;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.6rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  user-select: none;
  border: 2px solid rgba(201, 158, 16, 0.3);
}

.age-warning__text {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 500;
}

section.age-warning {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  width: 100%;
  padding: 1.5rem 2rem;
  border-bottom: 3px solid var(--highlight-color);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card,
.process-item,
.segment {
  animation: fadeInUp 0.6s ease-out;
}

.gradient-text {
  background: var(--warm-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-border {
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-color), var(--bg-color)) padding-box,
    var(--accent-gradient) border-box;
}

.glow-primary {
  box-shadow: 0 0 20px rgba(141, 35, 15, 0.4);
}

.glow-secondary {
  box-shadow: 0 0 20px rgba(30, 67, 76, 0.4);
}

.glow-accent {
  box-shadow: 0 0 20px rgba(155, 79, 15, 0.4);
}

.glow-highlight {
  box-shadow: 0 0 20px rgba(201, 158, 16, 0.4);
}

.interactive-element {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.interactive-element:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-gradient);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--warm-gradient);
}

.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

@media (max-width: 480px) {
  .hero-text-block {
    padding: 1.5rem;
    margin-top: 1rem;
  }

  .process-item {
    padding: 2rem 1.5rem;
  }

  .age-warning__content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .age-warning__badge {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}

.text-primary {
  color: var(--primary-color) !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}
.text-accent {
  color: var(--accent-color) !important;
}
.text-highlight {
  color: var(--highlight-color) !important;
}

.bg-primary {
  background: var(--primary-color) !important;
}
.bg-secondary {
  background: var(--secondary-color) !important;
}
.bg-accent {
  background: var(--accent-color) !important;
}
.bg-highlight {
  background: var(--highlight-color) !important;
}

.bg-gradient-primary {
  background: var(--primary-gradient) !important;
}
.bg-gradient-secondary {
  background: var(--secondary-gradient) !important;
}
.bg-gradient-accent {
  background: var(--accent-gradient) !important;
}
.bg-gradient-warm {
  background: var(--warm-gradient) !important;
}

.form-control {
  background: rgba(26, 31, 46, 0.8);
  border: 2px solid rgba(201, 158, 16, 0.2);
  color: #e8e6e3;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--highlight-color);
  box-shadow: 0 0 15px rgba(201, 158, 16, 0.3);
  background: rgba(26, 31, 46, 0.95);
}

.form-control::placeholder {
  color: #c0bdb8;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(201, 158, 16, 0.2);
  border-top: 4px solid var(--highlight-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.modal-overlay {
  background: rgba(15, 20, 25, 0.9);
  backdrop-filter: blur(10px);
}

.modal-content {
  background: var(--card-bg);
  border: 2px solid rgba(201, 158, 16, 0.2);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media (hover: none) and (pointer: coarse) {
  .btn:hover {
    transform: none;
  }

  .interactive-element:hover {
    transform: none;
  }

  .card:hover .quote-icon {
    opacity: 0.6;
    transform: rotate(-8deg);
  }
}

@media print {
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
}
