/* Orzelnova Premium Styles */
:root {
  --oznv-bg-dark: #0f0a0a;
  --oznv-bg-panel: #1a1111;
  --oznv-bg-panel-hover: #261717;
  --oznv-accent-gold: #cfb53b;
  --oznv-accent-gold-hover: #e0c85c;
  --oznv-accent-ruby: #5c001e;
  --oznv-text-light: #f5f0f0;
  --oznv-text-muted: #b8b0b0;
  --oznv-font-serif: 'Georgia', 'Times New Roman', serif;
  --oznv-font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --oznv-radius: 4px;
  --oznv-transition: all 0.3s ease-in-out;
}

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

body {
  background-color: var(--oznv-bg-dark);
  color: var(--oznv-text-light);
  font-family: var(--oznv-font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--oznv-font-serif);
  font-weight: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Header */
.oznv-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: linear-gradient(180deg, var(--oznv-bg-dark) 0%, transparent 100%);
  border-bottom: 1px solid rgba(207, 181, 59, 0.15);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.oznv-brand-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.oznv-logo-text {
  font-family: var(--oznv-font-serif);
  font-size: 2rem;
  color: var(--oznv-accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.oznv-brand-details {
  display: flex;
  flex-direction: column;
}

.oznv-brand-name {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.oznv-brand-sub {
  font-size: 0.8rem;
  color: var(--oznv-text-muted);
}

.oznv-badge-18 {
  border: 1px solid var(--oznv-accent-gold);
  color: var(--oznv-accent-gold);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Hero Section */
.oznv-main-showcase {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 5% 4rem 5%;
  background: radial-gradient(circle at center, var(--oznv-accent-ruby) 0%, var(--oznv-bg-dark) 70%);
}

.oznv-hero-kicker {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--oznv-accent-gold);
  margin-bottom: 1rem;
}

.oznv-hero-title {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  max-width: 800px;
}

.oznv-hero-desc {
  font-size: 1.2rem;
  color: var(--oznv-text-muted);
  max-width: 600px;
  margin-bottom: 4rem;
}

.oznv-hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 900px;
}

.oznv-stat-box {
  background: rgba(26, 17, 17, 0.6);
  border: 1px solid rgba(207, 181, 59, 0.1);
  padding: 2rem;
  border-radius: var(--oznv-radius);
  transition: var(--oznv-transition);
}

.oznv-stat-box:hover {
  border-color: rgba(207, 181, 59, 0.4);
  transform: translateY(-5px);
}

.oznv-stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--oznv-accent-gold);
  margin-bottom: 0.5rem;
}

.oznv-stat-value {
  font-family: var(--oznv-font-serif);
  font-size: 1.5rem;
}

/* Common Section Styles */
.oznv-content-section {
  padding: 6rem 5%;
}

.oznv-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.oznv-section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--oznv-accent-gold);
}

.oznv-section-intro {
  font-size: 1.1rem;
  color: var(--oznv-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.oznv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.oznv-feature-card {
  background: var(--oznv-bg-panel);
  border-top: 3px solid var(--oznv-accent-ruby);
  padding: 3rem 2rem;
  border-radius: var(--oznv-radius);
  transition: var(--oznv-transition);
  display: flex;
  flex-direction: column;
}

.oznv-feature-card:hover {
  background: var(--oznv-bg-panel-hover);
  border-top-color: var(--oznv-accent-gold);
}

.oznv-card-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--oznv-text-muted);
  margin-bottom: 1rem;
}

.oznv-card-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--oznv-text-light);
}

.oznv-card-text {
  font-size: 1rem;
  color: var(--oznv-text-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.oznv-card-list {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.oznv-card-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.oznv-card-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--oznv-accent-gold);
  border-radius: 50%;
  margin-right: 1rem;
}

/* Footer */
.oznv-bottom-area {
  background: #050404;
  padding: 5rem 5% 2rem 5%;
  border-top: 1px solid rgba(207, 181, 59, 0.2);
}

.oznv-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 4rem;
}

.oznv-footer-brand .oznv-footer-slogan {
  font-family: var(--oznv-font-serif);
  font-size: 2rem;
  color: var(--oznv-accent-gold);
  margin-bottom: 1.5rem;
}

.oznv-footer-brand p {
  color: var(--oznv-text-muted);
  margin-bottom: 1rem;
  max-width: 400px;
}

.oznv-footer-disclaimer {
  padding: 1rem;
  border: 1px solid var(--oznv-accent-ruby);
  border-radius: var(--oznv-radius);
  font-size: 0.85rem;
  color: var(--oznv-text-muted);
  margin-top: 2rem;
  display: inline-block;
}

.oznv-footer-col h4 {
  font-size: 1.2rem;
  color: var(--oznv-text-light);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.oznv-contact-item {
  margin-bottom: 1rem;
  color: var(--oznv-text-muted);
  font-size: 0.95rem;
}

.oznv-contact-item span {
  display: block;
  color: var(--oznv-accent-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.oznv-nav-list li {
  margin-bottom: 0.8rem;
}

.oznv-nav-list a {
  color: var(--oznv-text-muted);
  transition: var(--oznv-transition);
}

.oznv-nav-list a:hover {
  color: var(--oznv-accent-gold);
}

.oznv-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--oznv-text-muted);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .oznv-hero-title {
    font-size: 3rem;
  }
  
  .oznv-hero-stats-grid,
  .oznv-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .oznv-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .oznv-top-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .oznv-hero-stats-grid,
  .oznv-cards-grid,
  .oznv-footer-grid {
    grid-template-columns: 1fr;
  }
  
  .oznv-hero-title {
    font-size: 2.2rem;
  }
  
  .oznv-section-title {
    font-size: 2rem;
  }
}
