/* ================= NorBluHQ.click norbluhg Theme ================= */
:root {
  /* Primary norbluhg Colors - Clean, Professional norbluhg Theme */
  --norbluhg-white: #ffffff;
  --norbluhg-light-blue: #e3f2fd;
  --norbluhg-blue: #2196f3;
  --norbluhg-deep-blue: #1565c0;
  --norbluhg-green: #4caf50;
  --norbluhg-teal: #009688;
  --norbluhg-red: #f44336;
  --norbluhg-orange: #ff9800;
  --norbluhg-gray: #f5f5f5;
  --norbluhg-dark-gray: #424242;
  --norbluhg-text: #333333;
  --norbluhg-light-text: #666666;

  /* norbluhg Gradients */
  --norbluhg-gradient-primary: linear-gradient(135deg, #2196f3 0%, #4caf50 50%, #009688 100%);
  --norbluhg-gradient-light: linear-gradient(135deg, #e3f2fd 0%, #f1f8e9 100%);
  --norbluhg-gradient-card: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);

  /* Typography - Clean norbluhg Fonts */
  --norbluhg-font-primary: 'Inter', 'Segoe UI', sans-serif;
  --norbluhg-font-secondary: 'Roboto', 'Arial', sans-serif;

  /* norbluhg Effects */
  --norbluhg-radius: 8px;
  --norbluhg-shadow: 0 4px 20px rgba(33, 150, 243, 0.15);
  --norbluhg-shadow-hover: 0 8px 30px rgba(76, 175, 80, 0.2);
  --norbluhg-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --norbluhg-border: 1px solid #e0e0e0;
}

/* ================= Global norbluhg Styles ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--norbluhg-font-secondary);
  background: var(--norbluhg-gradient-light);
  color: var(--norbluhg-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Add padding for non-home pages to prevent navbar overlap */
body:not(.home-page) {
  padding-top: 90px;
}

/* Custom norbluhg Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--norbluhg-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--norbluhg-blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--norbluhg-deep-blue);
}

/* ================= norbluhg Navigation ================= */
.norbluhg-navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: var(--norbluhg-border);
  transition: var(--norbluhg-transition);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.norbluhg-navbar.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: var(--norbluhg-shadow);
}

.norbluhg-logo {
  max-height: 70px;
  filter: drop-shadow(0 2px 8px rgba(33, 150, 243, 0.3));
}

.norbluhg-nav .nav-link {
  color: var(--norbluhg-text);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--norbluhg-radius);
  transition: var(--norbluhg-transition);
  position: relative;
}

.norbluhg-nav .nav-link:hover {
  color: var(--norbluhg-blue);
  background: var(--norbluhg-light-blue);
}

.norbluhg-nav .nav-link.active {
  color: var(--norbluhg-white);
  background: var(--norbluhg-gradient-primary);
}

.norbluhg-toggler {
  border: none;
  background: var(--norbluhg-light-blue);
  border-radius: var(--norbluhg-radius);
  padding: 0.5rem;
  color: var(--norbluhg-blue);
}

/* ================= norbluhg Hero Section ================= */
.norbluhg-hero {
  background: var(--norbluhg-gradient-light);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.norbluhg-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.05) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.norbluhg-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.norbluhg-hero .row {
  width: 100%;
}

.norbluhg-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--norbluhg-text);
  font-family: var(--norbluhg-font-primary);
  line-height: 1.2;
}

.norbluhg-hero-title span {
  background: var(--norbluhg-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.norbluhg-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--norbluhg-light-text);
  font-weight: 400;
  max-width: 550px;
}

.norbluhg-hero-text {
  position: relative;
  z-index: 3;
}

.norbluhg-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.norbluhg-hero-media {
  position: relative;
  z-index: 1;
  perspective: 800px;
}

.norbluhg-hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--norbluhg-radius);
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.2);
  transition: var(--norbluhg-transition);
  transform: rotateY(-5deg) rotateX(2deg);
  border: 3px solid var(--norbluhg-white);
}

.norbluhg-hero-img:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 20px 50px rgba(76, 175, 80, 0.3);
}

/* ================= norbluhg Buttons ================= */
.norbluhg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--norbluhg-gradient-primary);
  color: var(--norbluhg-white);
  border-radius: var(--norbluhg-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--norbluhg-transition);
  box-shadow: var(--norbluhg-shadow);
  position: relative;
  overflow: hidden;
  font-family: var(--norbluhg-font-primary);
  border: none;
  cursor: pointer;
}

.norbluhg-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--norbluhg-transition);
}

.norbluhg-btn:hover::before {
  left: 100%;
}

.norbluhg-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--norbluhg-shadow-hover);
  color: var(--norbluhg-white);
  text-decoration: none;
}

.norbluhg-btn-secondary {
  background: var(--norbluhg-white);
  color: var(--norbluhg-blue);
  border: 2px solid var(--norbluhg-blue);
}

.norbluhg-btn-secondary:hover {
  background: var(--norbluhg-blue);
  color: var(--norbluhg-white);
}

/* ================= Game Section ================= */
.norbluhg-game-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: var(--norbluhg-radius);
  overflow: hidden;
  background: var(--norbluhg-white);
  border: 2px solid var(--norbluhg-blue);
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.2);
}

.norbluhg-game-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  border: none;
  border-radius: var(--norbluhg-radius);
}

.norbluhg-game-info {
  background: var(--norbluhg-gradient-card);
  border-radius: var(--norbluhg-radius);
  padding: 2rem;
  border: var(--norbluhg-border);
  box-shadow: var(--norbluhg-shadow);
}

.norbluhg-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--norbluhg-light-blue);
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
}

/* ================= norbluhg Cards ================= */
.norbluhg-card {
  background: var(--norbluhg-gradient-card);
  border-radius: var(--norbluhg-radius);
  padding: 2rem;
  border: var(--norbluhg-border);
  box-shadow: var(--norbluhg-shadow);
  transition: var(--norbluhg-transition);
  height: 100%;
}

.norbluhg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--norbluhg-shadow-hover);
}

.norbluhg-card-header {
  margin-bottom: 1.5rem;
}

.norbluhg-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--norbluhg-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--norbluhg-white);
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

/* ================= norbluhg Features Section ================= */
.norbluhg-features {
  padding: 5rem 0;
  background: var(--norbluhg-white);
}

.norbluhg-feature {
  background: var(--norbluhg-gradient-card);
  border-radius: var(--norbluhg-radius);
  padding: 2rem;
  text-align: center;
  border: var(--norbluhg-border);
  box-shadow: var(--norbluhg-shadow);
  transition: var(--norbluhg-transition);
  height: 100%;
}

.norbluhg-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--norbluhg-shadow-hover);
}

.norbluhg-feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--norbluhg-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--norbluhg-white);
  font-size: 2rem;
}

.norbluhg-feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--norbluhg-text);
  margin-bottom: 1rem;
  font-family: var(--norbluhg-font-primary);
}

.norbluhg-feature-text {
  color: var(--norbluhg-light-text);
  line-height: 1.6;
}

/* ================= Sections ================= */
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--norbluhg-text);
  text-align: center;
  margin-bottom: 1rem;
  font-family: var(--norbluhg-font-primary);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--norbluhg-light-text);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* ================= norbluhg Forms ================= */
.norbluhg-form {
  background: var(--norbluhg-gradient-card);
  border-radius: var(--norbluhg-radius);
  padding: 2rem;
  border: var(--norbluhg-border);
  box-shadow: var(--norbluhg-shadow);
}

.norbluhg-input,
.norbluhg-select,
.norbluhg-textarea {
  width: 100%;
  padding: 1rem;
  border: var(--norbluhg-border);
  border-radius: var(--norbluhg-radius);
  font-size: 1rem;
  transition: var(--norbluhg-transition);
  background: var(--norbluhg-white);
  color: var(--norbluhg-text);
}

.norbluhg-input:focus,
.norbluhg-select:focus,
.norbluhg-textarea:focus {
  outline: none;
  border-color: var(--norbluhg-blue);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

/* ================= norbluhg Footer ================= */
.norbluhg-footer {
  background: var(--norbluhg-text);
  color: var(--norbluhg-white);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

.norbluhg-footer-brand {
  display: inline-block;
  margin-bottom: 2rem;
}

.norbluhg-footer-logo {
  max-height: 60px;
  filter: brightness(0) invert(1);
}

.norbluhg-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 2rem;
}

.norbluhg-footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--norbluhg-transition);
  font-weight: 500;
}

.norbluhg-footer-link:hover {
  color: var(--norbluhg-white);
  text-decoration: none;
}

.norbluhg-footer-disclaimer {
  max-width: 800px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--norbluhg-radius);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.norbluhg-footer-copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* ================= Scroll to Top ================= */
.norbluhg-scrolltop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--norbluhg-gradient-primary);
  color: var(--norbluhg-white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--norbluhg-shadow);
  transition: var(--norbluhg-transition);
  z-index: 1000;
}

.norbluhg-scrolltop:hover {
  transform: translateY(-3px);
  box-shadow: var(--norbluhg-shadow-hover);
  color: var(--norbluhg-white);
  text-decoration: none;
}

/* ================= Responsive Design ================= */
@media (max-width: 991px) {
  .norbluhg-hero .col-lg-6:first-child {
    margin-bottom: 2rem;
  }
  
  .norbluhg-hero-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .norbluhg-hero .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
  }
  
  .norbluhg-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
  
  .norbluhg-hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
  
  .norbluhg-hero-text {
    text-align: center;
    margin-bottom: 3rem;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  
  .norbluhg-hero-cta {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .norbluhg-hero-img {
    transform: none;
    border-width: 2px;
  }
  
  .norbluhg-hero-img:hover {
    transform: scale(1.01);
  }
  
  .norbluhg-hero .row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  
  .norbluhg-hero .col-lg-6:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  
  .norbluhg-hero .col-lg-6 {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .norbluhg-hero-media {
    margin-top: 2rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .norbluhg-game-info {
    padding: 1rem;
  }
  
  .norbluhg-game-info .col-md-4 {
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .norbluhg-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .norbluhg-footer-nav {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  body:not(.home-page) {
    padding-top: 80px;
  }
  
  .norbluhg-hero {
    padding-top: 80px;
    padding-left: 0;
    padding-right: 0;
  }
  
  .norbluhg-hero .container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .norbluhg-hero-title {
    font-size: 2rem;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  .norbluhg-hero-subtitle {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  
  .norbluhg-hero-text {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
  
  .norbluhg-hero .col-lg-6:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  
  .norbluhg-hero .col-lg-6 {
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .norbluhg-navbar {
    padding: 0.5rem 0;
  }
  
  .norbluhg-logo {
    max-height: 60px;
  }
}

/* ================= norbluhg Accordion ================= */
.norbluhg-accordion {
  border: none;
}

.norbluhg-accordion-item {
  background: var(--norbluhg-gradient-card);
  border: var(--norbluhg-border);
  border-radius: var(--norbluhg-radius);
  margin-bottom: 1rem;
  box-shadow: var(--norbluhg-shadow);
}

.norbluhg-accordion-button {
  background: transparent;
  border: none;
  color: var(--norbluhg-text);
  font-weight: 600;
  padding: 1.5rem;
  font-family: var(--norbluhg-font-primary);
}

.norbluhg-accordion-button:not(.collapsed) {
  color: var(--norbluhg-blue);
  background: var(--norbluhg-light-blue);
}

.norbluhg-accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--norbluhg-light-text);
  line-height: 1.6;
}

/* ================= Animation Classes ================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

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