/* Base Styles */
:root {
  --primary-color: #f47321; /* Chaturbate orange */
  --primary-dark: #d65e0f; /* Darker orange for hover states */
  --secondary-color: #04bef4; /* Chaturbate blue */
  --text-color: #333;
  --text-secondary: #666;
  --bg-color: #ffffff;
  --bg-lighter: #f5f5f5;
  --transition-speed: 0.3s;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--primary-color);
  text-align: center;
  margin: 1.5rem 0;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.highlight {
  color: var(--primary-color);
}

.subtitle {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* Header */
header {
  text-align: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

/* Main Content */
.main-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(244, 115, 33, 0.2);
}

.intro {
  font-size: 1.2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.impression-counter {
  display: block;
  font-size: 0.9rem;
  color: #999;
  margin-top: 0.5rem;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff !important;
  padding: 16px 32px;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: none;
  box-shadow: 0 4px 15px rgba(244, 115, 33, 0.4);
  margin: 1.5rem 0;
}

.cta-button:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(244, 115, 33, 0.6);
  animation: none;
  color: #ffffff !important;
}

.cta-button:active {
  transform: translateY(1px);
}

.cta-button i {
  margin-right: 8px;
}

.scroll-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1rem;
  transition: color var(--transition-speed) ease;
}

.scroll-link:hover {
  color: var(--primary-dark);
}

/* Features Section */
.features {
  margin: 4rem auto;
  max-width: 900px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}

.feature-item {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: var(--bg-lighter);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: transform var(--transition-speed) ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.feature-item p {
  margin-bottom: 0;
}

/* Reminder Section */
.reminder {
  text-align: center;
  max-width: 800px;
  margin: 4rem auto;
  padding: 2.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(244, 115, 33, 0.2);
}

/* Misspellings Section */
.misspellings {
  max-width: 800px;
  margin: 4rem auto 2rem;
  text-align: center;
}

.misspellings h3 {
  color: var(--text-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.misspellings ul {
  list-style: none;
  padding: 0;
}

.misspellings li {
  margin: 1rem 0;
}

.misspellings a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
  font-size: 1.1rem;
}

.misspellings a:hover {
  color: var(--primary-dark);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
  font-size: 0.65rem;
}

footer p {
  max-width: 700px;
  margin: 0 auto;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background-color: var(--bg-lighter);
  color: var(--text-color);
  padding: 15px;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transition: bottom 0.5s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.cookie-consent.visible {
  bottom: 0;
}

.cookie-consent p {
  margin: 0 20px 0 0;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-button {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color var(--transition-speed) ease;
}

.cookie-button.accept {
  background-color: var(--primary-color);
  color: white;
}

.cookie-button.accept:hover {
  background-color: var(--primary-dark);
}

.cookie-button.decline {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-secondary);
}

.cookie-button.decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.fade-in-delayed {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.3s;
}

.fade-in-delayed-more {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.6s;
}

.pulse {
  animation: pulse 2s infinite;
}

/* Media Queries */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .container {
    padding: 20px 15px;
  }
  
  .feature-grid {
    gap: 15px;
  }
  
  .feature-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .cta-button {
    font-size: 1.1rem;
    padding: 14px 24px;
  }
  
  .reminder {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .intro {
    font-size: 1rem;
  }
  
  .main-content, .reminder {
    padding: 1.2rem;
  }
  
  .cookie-consent {
    flex-direction: column;
  }
  
  .cookie-consent p {
    margin: 0 0 10px 0;
  }
}

/* Powered By Link */
.powered-by {
  margin-top: 15px;
  font-size: 0.9em;
  color: var(--text-secondary);
}

.powered-by a {
  color: #777777; /* Grey color */
  text-decoration: none;
  font-weight: bold;
  transition: color var(--transition-speed) ease;
}

.powered-by a:hover {
  color: #4CAF50; /* Green color */
  text-decoration: underline;
}

/* Disclaimer Text */
.disclaimer-text {
  font-size: 0.85em; /* Smaller size */
  color: #999; /* Lighter color for less emphasis */
  line-height: 1.4;
}
