* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  color: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
}

.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: 
    radial-gradient(circle at 20% 50%, rgba(225, 48, 108, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(129, 52, 175, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(253, 29, 29, 0.1) 0%, transparent 50%);
  animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
  0%, 100% { transform: translateX(0px) translateY(0px); }
  33% { transform: translateX(-20px) translateY(-20px); }
  66% { transform: translateX(20px) translateY(-10px); }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(225, 48, 108, 0.3);
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(45deg, #E1306C, #8134AF, #FD1D1D, #F77737);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(225, 48, 108, 0.3);
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 15px;
}

.scroll-instruction {
  font-size: 1rem;
  color: #ff4d4d;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

.content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.verify-btn-container {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  width: 100%;
}

.verify-btn {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 20px 40px;
  font-size: 1.3rem;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
  transition: all 0.3s ease;
  font-weight: 700;
  opacity: 0;
  transform: translateY(30px);
}

.verify-btn.show {
  opacity: 1;
  transform: translateY(0);
}

.verify-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px rgba(40, 167, 69, 0.6);
}

.section {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.section h2 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1.8rem;
  background: linear-gradient(45deg, #E1306C, #8134AF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section p {
  color: #888;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Ad Card Styles - Missing from second file */
.ad-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  max-width: 800px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.ad-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #E1306C, #8134AF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ad-subtitle {
  font-size: 1.3rem;
  color: #888;
  margin-bottom: 30px;
}

.ad-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), rgba(129, 52, 175, 0.1));
  border: 1px solid rgba(225, 48, 108, 0.3);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.feature-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #ffffff;
}

.feature-desc {
  color: #888;
  font-size: 0.9rem;
}

.ad-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin: 30px 0;
}

.ad-label {
  color: #888;
  font-size: 0.8rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Scroll Indicator - Missing from second file */
.scroll-indicator {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #888;
  font-size: 0.9rem;
  animation: bounce 2s infinite;
  z-index: 50;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* Bottom Section - Missing from second file */
.bottom-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px 20px;
}

.countdown-container {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.1) 0%, rgba(129, 52, 175, 0.1) 100%);
  border: 2px solid rgba(225, 48, 108, 0.3);
  color: white;
  border-radius: 15px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.countdown-container.show {
  opacity: 1;
  transform: translateY(0);
}

.countdown-title {
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #E1306C, #8134AF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-timer {
  font-size: 4rem;
  font-weight: bold;
  margin: 20px 0;
  color: #ff4d4d;
  text-shadow: 0 0 20px rgba(255, 77, 77, 0.5);
  animation: pulse 1s infinite;
}

.verification-code-container {
  background: rgba(40, 167, 69, 0.1);
  border: 2px solid #28a745;
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
  backdrop-filter: blur(10px);
  display: none;
  animation: slideInUp 0.5s ease-out;
}

.verification-code-container.show {
  display: block;
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.verification-code-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #28a745;
}

.verification-code-display {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #28a745;
  color: #28a745;
  padding: 20px;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 10px;
  margin: 15px 0;
  letter-spacing: 3px;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
}

.copy-code-btn {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.copy-code-btn:hover {
  background: #218838;
  transform: translateY(-2px);
}

.go-up-btn {
  background: linear-gradient(45deg, #E1306C, #8134AF);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1.1rem;
  margin-top: 30px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.go-up-btn.show {
  opacity: 1;
  transform: translateY(0);
}

.go-up-btn:hover {
  background: linear-gradient(45deg, #c12958, #6c2a8a);
  transform: translateY(-2px);
}

/* Verification Modal - Missing from second file */
.verify-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.verify-container {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), rgba(129, 52, 175, 0.1));
  border: 2px solid rgba(225, 48, 108, 0.3);
  border-radius: 20px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modalSlideIn 0.5s ease-out;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: scale(0.8) translateY(50px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.verify-header {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #E1306C, #8134AF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.verify-code-input {
  width: 100%;
  padding: 15px;
  border: 2px solid rgba(225, 48, 108, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 2px;
  margin: 20px 0;
  font-family: 'Courier New', monospace;
}

.verify-code-input::placeholder {
  color: #888;
}

.verify-code-input:focus {
  outline: none;
  border-color: #28a745;
  box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
}

.error-message {
  color: #ff4d4d;
  font-size: 1rem;
  margin: 10px 0;
  display: none;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.verify-submit-btn {
  background: linear-gradient(45deg, #28a745, #20c997);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  margin: 10px;
  transition: all 0.3s ease;
}

.verify-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.close-modal-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #888;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  margin: 10px;
  transition: all 0.3s ease;
}

.close-modal-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Verify Ad Content - Missing from second file */
.verify-ad-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px 20px;
  margin: 20px 0;
  border: 1px solid rgba(225, 48, 108, 0.2);
}

.verify-ad-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, #E1306C, #8134AF, #FD1D1D, #F77737);
  background-size: 200% 200%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.verify-play-icon {
  font-size: 3rem;
  color: white;
  animation: verifyPulse 2s infinite;
}

@keyframes verifyPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.verify-timer {
  background: rgba(255, 77, 77, 0.2);
  border: 1px solid #ff4d4d;
  border-radius: 25px;
  padding: 10px 20px;
  display: inline-block;
  font-weight: 600;
  color: #ff4d4d;
  margin-bottom: 20px;
}

.verify-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 20px;
}

.verify-progress-bar {
  height: 100%;
  background: linear-gradient(45deg, #E1306C, #8134AF);
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 3px;
}

.continue-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #888;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: not-allowed;
  transition: all 0.3s ease;
  font-weight: 600;
}

.continue-btn.enabled {
  background: linear-gradient(45deg, #28a745, #20c997);
  border-color: #28a745;
  color: white;
  cursor: pointer;
}

.success-message {
  color: #28a745;
  font-size: 1rem;
  margin: 10px 0;
  display: none;
}

.ad-description {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Cookie Container - Missing from second file */
.cookie-container {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(225, 48, 108, 0.2);
  border-radius: 15px;
  padding: 25px;
  margin: 30px 0;
  gap: 20px;
}

.cookie-icon {
  font-size: 3rem;
  background: linear-gradient(45deg, #E1306C, #8134AF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(225, 48, 108, 0.3));
}

.cookie-info {
  flex: 1;
}

.cookie-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #E1306C, #8134AF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cookie-info p {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-declaration-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin-top: 25px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cookie-declaration-wrapper::before {
  content: "🔄 Loading Cookie Settings...";
  position: absolute;
  color: #888;
  font-size: 1rem;
  animation: pulse 2s infinite;
}

.footer {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  color: white;
  padding: 40px 20px;
  text-align: center;
  margin-top: 40px;
  border-radius: 20px;
  border: 1px solid rgba(225, 48, 108, 0.3);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-links {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s ease;
  padding: 8px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a:hover {
  color: #E1306C;
  background: rgba(225, 48, 108, 0.1);
  border-color: rgba(225, 48, 108, 0.3);
  transform: translateY(-2px);
}

.footer-text {
  color: #666;
  font-size: 0.9rem;
}

.footer-text a {
  color: #E1306C;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}

/* Privacy Modal - Missing from second file */
.privacy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.privacy-content {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), rgba(129, 52, 175, 0.1));
  border: 2px solid rgba(225, 48, 108, 0.3);
  border-radius: 20px;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.5s ease-out;
}

.privacy-header {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #E1306C, #8134AF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.privacy-text {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 15px;
}

.privacy-section {
  margin-bottom: 20px;
}

.privacy-section h3 {
  color: #E1306C;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.close-privacy-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gdpr-status {
  position: fixed;
  top: 10px;
  right: 10px;
  background: rgba(40, 167, 69, 0.9);
  color: white;
  padding: 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  z-index: 1000;
  transition: all 0.3s ease;
  opacity: 0;
}

.gdpr-status.show {
  opacity: 1;
}

.gdpr-status.warning {
  background: rgba(255, 193, 7, 0.9);
  color: #000;
}

.gdpr-status.error {
  background: rgba(220, 53, 69, 0.9);
}

@media (max-width: 768px) {
  .logo {
    font-size: 2rem;
  }
  
  .content {
    padding: 20px;
  }
  
  .verify-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  .countdown-timer {
    font-size: 3rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .gdpr-status {
    bottom: 10px;
    right: 10px;
    font-size: 0.7rem;
  }
  
  .ad-title {
    font-size: 2rem;
  }
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #E1306C, #8134AF);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #c12958, #6c2a8a);
}

/* Custom Cookiebot styling - Missing from second file */
#CybotCookiebotDialog {
  z-index: 10000 !important;
}

/* Ensure consent banner is always visible */
.cookiebot-banner {
  z-index: 10000 !important;
}
/* Beginner's Guide Section Styles */
.guide-section {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.05) 0%, rgba(129, 52, 175, 0.05) 100%);
  border: 2px solid rgba(225, 48, 108, 0.3);
  padding: 40px;
  border-radius: 20px;
  margin: 40px 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.guide-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(225, 48, 108, 0.03) 0%, transparent 70%);
  animation: rotateBackground 20s linear infinite;
  z-index: 0;
}

@keyframes rotateBackground {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.guide-section > * {
  position: relative;
  z-index: 1;
}

.guide-section h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #E1306C, #8134AF, #FD1D1D, #F77737);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.guide-section > p {
  text-align: center;
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.guide-steps {
  display: grid;
  gap: 30px;
  margin: 40px 0;
}

.guide-step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.guide-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(45deg, rgba(225, 48, 108, 0.1), rgba(129, 52, 175, 0.1));
  transition: width 0.3s ease;
  z-index: 0;
}

.guide-step:hover::before {
  width: 100%;
}

.guide-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(225, 48, 108, 0.2);
  border-color: rgba(225, 48, 108, 0.4);
}

.guide-step > * {
  position: relative;
  z-index: 1;
}

.step-number {
  background: linear-gradient(45deg, #E1306C, #8134AF);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.step-content p {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
}

.step-image {
  max-width: 250px;
  margin-top: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.step-image:hover {
  transform: scale(1.05);
}

.step-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: filter 0.3s ease;
}

.step-image img:hover {
  filter: brightness(1.1);
}

/* Guide Tips Section */
.guide-tips {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
}

.guide-tips h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(45deg, #E1306C, #8134AF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tip-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.tip-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(225, 48, 108, 0.05);
  border: 1px solid rgba(225, 48, 108, 0.2);
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tip-card:hover {
  background: rgba(225, 48, 108, 0.08);
  border-color: rgba(225, 48, 108, 0.4);
  transform: translateY(-2px);
}

.tip-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.tip-text {
  flex: 1;
}

.tip-text strong {
  color: #E1306C;
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.tip-text {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Premium Ad Styles */
.premium-ad {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.premium-ad::before {
  content: '✨';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  animation: sparkle 2s infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.premium-ad-content h3 {
  color: #FFD700;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.premium-ad-content p {
  color: #FFA500;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.premium-cta {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.premium-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
  background: linear-gradient(45deg, #FFA500, #FFD700);
}

/* Mobile Responsive Styles for Guide */
@media (max-width: 768px) {
  .guide-section {
    padding: 25px;
  }
  
  .guide-section h2 {
    font-size: 1.8rem;
  }
  
  .guide-step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    align-self: center;
  }
  
  .step-image {
    max-width: 200px;
    align-self: center;
  }
  
  .tip-cards {
    grid-template-columns: 1fr;
  }
  
  .tip-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .guide-section {
    padding: 20px;
    margin: 20px 0;
  }
  
  .guide-section h2 {
    font-size: 1.5rem;
  }
  
  .guide-steps {
    gap: 20px;
  }
  
  .guide-step {
    padding: 20px;
  }
  
  .step-image {
    max-width: 180px;
  }
  
  .premium-ad {
    padding: 20px;
  }
  
  .premium-cta {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Smooth scroll behavior for better UX */
html {
  scroll-behavior: smooth;
}

/* Loading animation for images */
.step-image img {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-image img[src] {
  opacity: 1;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .guide-section::before,
  .premium-ad::before,
  .step-image:hover,
  .guide-step:hover {
    animation: none;
    transform: none;
  }
}

/* Focus styles for better accessibility */
.premium-cta:focus,
.guide-step:focus-within {
  outline: 2px solid #E1306C;
  outline-offset: 2px;
}

/* Reviews Section */
.reviews-section {
  margin-top: 60px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.reviews-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(45deg, #E1306C, #8134AF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 500px;
  overflow-y: auto;
}

.review-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
}

.review-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.review-author {
  font-weight: 600;
  color: #E1306C;
}

.review-rating {
  color: #FFD700;
  font-size: 1.2rem;
}

.review-subject {
  font-size: 0.9rem;
  color: #8134AF;
  margin-bottom: 8px;
  font-weight: 500;
}

.review-message {
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 10px;
}

.review-date {
  font-size: 0.8rem;
  color: #888;
  text-align: right;
}

.no-reviews {
  text-align: center;
  color: #888;
  padding: 40px;
  font-style: italic;
}

/* Scrollbar Styling */
.reviews-container::-webkit-scrollbar {
  width: 6px;
}

.reviews-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb {
  background: rgba(225, 48, 108, 0.5);
  border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb:hover {
  background: rgba(225, 48, 108, 0.7);
}

@media (max-width: 768px) {
  .logo {
    font-size: 2rem;
  }
  
  .intro-title {
    font-size: 1.8rem;
  }
  
  .back-btn {
    position: static;
    transform: none;
    margin-bottom: 20px;
    display: inline-block;
  }
  
  .header {
    text-align: center;
    position: relative;
  }
  
  .feedback-form,
  .reviews-section {
    padding: 30px 20px;
  }

  .rating-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
/* Educational Section Styles */
.educational-section {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.05) 0%, rgba(129, 52, 175, 0.05) 100%);
  border: 2px solid rgba(225, 48, 108, 0.3);
  padding: 40px;
  border-radius: 20px;
  margin: 40px 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.educational-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(225, 48, 108, 0.03) 0%, transparent 70%);
  animation: rotateBackground 20s linear infinite;
  z-index: 0;
}

@keyframes rotateBackground {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.educational-section > * {
  position: relative;
  z-index: 1;
}

.educational-section h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #E1306C, #8134AF, #FD1D1D, #F77737);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.educational-section h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #E1306C, #8134AF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.educational-section h4 {
  color: #E1306C;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Content Block Styles */
.content-block {
  margin: 30px 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.content-block:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.1);
}

.content-block p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
}

.content-block ul {
  color: #aaa;
  margin-left: 20px;
  margin-bottom: 15px;
}

.content-block ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.content-block ol {
  color: #aaa;
  margin-left: 20px;
  margin-bottom: 15px;
}

.content-block ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Metric Detail Styles */
.metric-detail {
  margin: 25px 0;
  padding: 20px;
  background: rgba(225, 48, 108, 0.05);
  border: 1px solid rgba(225, 48, 108, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.metric-detail:hover {
  background: rgba(225, 48, 108, 0.08);
  border-color: rgba(225, 48, 108, 0.4);
  transform: translateY(-2px);
}

/* Strategy Detail Styles */
.strategy-detail {
  margin: 25px 0;
  padding: 20px;
  background: rgba(129, 52, 175, 0.05);
  border: 1px solid rgba(129, 52, 175, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.strategy-detail:hover {
  background: rgba(129, 52, 175, 0.08);
  border-color: rgba(129, 52, 175, 0.4);
  transform: translateY(-2px);
}

/* Algorithm Detail Styles */
.algorithm-detail {
  margin: 25px 0;
  padding: 20px;
  background: rgba(253, 29, 29, 0.05);
  border: 1px solid rgba(253, 29, 29, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.algorithm-detail:hover {
  background: rgba(253, 29, 29, 0.08);
  border-color: rgba(253, 29, 29, 0.4);
  transform: translateY(-2px);
}

/* Mistake Detail Styles */
.mistake-detail {
  margin: 25px 0;
  padding: 20px;
  background: rgba(255, 193, 7, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mistake-detail:hover {
  background: rgba(255, 193, 7, 0.08);
  border-color: rgba(255, 193, 7, 0.4);
  transform: translateY(-2px);
}

/* Technique Detail Styles */
.technique-detail {
  margin: 25px 0;
  padding: 20px;
  background: rgba(32, 201, 151, 0.05);
  border: 1px solid rgba(32, 201, 151, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.technique-detail:hover {
  background: rgba(32, 201, 151, 0.08);
  border-color: rgba(32, 201, 151, 0.4);
  transform: translateY(-2px);
}

/* FAQ Section Styles */
.faq-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #E1306C, #8134AF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-container {
  display: grid;
  gap: 20px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.1);
  border-color: rgba(225, 48, 108, 0.3);
}

.faq-item h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-item p {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 10px;
}

.faq-item ul {
  color: #aaa;
  margin-left: 20px;
  margin-bottom: 15px;
}

.faq-item ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.faq-item strong {
  color: #E1306C;
  font-weight: 600;
}

/* Resources Section Styles */
.resources-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.resources-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #E1306C, #8134AF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.resource-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  text-align: center;
}

.resource-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(225, 48, 108, 0.2);
  border-color: rgba(225, 48, 108, 0.3);
}

.resource-card h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  background: linear-gradient(45deg, #E1306C, #8134AF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.resource-card p {
  color: #aaa;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Final CTA Section Styles */
.final-cta-section {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.1) 0%, rgba(129, 52, 175, 0.1) 100%);
  border: 2px solid rgba(225, 48, 108, 0.3);
  border-radius: 20px;
  padding: 50px;
  margin: 50px 0;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(225, 48, 108, 0.05) 0%, transparent 70%);
  animation: rotateBackground 15s linear infinite;
  z-index: 0;
}

.final-cta-section > * {
  position: relative;
  z-index: 1;
}

.final-cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #E1306C, #8134AF, #FD1D1D, #F77737);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.final-cta-section p {
  color: #ccc;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-container {
  margin: 30px 0;
}

.primary-cta-button {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 20px 40px;
  font-size: 1.3rem;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
  transition: all 0.3s ease;
  font-weight: 700;
}

.primary-cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px rgba(40, 167, 69, 0.6);
}

.small-note {
  color: #888;
  font-size: 0.9rem;
  margin-top: 20px;
  font-style: italic;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .educational-section {
    padding: 25px;
  }
  
  .educational-section h2 {
    font-size: 1.8rem;
  }
  
  .content-block,
  .metric-detail,
  .strategy-detail,
  .algorithm-detail,
  .mistake-detail,
  .technique-detail {
    padding: 15px;
  }
  
  .faq-section,
  .resources-section {
    padding: 25px;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .final-cta-section {
    padding: 30px 20px;
  }
  
  .final-cta-section h2 {
    font-size: 2rem;
  }
  
  .primary-cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .educational-section {
    padding: 20px;
    margin: 20px 0;
  }
  
  .educational-section h2 {
    font-size: 1.5rem;
  }
  
  .faq-section,
  .resources-section {
    padding: 20px;
  }
  
  .final-cta-section h2 {
    font-size: 1.8rem;
  }
  
  .primary-cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .educational-section::before,
  .final-cta-section::before {
    animation: none;
  }
  
  .content-block:hover,
  .metric-detail:hover,
  .strategy-detail:hover,
  .algorithm-detail:hover,
  .mistake-detail:hover,
  .technique-detail:hover,
  .faq-item:hover,
  .resource-card:hover {
    transform: none;
  }
}

/* Focus styles for better accessibility */
.primary-cta-button:focus,
.content-block:focus-within,
.faq-item:focus-within,
.resource-card:focus-within {
  outline: 2px solid #E1306C;
  outline-offset: 2px;
}
