/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Poppins:wght@300;500;700&display=swap');
:root { font-size: 16px; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', sans-serif; background-color: #1e1e1e; color: #e0e0e0; line-height: 1.6; }
header { background-color: #2c2c2c; padding: 1.25rem 0; box-shadow: 0 2px 4px rgba(0,0,0,0.7); }
header nav ul { display: flex; justify-content: center; list-style: none; gap: 2.5rem; }
header nav ul li a { color: #ffffff; text-decoration: none; font-family: 'Poppins', sans-serif; font-weight: 500; text-transform: uppercase; font-size: 1rem; padding: 0.5rem; position: relative; }
header nav ul li a::after { content: ''; position: absolute; left: 50%; bottom: 0; width: 0; height: 2px; background: #03dac6; transition: width 0.3s ease, left 0.3s ease; }
header nav ul li a:hover::after { width: 100%; left: 0; }
.hero { background: linear-gradient(135deg, #2e2e2e 0%, #383838 100%); text-align: center; padding: 5rem 1.25rem; }
.hero h1 { font-family: 'Poppins', sans-serif; font-size: 2.625rem; color: #ffffff; margin-bottom: 1rem; text-shadow: 0 2px 6px rgba(0,0,0,0.7); }
.hero p { font-size: 1.125rem; color: #cccccc; margin-bottom: 0.75rem; }
.banner { background-color: #343434; padding: 3.75rem 0; }
.banner .container { max-width: 75rem; margin: 0 auto; text-align: center; position: relative; background: linear-gradient(135deg, #8e2de2 0%, #ff416c 100%); padding: 2rem; border-radius: 0.5rem; }
.banner h2 { font-family: 'Poppins', sans-serif; font-size: 2rem; color: #e0e0e0; margin-bottom: 2.5rem; border-bottom: 2px solid #bb86fc; display: inline-block; padding-bottom: 0.5rem; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 1.875rem; }
.card { background-color: #2e2e2e; border: 2px solid #03dac6; border-radius: 0.75rem; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card:hover { transform: translateY(-0.3125rem); box-shadow: 0 8px 24px rgba(0,0,0,0.6); }
.card img { width: 100%; display: block; }
.card .info { padding: 1.25rem; }
.card .bonus { display: inline-block; background: linear-gradient(90deg, #bb86fc, #3700b3); color: #121212; padding: 0.5rem 0.75rem; border-radius: 1rem; font-family: 'Poppins', sans-serif; font-weight: 500; margin-bottom: 0.9375rem; text-transform: uppercase; letter-spacing: 0.05em; }
.card .btn { display: inline-block; background-color: #03dac6; color: #121212; padding: 0.625rem 1.25rem; border: none; border-radius: 0.375rem; font-family: 'Poppins', sans-serif; font-weight: 600; cursor: pointer; text-transform: uppercase; box-shadow: inset 0 -2px 0 rgba(0,0,0,0.2); margin-bottom: 0.9375rem; }
.card .rating i { color: #f57c00; margin-right: 0.25rem; }
.card .features { list-style: none; margin-top: 0.75rem; }
.card .features li { font-size: 0.875rem; color: #bbbbbb; margin-bottom: 0.5rem; padding-left: 1rem; position: relative; }
.card .features li::before { content: '\f00c'; font-family: 'Font Awesome 5 Free'; font-weight: 900; position: absolute; left: 0; color: #03dac6; }
.info-section { display: flex; flex-wrap: wrap; max-width: 75rem; margin: 3.75rem auto; background: linear-gradient(135deg, #8e2de2 0%, #ff416c 100%); border-radius: 0.5rem; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.6); }
.info-section .text-content, .info-section .image-content { flex: 1 1 50%; }
.info-section .text-content { padding: 2.5rem; border-right: 1px solid #3a3a3a; }
.info-section .text-content h2 { font-family: 'Poppins', sans-serif; font-size: 2.5rem; color: #ffffff; margin-bottom: 1rem; }
.info-section .text-content h3 { font-family: 'Poppins', sans-serif; font-size: 1.75rem; color: #e0e0e0; margin-bottom: 1rem; }
.info-section .text-content p { font-size: 1.25rem; color: #f0f0f0; line-height: 1.8; }
.info-section .image-content img { width: 100%; height: auto; display: block; }
footer { background: linear-gradient(135deg, #8e2de2 0%, #ff416c 100%); padding: 3.75rem 1.25rem; }
.footer-container { max-width: 50rem; margin: 0 auto; text-align: center; }
.footer-container .disclaimer { font-size: 0.875rem; color: #bbbbbb; margin-bottom: 1.25rem; }
.icons { display: flex; flex-wrap:wrap;justify-content: center; gap: 1.25rem; margin: 1.875rem 0; }
.icons img { height: 3.75rem;
    filter: brightness(1.2);
    border-radius: 5px; }
.policy-links ul { list-style: none; display: flex; justify-content: center; gap: 1.875rem; }
.policy-links ul li a { color: #03dac6; text-decoration: none; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 1rem; position: relative; }
.policy-links ul li a::after { content: ''; position: absolute; left: 0; bottom: -0.25rem; width: 0; height: 2px; background: #03dac6; transition: width 0.3s ease; }
.policy-links ul li a:hover::after { width: 100%; }
@media (max-width: 768px) { .info-section { flex-direction: column; } .info-section .text-content { border-right: none; border-bottom: 1px solid #3a3a3a; } .cards { grid-template-columns: 1fr; } header nav ul { gap: 1.25rem; } }

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 30, 30, 0.9);
  color: #eee;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  z-index: 1000;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.875rem;
}
.cookie-banner a {
  color: #03dac6;
  text-decoration: underline;
}
.cookie-btn {
  background-color: #bb86fc;
  color: #121212;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
}
/* Brand Descriptions Styles */
.brand-descriptions {
  background-color: #2e2e2e;
  padding: 4rem 1.25rem;
}
.brand-descriptions .container {
  max-width: 75rem;
  margin: 0 auto;
}
.brand-descriptions h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: #bb86fc;
  text-align: center;
  margin-bottom: 2rem;
}
.descriptions {
  display: flex;
    gap: 2rem;
    flex-direction: column;
}
.desc-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #03dac6;
  margin-bottom: 0.75rem;
}
.desc-item p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
}
.desc-item, .policy-section {
  background: #3a3a3a;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border: 2px solid #f73f74;
}
@media (max-width: 768px) {
  .brand-descriptions {
    padding: 2rem 1rem;
  }
  .desc-item {
    padding: 1rem;
  }
}
.policy-section {
    padding: 20px;
}
.age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.age-popup-content {
  background: #2c2c2c;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.7);
}
.age-icon {
  width: 80px;
  margin-bottom: 1rem;
}
.age-popup-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
}
.age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.age-btn {
  flex: 1;
  padding: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #121212;
  background-color: #03dac6;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
}
.age-btn-no {
  background-color: #bb86fc;
}
/* Contact Section Styles */
.contact-section {
  padding: 4rem 1rem;
  background: #f9fafb;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form, 
.contact-image {
  flex: 1 1 300px;
}

.contact-form h2 {
  font-size: 2rem;
  color: #4f46e5; /* indigo-600 */
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151; /* gray-700 */
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d1d5db; /* gray-300 */
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #111827; /* gray-900 */
  margin-bottom: 1.25rem;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6366f1; /* indigo-500 */
  box-shadow: 0 0 0 3px rgba(99,102,241,0.3);
}

.contact-form .btn {
  display: inline-block;
  background-color: #10b981; /* green-500 */
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.contact-form .btn:hover {
  background-color: #059669; /* green-600 */
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* About Section Styles */
.about-section {
  background: linear-gradient(135deg, #eef2ff 0%, #fdf2f8 100%);
  padding: 3rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
}

.about-section h2 {
  font-size: 2.25rem;
  color: #4f46e5; /* indigo-600 */
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.75;
  color: #374151; /* gray-700 */
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .about-section {
    padding: 4rem 2rem;
  }
  .about-section h2 {
    font-size: 2.5rem;
  }
  .about-section p {
    font-size: 1.125rem;
  }
}
