/* ===== VARIABLES & RESET ===== */
:root {
  --primary: #7c3aed;
  --secondary: #f97316;
  --accent: #06b6d4;
  --dark: #1a1a2e;
  --light: #f5f5f7;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --border-light: #e5e7eb;
  --success: #10b981;
  --warning: #f59e0b;
}

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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--light);
  scroll-behavior: smooth;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--dark);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

/* ===== LAYOUT ===== */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

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

section {
  padding: 80px 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

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

/* ===== NAVBAR ===== */
nav {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

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

.nav-links a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  color: white;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h1 {
  color: white;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: none;
  -webkit-text-fill-color: white;
  animation: fadeInDown 0.8s ease;
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-light {
  background: white;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-light:hover {
  background: var(--light);
  transform: translateY(-2px);
}

/* ===== OPERATOR CARDS ===== */
.operators-section {
  padding: 100px 20px;
  background: var(--light);
}

.operators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.operator-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border-top: 4px solid;
  animation: slideUp 0.6s ease;
}

.operator-card:nth-child(1) {
  border-top-color: var(--primary);
}

.operator-card:nth-child(2) {
  border-top-color: var(--secondary);
}

.operator-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.operator-header {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-bottom: 1px solid var(--border-light);
}

.operator-header h3 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.operator-logo {
  font-weight: 800;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.operator-body {
  padding: 2rem;
}

.operator-body p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

.operator-features {
  list-style: none;
  margin: 2rem 0;
}

.operator-features li {
  padding: 0.8rem 0;
  padding-left: 1.8rem;
  position: relative;
  color: var(--text-dark);
  font-weight: 500;
}

.operator-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
  font-size: 1.2rem;
}

.operator-cta {
  display: grid;
  gap: 1rem;
}

.operator-cta .btn {
  width: 100%;
  text-align: center;
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
  padding: 100px 20px;
  background: white;
}

.comparison-table {
  width: 100%;
  margin-top: 2rem;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 1.5rem;
  text-align: left;
  font-weight: 700;
}

.comparison-table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
}

.comparison-table tbody tr:hover {
  background: rgba(124, 58, 237, 0.05);
}

.feature-check {
  color: var(--success);
  font-weight: 700;
  font-size: 1.2rem;
}

.feature-x {
  color: #ef4444;
  font-weight: 700;
}

/* ===== WHY US SECTION ===== */
.why-us-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  animation: slideUp 0.6s ease;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
  border-color: var(--primary);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.feature-card p {
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-strip .container {
  position: relative;
  z-index: 2;
}

.cta-strip h2 {
  color: white;
  margin-bottom: 1rem;
  background: none;
  -webkit-text-fill-color: white;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: #c0c0c0;
  padding: 40px 20px 20px;
  text-align: center;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section a {
  color: #a0a0a0;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #808080;
  font-size: 0.9rem;
}

.footer-disclaimer {
  background: rgba(249, 115, 22, 0.1);
  border-left: 4px solid var(--secondary);
  padding: 1rem;
  margin: 2rem 0;
  border-radius: 4px;
  color: #d0d0d0;
  font-size: 0.9rem;
}

/* ===== RESPONSIBLE GAMBLING SECTION ===== */
.responsible-section {
  padding: 80px 20px;
}

.warning-box {
  background: #fff3cd;
  border: 2px solid var(--warning);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
  color: #856404;
}

.warning-box h3 {
  color: #856404;
  margin-bottom: 1rem;
}

.danger-box {
  background: #f8d7da;
  border: 2px solid #dc3545;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
  color: #721c24;
}

.danger-box h3 {
  color: #721c24;
  margin-bottom: 1rem;
}

.success-box {
  background: #d4edda;
  border: 2px solid var(--success);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
  color: #155724;
}

.success-box h3 {
  color: #155724;
  margin-bottom: 1rem;
}

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

.resource-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.resource-card h3 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.resource-card a {
  color: var(--accent);
  font-weight: 600;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
  margin-bottom: 2rem;
  color: var(--dark);
}

.info-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-label {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.info-value {
  color: var(--text-dark);
  font-size: 1.1rem;
}

.form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

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

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 12px 32px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

/* ===== ABOUT SECTION ===== */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.about-hero h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 1rem;
}

.about-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
}

.about-content {
  padding: 100px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.about-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-bottom: 3rem;
}

.value-item {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  text-align: center;
}

.value-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.value-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 380px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
  z-index: 999;
  animation: slideInRight 0.5s ease;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-banner h3 {
  color: white;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  flex: 1;
  min-width: 120px;
}

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

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-btn-settings {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.cookie-btn-settings:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* ===== AGE GATE MODAL ===== */
.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.age-gate-modal {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  color: white;
  padding: 3rem;
  border-radius: 16px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.5s ease;
  position: relative;
  overflow: hidden;
}

.age-gate-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.age-gate-content {
  position: relative;
  z-index: 1;
}

.age-gate-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.age-gate-modal h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  background: none;
  -webkit-text-fill-color: white;
}

.age-gate-modal p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.age-gate-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.age-gate-btn {
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-width: 140px;
}

.age-gate-btn-yes {
  background: white;
  color: var(--primary);
}

.age-gate-btn-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.age-gate-btn-no {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.age-gate-btn-no:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* ===== ACCESS BLOCKED OVERLAY ===== */
.access-blocked-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 25%, var(--accent) 50%, var(--secondary) 75%, var(--primary) 100%);
  background-size: 400% 400%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  animation: gradientShift 15s ease infinite, fadeIn 0.5s ease;
}

.access-blocked-content {
  text-align: center;
  max-width: 600px;
  padding: 3rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.6s ease;
}

.blocked-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.access-blocked-content h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blocked-title {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blocked-message {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.blocked-hint {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 2rem;
  font-style: italic;
  opacity: 0.9;
}

.refresh-button-container {
  margin-top: 2rem;
}

.refresh-button {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: var(--primary);
  padding: 14px 48px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.refresh-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

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

/* ===== ANIMATIONS ===== */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

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

  .operators-grid,
  .why-us-grid,
  .resources-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 0.9rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  footer .container {
    grid-template-columns: 1fr;
  }

  section {
    padding: 50px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .operators-grid,
  .why-us-grid {
    gap: 1.5rem;
  }

  .operator-card,
  .feature-card {
    padding: 1.5rem;
  }

  .contact-info,
  .form-wrapper {
    padding: 1.5rem;
  }

  .logo {
    font-size: 1.4rem;
  }
}
