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

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #8b5cf6;
  --accent: #ec4899;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray: #64748b;
  --gray-light: #cbd5e1;
  --light: #f1f5f9;
  --white: #ffffff;
  --success: #10b981;
  --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.logo i {
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--gray);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0.03;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(99, 102, 241, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    );
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--gradient);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(99, 102, 241, 0.5);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray);
}

.stat i {
  font-size: 1.5rem;
  color: var(--primary);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--primary);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  color: var(--primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-badge.dark {
  background: var(--gradient);
  color: var(--white);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray);
}

.features {
  background: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.feature-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.gaming-focus {
  background: var(--dark);
  color: var(--white);
}

.gaming-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gaming-text h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.gaming-text p {
  color: var(--gray-light);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.gaming-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.gaming-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--dark-light);
  border-radius: 15px;
  flex: 1;
}

.gaming-stat i {
  font-size: 2rem;
  color: var(--primary);
}

.gaming-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--white);
}

.gaming-stat span {
  font-size: 0.875rem;
  color: var(--gray-light);
}

.gaming-quote {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--dark-light);
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  position: relative;
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.gaming-quote p {
  font-style: italic;
  margin-bottom: 1rem;
}

.gaming-quote cite {
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
}

.prompt-box {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  padding: 0;
  border-radius: 15px;
}

.gaming-visual .prompt-box {
  background: var(--dark-light);
  border-color: var(--primary);
}

.prompt-box i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.prompt-box p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.gaming-visual .prompt-box p {
  color: var(--gray-light);
}

.prompt-box strong {
  color: var(--primary);
}

.prompt-box.small {
  padding: 1.5rem;
  margin-top: 2rem;
}

.prompt-box.video {
  padding: 3rem;
  text-align: center;
}

.delivery-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.delivery-lead {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 2rem;
  font-weight: 500;
}

.delivery-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.delivery-feature {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--light);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.delivery-feature:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.delivery-feature i {
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.delivery-feature h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.delivery-feature p {
  color: var(--gray);
  font-size: 0.95rem;
}

.delivery-zones {
  padding: 2rem;
  background: var(--light);
  border-radius: 15px;
}

.delivery-zones h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.zone {
  padding: 0.5rem 1rem;
  background: var(--white);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray);
}

.support {
  background: var(--light);
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.support-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.chat-header h3 {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark);
}

.chat-header i {
  color: var(--primary);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.status-badge i {
  font-size: 0.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.status-badge.online {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.chat-button {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gradient);
  color: var(--white);
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.chat-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.chat-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--gray);
  font-size: 0.875rem;
}

.support-hours {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.support-hours h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.support-hours h3 i {
  color: var(--primary);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background: var(--light);
  border-radius: 10px;
}

.hour-item .day {
  font-weight: 600;
  color: var(--dark);
}

.hour-item .time {
  color: var(--gray);
}

.support-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.channel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--light);
  border-radius: 10px;
  color: var(--gray);
  transition: all 0.3s ease;
}

.channel:hover {
  background: var(--primary);
  color: var(--white);
}

.channel i {
  font-size: 1.25rem;
}

.chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 400px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1000;
}

.chat-widget.active {
  transform: translateY(0);
  opacity: 1;
}

.chat-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--gradient);
  color: var(--white);
  border-radius: 15px 15px 0 0;
}

.chat-agent {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.agent-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agent-info strong {
  display: block;
  font-size: 1rem;
}

.status-online {
  font-size: 0.75rem;
  opacity: 0.9;
}

.close-chat {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: opacity 0.3s;
}

.close-chat:hover {
  opacity: 0.8;
}

.chat-messages {
  padding: 1.5rem;
  max-height: 300px;
  overflow-y: auto;
}

.chat-message {
  margin-bottom: 1rem;
}

.chat-message.agent p {
  background: var(--light);
  padding: 1rem;
  border-radius: 15px 15px 15px 5px;
  color: var(--dark);
}

.message-time {
  font-size: 0.75rem;
  color: var(--gray);
  display: block;
  margin-top: 0.5rem;
}

.chat-input {
  display: flex;
  padding: 1rem;
  border-top: 1px solid var(--gray-light);
}

.chat-input input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  font-size: 0.95rem;
}

.chat-input button {
  margin-left: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.chat-input button:hover {
  background: var(--primary-dark);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-detail {
  display: flex;
  gap: 1rem;
}

.contact-detail i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.contact-detail p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.form-group label i {
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gradient);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.video-testimonial {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--dark);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
  z-index: 2;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-text {
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -10px;
}

.testimonial-text blockquote {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}

.author-info strong {
  display: block;
  font-size: 1.125rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.author-info span {
  display: block;
  color: var(--gray);
  font-size: 0.95rem;
}

.author-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.author-stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
}

.author-stats i {
  color: var(--primary);
}

.social-proof {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.other-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.review-stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.review-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review-card cite {
  color: var(--dark);
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-logo i {
  font-size: 1.8rem;
  color: var(--primary);
}

.footer-col p {
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--dark-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-col h4 i {
  color: var(--primary);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--gray-light);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--dark-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--gray-light);
}

.footer-badges {
  display: flex;
  gap: 2rem;
}

.footer-badges span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-light);
  font-size: 0.875rem;
}

.footer-badges i {
  color: var(--success);
}

.privacy-hero {
  background: var(--gradient);
  padding: 150px 0 100px;
  text-align: center;
  color: var(--white);
}

.privacy-header i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.privacy-header h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.privacy-header p {
  font-size: 1.125rem;
  opacity: 0.9;
}

.privacy-content {
  padding: 4rem 0;
}

.privacy-wrapper {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 4rem;
}

.privacy-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.privacy-sidebar h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.privacy-sidebar ul {
  list-style: none;
}

.privacy-sidebar ul li {
  margin-bottom: 0.75rem;
}

.privacy-sidebar a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.privacy-sidebar a:hover,
.privacy-sidebar a.active {
  color: var(--primary);
  background: rgba(99, 102, 241, 0.1);
}

.privacy-main {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.privacy-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-light);
}

.privacy-section:last-child {
  border-bottom: none;
}

.privacy-section h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.privacy-section h2 i {
  color: var(--primary);
}

.privacy-section h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--dark);
}

.privacy-section p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-section ul {
  margin-left: 2rem;
  color: var(--gray);
  line-height: 1.8;
}

.privacy-section ul li {
  margin-bottom: 0.75rem;
}

.privacy-section strong {
  color: var(--dark);
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.usage-item {
  padding: 1.5rem;
  background: var(--light);
  border-radius: 15px;
}

.usage-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.usage-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.usage-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

.info-box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(99, 102, 241, 0.1);
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  margin: 2rem 0;
}

.info-box i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.info-box p {
  margin: 0;
}

.security-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.security-feature {
  padding: 1.5rem;
  background: var(--light);
  border-radius: 15px;
}

.security-feature i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.security-feature h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.security-feature p {
  color: var(--gray);
  font-size: 0.95rem;
}

.security-note {
  padding: 1rem;
  background: var(--light);
  border-radius: 10px;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.rights-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.right-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--light);
  border-radius: 15px;
}

.right-item i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.right-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.right-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

.cookies-types {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.cookie-type {
  padding: 1.5rem;
  background: var(--light);
  border-radius: 15px;
}

.cookie-type h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.cookie-type h4 i {
  color: var(--primary);
}

.cookie-type p {
  margin-bottom: 1rem;
}

.cookie-type ul {
  list-style: none;
  margin-left: 0;
}

.cookie-type ul li {
  position: relative;
  padding-left: 1.5rem;
}

.cookie-type ul li::before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--light);
  border-radius: 15px;
}

.contact-method i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-method strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.contact-method p {
  color: var(--gray);
  font-size: 0.95rem;
}

.privacy-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--gray-light);
  text-align: center;
}

.privacy-footer p {
  margin-bottom: 0.5rem;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  font-weight: 600;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .gaming-content,
  .delivery-content,
  .contact-wrapper,
  .video-testimonial {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .other-reviews {
    grid-template-columns: 1fr;
  }

  .privacy-wrapper {
    grid-template-columns: 1fr;
  }

  .privacy-sidebar {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .gaming-stats {
    flex-direction: column;
  }

  .usage-grid,
  .security-features {
    grid-template-columns: 1fr;
  }

  .chat-widget {
    width: calc(100% - 2rem);
    right: 1rem;
    left: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .privacy-header h1 {
    font-size: 2rem;
  }

  section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .privacy-main {
    padding: 1.5rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-badges {
    flex-direction: column;
    gap: 0.5rem;
  }
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  animation: fadeIn 0.5s ease;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

@media print {
  .nav,
  .chat-widget,
  .footer,
  .scroll-indicator,
  .cta-button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  section {
    page-break-inside: avoid;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-color-scheme: dark) {
}

@media (prefers-contrast: high) {
  .cta-button,
  .submit-button {
    border: 2px solid currentColor;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
}

p {
  line-height: 1.7;
}

button:disabled,
.cta-button:disabled,
.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

button:active,
.cta-button:active,
.submit-button:active {
  transform: scale(0.98);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown) {
  border-color: var(--success);
}

.loading {
  opacity: 0.6;
  pointer-events: none;
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.success-message {
  padding: 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border-radius: 10px;
  margin-bottom: 1rem;
  display: none;
}

.success-message.show {
  display: block;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.p-1 {
  padding: 0.5rem;
}
.p-2 {
  padding: 1rem;
}
.p-3 {
  padding: 1.5rem;
}
.p-4 {
  padding: 2rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.5rem;
}
.gap-2 {
  gap: 1rem;
}
.gap-3 {
  gap: 1.5rem;
}
.gap-4 {
  gap: 2rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-primary {
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.badge-warning {
  background: rgba(251, 191, 36, 0.1);
  color: #f59e0b;
}

.badge-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.alert-info {
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.alert-warning {
  background: rgba(251, 191, 36, 0.1);
  color: #f59e0b;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.skeleton {
  background: linear-gradient(
    90deg,
    var(--light) 0%,
    var(--gray-light) 50%,
    var(--light) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltip-text {
  visibility: hidden;
  background-color: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.875rem;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
