@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* Design Tokens & Variables */
:root {
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Colors */
  --bg-dark: 240 25% 4%;
  --bg-card: 240 20% 8%;
  --bg-card-hover: 240 18% 12%;
  
  --primary: 263 90% 60%;      /* Magic Violet */
  --primary-light: 263 95% 70%;
  --secondary: 190 95% 50%;    /* Cyber Cyan */
  --secondary-light: 190 100% 65%;
  --accent: 325 90% 55%;       /* Pixwick Pink */

  --text-primary: 0 0% 98%;
  --text-secondary: 240 5% 70%;
  --text-muted: 240 5% 45%;

  --border-color: 240 15% 15%;
  --border-glow: 263 80% 50%;

  /* Effects */
  --glass-bg: rgba(13, 12, 22, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-border-hover: rgba(139, 92, 246, 0.2);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  --glow-primary: 0 0 30px rgba(139, 92, 246, 0.25);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: hsl(var(--bg-dark));
  color: hsl(var(--text-primary));
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: hsl(var(--bg-dark));
}
::-webkit-scrollbar-thumb {
  background: hsl(var(--border-color));
  border-radius: 5px;
  border: 2px solid hsl(var(--bg-dark));
}
::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--primary));
}

/* Background Gradients & Glows */
.bg-glow-1, .bg-glow-2 {
  position: absolute;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
}
.bg-glow-1 {
  top: 10%;
  left: -10%;
  background: radial-gradient(circle, hsl(var(--primary)) 0%, transparent 70%);
}
.bg-glow-2 {
  bottom: 15%;
  right: -10%;
  background: radial-gradient(circle, hsl(var(--secondary)) 0%, transparent 70%);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, hsl(var(--primary-light)) 50%, hsl(var(--secondary-light)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-accent {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--accent)) 50%, hsl(var(--secondary)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  color: hsl(var(--text-secondary));
  font-size: 1.05rem;
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 8rem 0;
  position: relative;
}

/* Navigation Bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 9, 14, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.5rem 0;
  background: rgba(9, 9, 14, 0.9);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  height: 42px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: hsl(var(--text-primary));
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-dot {
  color: hsl(var(--secondary));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: hsl(var(--text-secondary));
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--secondary)));
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: hsl(var(--text-primary));
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 50px;
  color: hsl(var(--primary-light));
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulse-glow 3s infinite;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: hsl(var(--secondary));
  border-radius: 50%;
  box-shadow: 0 0 10px hsl(var(--secondary));
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
}

.hero p {
  font-size: 1.2rem;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2.2rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-light)) 100%);
  color: #fff;
  border: none;
  box-shadow: var(--glow-primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-container {
  width: 100%;
  max-width: 380px;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-logo-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 40px rgba(139, 92, 246, 0.35));
}

.hero-ring {
  position: absolute;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
  border: 1px dashed rgba(6, 182, 212, 0.25);
  border-radius: 50%;
  z-index: -1;
  animation: spin 30s linear infinite;
}

/* Feature Section / Stats */
.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-display);
  background: linear-gradient(135deg, hsl(var(--primary-light)) 0%, hsl(var(--secondary-light)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.9rem;
  color: hsl(var(--text-muted));
}

/* Games Section */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

.section-header p {
  max-width: 600px;
}

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

.game-card {
  background: hsl(var(--bg-card));
  border: 1px solid hsl(var(--border-color));
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-lg);
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 30px 60px -15px rgba(139, 92, 246, 0.15), var(--shadow-lg);
}

.game-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #181724;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.game-card:hover .game-image img {
  transform: scale(1.05);
}

.game-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.4rem 1rem;
  background: rgba(9, 9, 14, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  backdrop-filter: blur(5px);
}

.game-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.game-info h3 {
  font-size: 1.8rem;
  color: #fff;
}

.game-info p {
  font-size: 0.95rem;
  color: hsl(var(--text-secondary));
}

.game-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.game-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: hsl(var(--secondary));
  background: rgba(6, 182, 212, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
}

.game-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary-light));
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.game-link svg {
  transition: transform 0.3s ease;
}

.game-link:hover {
  color: #fff;
}

.game-link:hover svg {
  transform: translateX(5px);
}

/* Coming Soon Placeholders */
.coming-soon-card {
  border: 2px dashed rgba(255, 255, 255, 0.05);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  border-radius: 24px;
  text-align: center;
  min-height: 450px;
  transition: var(--transition-smooth);
}

.coming-soon-card:hover {
  border-color: rgba(139, 92, 246, 0.2);
  background: rgba(139, 92, 246, 0.01);
}

.coming-soon-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: hsl(var(--text-muted));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* About / Concept Section */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-feature-item {
  display: flex;
  gap: 1.5rem;
}

.feature-icon-wrapper {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.15));
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-light));
}

.about-feature-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.about-feature-text p {
  font-size: 0.95rem;
}

/* Contact / Newsletter Section */
.contact-section {
  background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
}

.contact-card {
  background: linear-gradient(135deg, hsl(var(--bg-card)) 0%, rgba(18, 17, 26, 0.5) 100%);
  border: 1px solid hsl(var(--border-color));
  padding: 4rem;
  border-radius: 32px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, hsl(var(--primary)), hsl(var(--secondary)), transparent);
}

.contact-card h2 {
  margin-bottom: 1rem;
}

.contact-card p {
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.newsletter-form {
  display: flex;
  max-width: 550px;
  margin: 0 auto;
  gap: 1rem;
}

.form-group {
  flex-grow: 1;
}

.form-input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(9, 9, 14, 0.6);
  border: 1px solid hsl(var(--border-color));
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

/* Footer styling */
footer {
  border-top: 1px solid hsl(var(--border-color));
  padding: 4rem 0 2rem;
  background: #06060a;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  text-decoration: none;
  color: hsl(var(--text-secondary));
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fff;
}

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

.footer-bottom p {
  font-size: 0.85rem;
  color: hsl(var(--text-muted));
}

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

.footer-legal-links a {
  text-decoration: none;
  color: hsl(var(--text-muted));
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-legal-links a:hover {
  color: #fff;
}

/* Game Page Specific Details */
.game-hero {
  padding-top: 10rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.game-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 75%);
  z-index: -1;
}

.game-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.game-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.game-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
}

.game-mockup {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 4/3;
  background: #181724;
}

.game-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  padding: 6rem 0;
}

.game-features-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.game-feature-card {
  background: hsl(var(--bg-card));
  border: 1px solid hsl(var(--border-color));
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
}

.game-feature-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: hsla(263, 90%, 60%, 0.15);
  flex-shrink: 0;
}

.game-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.75rem;
}

.info-label {
  color: hsl(var(--text-muted));
  font-size: 0.95rem;
}

.info-value {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}

/* Privacy Policy Layout */
.privacy-container {
  padding-top: 10rem;
  padding-bottom: 8rem;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content {
  background: hsl(var(--bg-card));
  border: 1px solid hsl(var(--border-color));
  padding: 4rem;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.privacy-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.privacy-date {
  color: hsl(var(--primary-light));
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 3rem;
}

.privacy-body h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: #fff;
}

.privacy-body p, .privacy-body ul {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.privacy-body ul {
  padding-left: 1.5rem;
}

.privacy-body li {
  color: hsl(var(--text-secondary));
  margin-bottom: 0.5rem;
}

/* Keyframes & Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.35);
    border-color: rgba(139, 92, 246, 0.45);
  }
}

/* On-scroll animations classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Responsiveness Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero p {
    margin: 0 auto;
  }
  .stats-container {
    margin-top: 2rem;
  }
  .games-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 0 auto;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .game-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .game-hero-content {
    align-items: center;
  }
  .game-mockup {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .game-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .stats-container {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(9, 9, 14, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    transition: var(--transition-smooth);
    border-left: 1px solid var(--glass-border);
  }
  .nav-menu.active {
    right: 0;
  }
  .menu-toggle {
    display: flex;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  .contact-card {
    padding: 2.5rem 1.5rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .privacy-content {
    padding: 2rem 1.5rem;
  }
}

/* Social Icons in Footer */
.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--text-secondary));
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-link:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: hsl(var(--primary));
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Support Form specific styles */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  background: linear-gradient(135deg, hsl(var(--bg-card)) 0%, rgba(18, 17, 26, 0.5) 100%);
  border: 1px solid hsl(var(--border-color));
  padding: 4rem;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.support-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, hsl(var(--primary)), hsl(var(--secondary)), transparent);
}

.support-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}

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

.support-social-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: hsl(var(--text-secondary));
  font-family: var(--font-display);
  font-weight: 500;
  transition: var(--transition-fast);
}

.support-social-item:hover {
  color: #fff;
  transform: translateX(5px);
}

.support-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-light));
  transition: var(--transition-fast);
}

.support-social-item:hover .support-social-icon {
  background: rgba(139, 92, 246, 0.1);
  border-color: hsl(var(--primary));
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

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

.form-select {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(9, 9, 14, 0.6);
  border: 1px solid hsl(var(--border-color));
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-fast);
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
}

.form-select:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

.form-textarea {
  width: 100%;
  height: 150px;
  padding: 1rem 1.5rem;
  background: rgba(9, 9, 14, 0.6);
  border: 1px solid hsl(var(--border-color));
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  resize: none;
  transition: var(--transition-fast);
}

.form-textarea:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

@media (max-width: 900px) {
  .support-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
