:root {
  --bg-dark: #050505;
  --bg-dark-2: #0d0d0f;
  --card: rgba(14, 14, 18, 0.94);
  --card-border: rgba(0, 102, 255, 0.22);
  --text: #f5f7fb;
  --muted: #b8c2d6;
  --blue: #005eff;
  --blue-strong: #2ea8ff;
  --silver: #e8edf5;
  --accent: #4fc3ff;
  --yellow: #ffd000;
  --yellow-dark: #ffb800;
  --shadow-blue: 0 0 25px rgba(0, 94, 255, 0.28);
  --shadow-strong: 0 0 35px rgba(46, 168, 255, 0.38);
  --shadow-yellow: 0 0 25px rgba(255, 208, 0, 0.30);
  --radius: 18px;
  --max-width: 1200px;
}

.oezentry-site,
.oezentry-site * {
  box-sizing: border-box;
}

.oezentry-site {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top center, rgba(0,94,255,0.12), transparent 35%),
    radial-gradient(circle at bottom center, rgba(46,168,255,0.08), transparent 30%),
    linear-gradient(180deg, #020202 0%, #07090d 45%, #040507 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  border-radius: 20px;
}

.oezentry-site a {
  color: inherit;
  text-decoration: none;
}

.oezentry-site img {
  max-width: 100%;
  display: block;
}

.oezentry-container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.oezentry-section {
  padding: 90px 0;
  position: relative;
}

.oezentry-section-title {
  font-size: 38px;
  text-align: center;
  margin-bottom: 16px;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(0,94,255,0.18);
}

.oezentry-section-subtitle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
  color: var(--muted);
  font-size: 17px;
}

.oezentry-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(4, 4, 6, 0.88);
  border-bottom: 1px solid rgba(0, 94, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.oezentry-nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 12px 0;
}

.oezentry-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.oezentry-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0,94,255,0.18);
}

.oezentry-brand-text h2 {
  font-size: 24px;
  color: var(--silver);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
}

.oezentry-brand-text span {
  display: block;
  color: var(--blue-strong);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.oezentry-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.oezentry-menu a {
  color: var(--silver);
  font-weight: 600;
  transition: 0.25s ease;
  position: relative;
}

.oezentry-menu a:hover {
  color: var(--blue-strong);
}

.oezentry-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-strong));
  transition: 0.25s ease;
}

.oezentry-menu a:hover::after {
  width: 100%;
}

.oezentry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.oezentry-btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.oezentry-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.oezentry-btn-secondary {
  background: transparent;
  color: var(--silver);
  border-color: rgba(255,255,255,0.25);
}

.oezentry-btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue-strong);
}

.oezentry-btn-yellow {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: #000000;
  box-shadow: var(--shadow-yellow);
}

.oezentry-btn-yellow:hover {
  transform: translateY(-2px);
}

.oezentry-hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.oezentry-hero::before,
.oezentry-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
}

.oezentry-hero::before {
  width: 350px;
  height: 350px;
  background: rgba(0, 94, 255, 0.16);
  top: 20px;
  left: -120px;
}

.oezentry-hero::after {
  width: 320px;
  height: 320px;
  background: rgba(46, 168, 255, 0.10);
  right: -110px;
  bottom: 0;
}

.oezentry-hero-grid,
.oezentry-about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.oezentry-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,94,255,0.28);
  background: rgba(0,94,255,0.08);
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 18px;
}

.oezentry-hero-left h1 {
  font-size: 58px;
  line-height: 1.06;
  margin: 0 0 20px;
  text-transform: uppercase;
  color: var(--silver);
  text-shadow: 0 0 22px rgba(0,94,255,0.16);
}

.oezentry-hero-left h1 span {
  color: var(--blue-strong);
}

.oezentry-hero-left p,
.oezentry-card p,
.oezentry-about-box p,
.oezentry-step p,
.oezentry-faq-item p,
.oezentry-special-box p,
.oezentry-cta-box p {
  color: var(--muted);
}

.oezentry-hero-buttons,
.oezentry-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.oezentry-hero-buttons {
  margin-bottom: 32px;
}

.oezentry-hero-points,
.oezentry-strip-grid,
.oezentry-cards-3,
.oezentry-cards-4,
.oezentry-steps,
.oezentry-footer-grid {
  display: grid;
  gap: 20px;
}

.oezentry-hero-points { grid-template-columns: repeat(3, 1fr); }
.oezentry-strip-grid { grid-template-columns: repeat(4, 1fr); }
.oezentry-cards-3 { grid-template-columns: repeat(3, 1fr); }
.oezentry-cards-4 { grid-template-columns: repeat(4, 1fr); }
.oezentry-steps { grid-template-columns: repeat(4, 1fr); }
.oezentry-footer-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr; }

.oezentry-hero-point,
.oezentry-strip-item,
.oezentry-card,
.oezentry-about-box,
.oezentry-step,
.oezentry-faq-item,
.oezentry-hero-card {
  background: linear-gradient(180deg, rgba(12,12,16,0.96), rgba(5,5,7,0.94));
  border: 1px solid rgba(0,94,255,0.14);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.28);
}

.oezentry-hero-point,
.oezentry-strip-item,
.oezentry-card,
.oezentry-about-box,
.oezentry-step,
.oezentry-faq-item,
.oezentry-hero-card,
.oezentry-cta-box {
  padding: 28px;
}

.oezentry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.34), var(--shadow-blue);
  border-color: rgba(46,168,255,0.25);
}

.oezentry-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  background: rgba(0,94,255,0.10);
  border: 1px solid rgba(0,94,255,0.18);
  color: var(--blue-strong);
  box-shadow: var(--shadow-blue);
}

.oezentry-card h3,
.oezentry-step h3,
.oezentry-faq-item h3,
.oezentry-hero-card h3,
.oezentry-footer-box h3,
.oezentry-about-box h2 {
  color: var(--silver);
  margin-top: 0;
  text-transform: uppercase;
}

.oezentry-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.oezentry-card ul li {
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}

.oezentry-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--blue-strong);
  font-size: 18px;
  top: -1px;
}

.oezentry-contact-list {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.oezentry-contact-item {
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,94,255,0.11);
  border-radius: 14px;
  color: var(--muted);
}

.oezentry-contact-item strong,
.oezentry-hero-point strong,
.oezentry-strip-item strong,
.oezentry-mini-point strong {
  display: block;
  color: var(--blue-strong);
  margin-bottom: 6px;
}

.oezentry-strip {
  padding: 20px 0 0;
}

.oezentry-strip-item {
  text-align: center;
  color: var(--silver);
}

.oezentry-mini-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.oezentry-mini-point {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,94,255,0.10);
  color: var(--silver);
}

.oezentry-about-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.oezentry-frame {
  width: 100%;
  max-width: 520px;
  padding: 24px;
  border-radius: 28px;
  background: radial-gradient(circle at center, rgba(0,94,255,0.12), rgba(255,255,255,0.01));
  border: 1px solid rgba(0,94,255,0.12);
  box-shadow: 0 16px 50px rgba(0,0,0,0.34), var(--shadow-blue);
}

.oezentry-frame img,
.oezentry-hero-logo-wrap img {
  width: 100%;
  border-radius: 16px;
}

.oezentry-hero-logo-wrap {
  padding: 10px;
  border-radius: 20px;
  background: radial-gradient(circle at center, rgba(0,94,255,0.14), rgba(255,255,255,0.01));
  margin-bottom: 20px;
}

.oezentry-step-number {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  box-shadow: var(--shadow-blue);
}

.oezentry-special {
  background: linear-gradient(180deg, rgba(3,3,5,0.96), rgba(5,7,12,0.96)), radial-gradient(circle at center, rgba(0,94,255,0.12), transparent 45%);
  border-top: 1px solid rgba(0,94,255,0.12);
  border-bottom: 1px solid rgba(0,94,255,0.12);
}

.oezentry-special-box,
.oezentry-cta-box {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.oezentry-special-box h2,
.oezentry-cta-box h2 {
  font-size: 40px;
  color: var(--silver);
  margin: 0 0 14px;
  text-transform: uppercase;
}

.oezentry-cta-box {
  background: linear-gradient(135deg, rgba(0,94,255,0.14), rgba(8,8,10,0.96));
  border: 1px solid rgba(46,168,255,0.18);
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.30), var(--shadow-blue);
}

.oezentry-chip {
  background: linear-gradient(180deg, #090909 0%, #111111 100%);
  border-top: 2px solid rgba(255,208,0,0.55);
  border-bottom: 2px solid rgba(255,208,0,0.55);
}

.oezentry-chip-box {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,208,0,0.10), rgba(0,0,0,0.94));
  border: 1px solid rgba(255,208,0,0.30);
  border-radius: 26px;
  padding: 42px 28px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.45), var(--shadow-yellow);
}

.oezentry-chip-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,208,0,0.14);
  border: 1px solid rgba(255,208,0,0.28);
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.oezentry-chip-box h2 {
  color: var(--yellow);
  font-size: 42px;
  margin: 0 0 14px;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255,208,0,0.22);
}

.oezentry-chip-box p {
  color: #f0f0f0;
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: 18px;
}

.oezentry-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.oezentry-chip-item {
  background: rgba(255,208,0,0.06);
  border: 1px solid rgba(255,208,0,0.18);
  border-radius: 18px;
  padding: 22px;
  color: #ffffff;
}

.oezentry-chip-item strong {
  display: block;
  color: var(--yellow);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.oezentry-faq {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.oezentry-footer {
  padding: 50px 0 30px;
  background: #050505;
  border-top: 1px solid rgba(0,94,255,0.12);
}

.oezentry-footer-box p,
.oezentry-footer-box a,
.oezentry-copyright {
  color: var(--muted);
}

.oezentry-footer-box a:hover {
  color: var(--blue-strong);
}

.oezentry-copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .oezentry-hero-grid,
  .oezentry-about-grid,
  .oezentry-cards-3,
  .oezentry-cards-4,
  .oezentry-steps,
  .oezentry-strip-grid,
  .oezentry-footer-grid,
  .oezentry-hero-points,
  .oezentry-chip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .oezentry-hero-left h1 {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .oezentry-nav,
  .oezentry-menu {
    justify-content: center;
  }

  .oezentry-hero-grid,
  .oezentry-about-grid,
  .oezentry-cards-3,
  .oezentry-cards-4,
  .oezentry-steps,
  .oezentry-strip-grid,
  .oezentry-footer-grid,
  .oezentry-hero-points,
  .oezentry-mini-points,
  .oezentry-chip-grid {
    grid-template-columns: 1fr;
  }

  .oezentry-hero-left h1,
  .oezentry-section-title,
  .oezentry-special-box h2,
  .oezentry-cta-box h2,
  .oezentry-chip-box h2 {
    font-size: 30px;
  }
}