@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: #020617;
  color: #ffffff;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #020617;
  border-bottom: 1px solid #0f172a;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

@keyframes glitch {
  0%   { text-shadow: 2px 0 yellow, -2px 0 #00ffff; }
  20%  { text-shadow: -2px 0 #ff00aa, 2px 0 #00ffff; }
  40%  { text-shadow: 2px 0 #ff00aa, -2px 0 #00ffff; }
  60%  { text-shadow: -4px 0 #ff00aa, 4px 0 #00ffff; }
  80%  { text-shadow: 4px 0 #ff00aa, -4px 0 #00ffff; }
  100% { text-shadow: 2px 0 #ff00aa, -2px 0 #00ffff; }
}

.logo {
  animation: glitch 5s infinite alternate;
  font-size: 30px;
  margin: 0;
  font-family: 'Orbitron', sans-serif;
}

nav a {
  color: #ffffff;
  margin-left: 20px;
  text-decoration: none;
  font-family: 'Exo 2', sans-serif;
}

.cta {
  background: #22d3ee;
  color: #020617;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 50, 0, 0.8)), 
              url('https://images.unsplash.com/photo-1533460004989-cef01064af7e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 200px 0 300px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
}

.hero-overlay {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #4CAF50;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  font-family: 'Orbitron', sans-serif;
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 50px;
  color: #e8f5e9;
  font-weight: 300;
  font-family: 'Exo 2', sans-serif;
}

.value-proposition {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.benefit {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 25px;
  width: 280px;
  border: 1px solid rgba(76, 175, 80, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: #4CAF50;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.benefit h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #4CAF50;
  font-family: 'Exo 2', sans-serif;
}

.benefit p {
  color: #e0e0e0;
  line-height: 1.5;
}

.profit-calculation {
  background: rgba(26, 109, 44, 0.3);
  border-radius: 10px;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto 40px;
  border-left: 5px solid #4CAF50;
}

.profit-example {
  font-size: 3px;
  margin: 0;
  font-family: 'Exo 2', sans-serif;
  color: yellow!important;
}

.highlight {
  color: rgb(100, 200, 250);
  font-weight: bold;
}

.cta-buttons {
  margin: 40px 0;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(to right, #4CAF50, #2E7D32);
  color: white;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  margin: 10px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
  border: none;
  cursor: pointer;
  font-family: 'Exo 2', sans-serif;
}

.cta-button:hover {
  background: linear-gradient(to right, #43A047, #1B5E20);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

.secondary-button {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 16px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  margin: 10px;
  transition: all 0.3s;
  border: 2px solid #4CAF50;
  font-family: 'Exo 2', sans-serif;
}

.secondary-button:hover {
  background: rgba(76, 175, 80, 0.2);
  border-color: #66BB6A;
}

.logo-container {
  margin-top: 50px;
}

.alliance-logo {
  filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.5));
}

/* RULES SECTION */
.container {
  width: 100%;
  max-width: 100vw;
  margin: 50px auto 20px;
  padding: 20px;
}

#rules {
  position: relative;
  width: 100%;
  padding: 0px 5px;
  perspective: 1200px;
}

#rules h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #00f3ff;
  text-shadow: 0 0 15px rgba(0, 243, 255, 0.7);
  letter-spacing: 3px;
  position: relative;
  animation: titleGlow 3s infinite alternate;
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.7);
  }
  100% {
    text-shadow: 0 0 25px rgba(0, 243, 255, 1), 0 0 35px rgba(0, 100, 255, 0.5);
  }
}

.tip-card {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(16, 18, 54, 0.9) 0%, rgba(30, 32, 72, 0.9) 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
  transform: rotateX(5deg) rotateY(-5deg);
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 243, 255, 0.2);
  overflow: hidden;
  z-index: 1;
}

.tip-card:hover {
  transform: rotateX(0deg) rotateY(0deg) translateZ(30px);
}

.tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(0, 243, 255, 0.05) 50%, transparent 70%);
  z-index: -1;
  animation: shine 4s infinite linear;
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.tip-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00f3ff, #0055ff, #9d00ff, #00f3ff);
  background-size: 400% 400%;
  border-radius: 22px;
  z-index: -2;
  animation: borderGlow 6s ease infinite;
  opacity: 0.7;
}

@keyframes borderGlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.tip-card ul {
  list-style-type: none;
  position: relative;
  z-index: 2;
}

.tip-card li {
  padding: 20px 20px 20px 70px;
  margin-bottom: 25px;
  background: rgba(10, 12, 40, 0.7);
  border-radius: 12px;
  border-left: 4px solid #00f3ff;
  position: relative;
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.tip-card li:hover {
  transform: translateZ(15px) translateY(-5px);
  background: rgba(20, 22, 60, 0.9);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border-left: 4px solid #9d00ff;
}

.tip-card li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.tip-card li:hover::before {
  transform: translateX(100%);
}

.tip-card li i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: #00f3ff;
  background: rgba(0, 243, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.tip-card li:hover i {
  color: #9d00ff;
  transform: translateY(-50%) scale(1.2);
}

.tip-card li strong {
  color: #00f3ff;
  font-weight: 600;
}

.tip-card li .email {
  color: yellow;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.tip-card li .email::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #9d00ff;
  transition: width 0.3s;
}

.tip-card li .email:hover::after {
  width: 100%;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-element {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(0, 243, 255, 0.1);
  border: 1px solid rgba(0, 243, 255, 0.3);
  border-radius: 10px;
  transform-style: preserve-3d;
  animation: float 15s infinite linear;
}

.floating-element:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  width: 30px;
  height: 30px;
}

.floating-element:nth-child(2) {
  top: 20%;
  right: 10%;
  animation-delay: -2s;
  width: 50px;
  height: 50px;
  animation-duration: 20s;
}

.floating-element:nth-child(3) {
  bottom: 30%;
  left: 15%;
  animation-delay: -5s;
  width: 25px;
  height: 25px;
  animation-duration: 12s;
}

.floating-element:nth-child(4) {
  bottom: 10%;
  right: 15%;
  animation-delay: -8s;
  width: 60px;
  height: 60px;
  animation-duration: 25s;
}

@keyframes float {
  0% {
    transform: translateZ(0) rotateX(0) rotateY(0);
  }
  25% {
    transform: translateZ(50px) rotateX(20deg) rotateY(90deg);
  }
  50% {
    transform: translateZ(100px) rotateX(0) rotateY(180deg);
  }
  75% {
    transform: translateZ(50px) rotateX(-20deg) rotateY(270deg);
  }
  100% {
    transform: translateZ(0) rotateX(0) rotateY(360deg);
  }
}

.footer-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: rgba(224, 224, 255, 0.6);
  font-style: italic;
  letter-spacing: 1px;
}

/* EARNING SECTION */
.betting-advert-container {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border-radius: 12px;
  padding: 24px;
  margin: 80px auto;
  max-width: 800px;
  background: linear-gradient(135deg, #1a2a3a 0%, #0d1520 100%);
  color: #e0e0e0;
  border: 1px solid #2a3a4a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.adheader {
  color: #4fc3f7;
  margin-top: 0;
  font-size: 2em;
  border-bottom: 2px solid #2a3a4a;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.betting-advert-container h2 {
  color: #81c784;
  font-size: 1.4em;
  margin-top: 25px;
  margin-bottom: 15px;
}

.betting-advert-container p {
  line-height: 1.6;
  margin: 15px 0;
}

.betting-advert-container ul {
  padding-left: 20px;
  margin: 15px 0;
}

.betting-advert-container li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.warning {
  background-color: rgba(255, 183, 77, 0.1);
  border-left: 4px solid #ffb74d;
  padding: 12px;
  margin: 20px 0;
  border-radius: 0 4px 4px 0;
}

.ctar {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #2a3a4a;
}

#email {
  color: yellow;
  background-color: rgb(0,0,0);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 20px;
  display: inline-block;
  margin-top: 10px;
}

/* INTEL HUB & SECTIONS */
.section {
  padding: 80px 40px;
}

.section.alt {
  background: #0a0f2c;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #22d3ee;
  font-family: 'Orbitron', sans-serif;
}

.section p {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.steps {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.step {
  background: #0f172a;
  padding: 24px 32px;
  border-radius: 10px;
  font-size: 1.2rem;
  border: 1px solid #1e293b;
  min-width: 200px;
  text-align: center;
}

/* SUPPORTED BOOKIES */
.header {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
  border-bottom: 1px solid #334155;
}

.header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Orbitron', sans-serif;
}

.region-section {
  padding: 40px 20px;
}

.region-title {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #3b82f6;
  color: #e2e8f0;
  font-family: 'Exo 2', sans-serif;
}

.bookies-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
}

.bookie-card {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border-radius: 15px;
  width: 280px;
  padding: 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid #334155;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bookie-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
}

.bookie-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 2px solid #3b82f6;
  padding: 15px;
  overflow: hidden;
  position: relative;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 90px;
  max-height: 90px;
}

.logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 40px;
}

.bookie-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #f1f5f9;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Exo 2', sans-serif;
}

.signup-btn {
  display: inline-block;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
  width: 100%;
  text-align: center;
  letter-spacing: 0.5px;
  font-family: 'Exo 2', sans-serif;
}

.signup-btn:hover {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.region-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.uk-badge {
  background-color: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.us-badge {
  background-color: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.logo-loading {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.loader {
  width: 30px;
  height: 30px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.note {
  background-color: #1e293b;
  padding: 20px;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 800px;
  border-left: 5px solid #3b82f6;
}

.note h3 {
  color: #3b82f6;
  margin-bottom: 10px;
  font-family: 'Exo 2', sans-serif;
}

.note p {
  color: #94a3b8;
  line-height: 1.6;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 32px 20px;
  border-top: 1px solid #1e293b;
  color: #94a3b8;
  font-family: 'Exo 2', sans-serif;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .navbar {
    padding: 16px 20px;
    flex-wrap: wrap;
  }
  
  .hero {
    padding: 150px 0 200px;
    margin-top: 70px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .tagline {
    font-size: 1.2rem;
  }
  
  .value-proposition {
    flex-direction: column;
    align-items: center;
  }
  
  .benefit {
    width: 90%;
    max-width: 350px;
  }
  
  .profit-example {
    font-size: 1.1rem;
  }
  
  #rules h2 {
    font-size: 2.5rem;
  }
  
  .tip-card {
    width: 95%;
    padding: 25px;
    transform: rotateX(3deg) rotateY(-3deg);
  }
  
  .tip-card li {
    padding: 15px 15px 15px 60px;
  }
  
  .tip-card li i {
    left: 15px;
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }
  
  .floating-element {
    display: none;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .steps {
    flex-direction: column;
    align-items: center;
  }
  
  .bookie-card {
    width: 100%;
    max-width: 350px;
  }
  
  .header h1 {
    font-size: 2.2rem;
  }
  
  .region-title {
    font-size: 1.5rem;
  }
  
  .adheader {
    font-size: 1.6em;
  }
}

@media (max-width: 480px) {
  #rules h2 {
    font-size: 2rem;
  }
  
  .tip-card {
    padding: 20px;
  }
  
  .tip-card li {
    padding: 12px 12px 12px 50px;
    margin-bottom: 20px;
  }
  
  .tip-card li i {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
  
  .header h1 {
    font-size: 1.8rem;
  }
  
  .bookie-card {
    padding: 20px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .cta-button, .secondary-button {
    padding: 14px 25px;
    font-size: 1rem;
  }
}



