/* Trendbet site4 — Matrix/cyber tema, perde, koyu tema */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --neon-green: #00ff41;
  --dark-green: #003b00;
  --matrix-black: #0d0208;
  --electric-yellow: #ffff00;
  --deep-yellow: #b8b800;
  --cyber-gray: #1a1a1a;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--matrix-black);
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Perde (curtain) */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: linear-gradient(160deg, #050804 0%, var(--matrix-black) 40%, #051005 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.curtain.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.curtain__logo {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--neon-green), var(--dark-green));
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--matrix-black);
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
}
.curtain__title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
}
.curtain__title span { color: var(--neon-green); }
.curtain__sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  text-align: center;
  max-width: 320px;
  line-height: 1.6;
}
.curtain__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--neon-green), var(--dark-green));
  color: var(--matrix-black);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.28s ease;
  box-shadow: 0 6px 24px rgba(0, 255, 65, 0.4);
}
.curtain__btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(0, 255, 65, 0.6);
  color: var(--matrix-black);
}
.curtain__hint { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 20px; }

/* Matrix background */
.matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.15;
  background: linear-gradient(180deg, var(--matrix-black) 0%, var(--dark-green) 100%);
}
.matrix-rain { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; }
.matrix-column {
  position: absolute;
  top: -100%;
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green);
  animation: rain 15s linear infinite;
  opacity: 0.8;
}
@keyframes rain {
  0% { transform: translateY(0); }
  100% { transform: translateY(200vh); }
}

/* Header */
header {
  background: linear-gradient(135deg, rgba(0, 59, 0, 0.95) 0%, rgba(13, 2, 8, 0.98) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--neon-green);
  box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 15px; }
.logo a {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(45deg, var(--neon-green), var(--electric-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
}
.logo a span { color: var(--neon-green); -webkit-text-fill-color: var(--neon-green); }
.logo a:hover { opacity: 0.9; }

.cta-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.btn {
  position: relative;
  padding: 18px 40px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}
.btn-primary {
  background: linear-gradient(135deg, var(--neon-green) 0%, var(--dark-green) 100%);
  color: var(--matrix-black);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 40px rgba(0, 255, 65, 0.7);
  color: var(--matrix-black);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--electric-yellow) 0%, var(--deep-yellow) 100%);
  color: var(--matrix-black);
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.4);
}
.btn-secondary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 40px rgba(255, 255, 0, 0.6);
  color: var(--matrix-black);
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.5s;
}
.btn:hover::before { left: 100%; }
.btn-icon { font-size: 1.3rem; animation: bounce 1s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* Hero */
.hero {
  padding: 90px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 65, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
  background: linear-gradient(45deg, var(--neon-green), var(--electric-yellow), var(--neon-green));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient 3s ease infinite;
  position: relative;
  z-index: 1;
}
@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-subtitle {
  font-size: 1.35rem;
  color: var(--neon-green);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 4px;
  position: relative;
  z-index: 1;
}
.live-stats {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(0, 255, 65, 0.55);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  box-shadow: 0 0 25px rgba(0, 255, 65, 0.12);
  position: relative;
  z-index: 1;
}
.live-stats span { color: #cfcfcf; }
.live-stats strong {
  font-family: 'Orbitron', sans-serif;
  color: var(--electric-yellow);
  letter-spacing: 1px;
}
.hero-cta { margin-top: 24px; position: relative; z-index: 1; }

/* Breadcrumb */
.breadcrumb {
  background: rgba(0, 59, 0, 0.3);
  padding: 15px 0;
  border-bottom: 1px solid var(--neon-green);
}
.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 10px; }
.breadcrumb-list a {
  color: var(--neon-green);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb-list a:hover { color: var(--electric-yellow); }
.breadcrumb-list .current { color: var(--electric-yellow); font-weight: 600; }
.breadcrumb-separator { color: var(--neon-green); }

/* Content */
.content-section { padding: 70px 0; position: relative; }
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.3rem;
  color: var(--electric-yellow);
  margin-bottom: 24px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-green), transparent);
}
.article-content {
  background: rgba(26, 26, 26, 0.82);
  border: 1px solid var(--neon-green);
  border-radius: 10px;
  padding: 50px;
  margin-bottom: 50px;
  box-shadow: 0 0 40px rgba(0, 255, 65, 0.1);
  position: relative;
  overflow: hidden;
}
.article-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--neon-green), var(--electric-yellow), var(--neon-green));
}
.article-content p {
  font-size: 1.12rem;
  line-height: 1.9;
  margin-bottom: 22px;
  color: #e0e0e0;
  text-align: justify;
}
.article-content h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--neon-green);
  font-size: 1.7rem;
  margin: 38px 0 16px;
  padding-left: 18px;
  border-left: 4px solid var(--electric-yellow);
  scroll-margin-top: 120px;
}
.article-content h3 {
  color: var(--electric-yellow);
  font-size: 1.32rem;
  margin: 26px 0 12px;
  scroll-margin-top: 120px;
}
.highlight-box {
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(255, 255, 0, 0.05) 100%);
  border-left: 4px solid var(--neon-green);
  padding: 22px;
  margin: 26px 0;
  border-radius: 0 10px 10px 0;
}
.highlight-box p { margin: 0; font-weight: 600; color: var(--neon-green); }

/* Social section */
.social-section {
  background: linear-gradient(135deg, rgba(0, 59, 0, 0.5) 0%, rgba(13, 2, 8, 0.85) 100%);
  padding: 60px 0;
  border-top: 2px solid var(--neon-green);
  border-bottom: 2px solid var(--neon-green);
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 34px;
}
.social-card {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid var(--neon-green);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.18), transparent);
  transition: left 0.5s;
}
.social-card:hover::before { left: 100%; }
.social-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 255, 65, 0.3);
  border-color: var(--electric-yellow);
}
.social-icon { font-size: 3rem; margin-bottom: 15px; display: block; }
.social-card h3 {
  color: var(--electric-yellow);
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 10px;
}
.social-card p { color: #aaa; font-size: 0.95rem; }
.social-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--neon-green);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.social-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-green);
  transition: width 0.3s;
}
.social-link:hover { color: var(--electric-yellow); }
.social-link:hover::after { width: 100%; }

/* Access section */
.access-section { padding: 70px 0; }
.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 34px;
}
.address-item {
  background: linear-gradient(145deg, #1a1a1a, #0d0208);
  border: 1px solid var(--dark-green);
  border-radius: 10px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.address-item:hover {
  border-color: var(--neon-green);
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 255, 65, 0.2);
}
.address-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--electric-yellow);
  min-width: 50px;
  text-align: center;
}
.address-info h4 {
  color: var(--neon-green);
  margin-bottom: 5px;
  font-family: 'Orbitron', sans-serif;
}
.address-info p { color: #888; font-size: 0.92rem; margin: 0; }
.status-badge {
  display: inline-block;
  padding: 5px 15px;
  background: var(--neon-green);
  color: var(--matrix-black);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 20px;
  margin-top: 10px;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.72; }
}

/* Footer */
footer {
  background: var(--matrix-black);
  border-top: 3px solid var(--neon-green);
  padding: 60px 0 30px;
  text-align: center;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}
.footer-section h4 {
  color: var(--electric-yellow);
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 10px; }
.footer-section a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-section a:hover { color: var(--neon-green); }
.footer-bottom {
  border-top: 1px solid var(--dark-green);
  padding-top: 30px;
  color: #666;
  font-size: 0.9rem;
}

.glitch { position: relative; animation: glitch-skew 1s infinite; }
@keyframes glitch-skew {
  0% { transform: skew(0deg); }
  20% { transform: skew(-2deg); }
  40% { transform: skew(2deg); }
  60% { transform: skew(-1deg); }
  80% { transform: skew(1deg); }
  100% { transform: skew(0deg); }
}

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--matrix-black); }
::-webkit-scrollbar-thumb { background: var(--neon-green); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--electric-yellow); }

@media (max-width: 768px) {
  .hero h1 { font-size: 2.4rem; }
  .header-content { flex-direction: column; text-align: center; }
  .cta-buttons { width: 100%; justify-content: center; }
  .btn { width: 100%; justify-content: center; }
  .article-content { padding: 30px 20px; }
  .section-title { font-size: 1.75rem; }
}
