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

ul{
padding-left: 5%;
padding-right: 5%;
}

.ref-link {
    text-decoration: none;
    color: #ffb000;
    font-size: 0.7em;
    font-style: italic;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Display', system-ui, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    line-height: 1.7;
    padding: 20px;
    min-height: 100vh;
    letter-spacing: -0.01em;
    transition: background 0.3s ease, color 0.3s ease;
}

img {
	width: 100%;
}

.superbold {
font-weight: 700;
}
/* Modern Navbar Styles for Kulutchka */

/* Main navbar container */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

/* Scrolled state - add this class with JS when user scrolls */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Logo section */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: white;
}

.navbar-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: white;
}

.navbar-logo-text {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: white;
}

/* Navigation links */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
justify-content: center;
flex-wrap: wrap;
}

.navbar-links a {
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  position: relative;
font-style: normal;
}

.navbar-links a:hover {
  color: white;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #9333ea, #2563eb);
  transition: width 0.3s ease;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-links a.active {
  color: white;
}

/* CTA Button */
.navbar-cta {
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.navbar-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-toggle span {
  width: 1.5rem;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

/* Responsive styles */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-links {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.98);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .navbar-links a {
    font-size: 1rem;
  }

  .navbar-cta {
    width: 100%;
    text-align: center;
    display: block;
  }
}

/* Optional: Add spacing to body so content isn't hidden behind fixed nav */
body {
  padding-top: 4rem;
}

/* Optional: Gradient hover effect for CTA */
.navbar-cta.gradient {
  background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
  border: none;
}

.navbar-cta.gradient:hover {
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

body.light-theme {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1e293b;
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 2px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    color: #e2e8f0;
    z-index: 1000;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.theme-toggle:hover {
    background: rgba(30, 41, 59, 1);
    transform: translateY(-2px);
}

body.light-theme .theme-toggle {
    background: rgba(255, 255, 255, 0.8);
    color: #1e293b;
    border: 1px solid rgba(30, 41, 59, 0.2);
}

body.light-theme .theme-toggle:hover {
    background: rgba(255, 255, 255, 1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

body.light-theme .container {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(30, 41, 59, 0.1);
}

header {
    border-bottom: 2px solid #ef4444;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

h1 {
    font-weight: 100;
font-size: 1.8em;
    color: #f8fafc;
    text-transform:uppercase;
    letter-spacing: -0.07em;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

body.light-theme h1 {
    color: #0f172a;
}

.subtitle {
    color: #94a3b8;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

body.light-theme .subtitle {
    color: #475569;
}

.date-stamp {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 6px 16px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 15px;
    letter-spacing: 0.05em;
}

.section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 3px;
    border-left: 4px solid;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s ease;
}

body.light-theme .section {
    background: rgba(248, 250, 252, 0.8);
}

.section:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.section.geopolitical { border-left-color: #ef4444; }
.section.cyber { border-left-color: #f59e0b; }
.section.economic { border-left-color: #10b981; }
.section.emerging { border-left-color: #8b5cf6; }
.section.societal { border-left-color: #06b6d4; }

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: 0.05em;
}

.geopolitical .section-icon { background: rgba(239, 68, 68, 0.2); }
.cyber .section-icon { background: rgba(245, 158, 11, 0.2); }
.economic .section-icon { background: rgba(16, 185, 129, 0.2); }
.emerging .section-icon { background: rgba(139, 92, 246, 0.2); }
.societal .section-icon { background: rgba(6, 182, 212, 0.2); }

h2 {
    font-size: 1.75rem;
    color: #f1f5f9;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

body.light-theme h2 {
    color: #0f172a;
}

h3 {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    font-size: 0.875rem;
    color: #94a3b8;
    transition: color 0.3s ease;
}

body.light-theme h3 {
    color: #475569;
}

p {
    margin-bottom: 16px;
    color: #cbd5e1;
    text-align: justify;
    transition: color 0.3s ease;
}

body.light-theme p {
    color: #334155;
}

.alert-box {
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid #dc2626;
    border-radius: 2px;
    padding: 5%;
    margin-top: 20px;
}

.alert-box h3 {
    color: #fca5a5;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.confidence-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 2px;
    font-size: 0.625rem;
    font-weight: 700;
    margin-left: 8px;
    background: rgba(239, 68, 68, 0.3);
    color: #ff007c;
    letter-spacing: 0.05em;
}

.confidence-badge.light-theme {
    color: #ffffff;
}

.key-points {
    background: rgba(51, 65, 85, 0.4);
    border-radius: 2px;
    padding: 20px;
    margin-top: 16px;
    transition: background 0.3s ease;
}

body.light-theme .key-points {
    background: rgba(226, 232, 240, 0.5);
}

.key-points ul {
    list-style: none;
    padding-left: 5%;
}

.key-points li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: #e2e8f0;
    transition: color 0.3s ease;
}

body.light-theme .key-points li {
    color: #1e293b;
}

.key-points li:before {
    content: "▸";
    position: absolute;
    left: 8px;
    color: #60a5fa;
    font-weight: bold;
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.stat-card {
    background: rgba(51, 65, 85, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 2px;
    padding: 20px;
    transition: transform 0.2s, border-color 0.2s, background 0.3s ease;
}

body.light-theme .stat-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(30, 41, 59, 0.15);
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(148, 163, 184, 0.4);
}

body.light-theme .stat-card:hover {
    border-color: rgba(30, 41, 59, 0.3);
}

.stat-card-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

body.light-theme .stat-card-label {
    color: #64748b;
}

.stat-card-value {
    font-size: 1.5rem;
    color: #f1f5f9;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

body.light-theme .stat-card-value {
    color: #0f172a;
}

.stat-card-description {
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.5;
    transition: color 0.3s ease;
}

body.light-theme .stat-card-description {
    color: #475569;
}

.stat-card.threat { border-left: 3px solid #ef4444; }
.stat-card.warning { border-left: 3px solid #f59e0b; }
.stat-card.info { border-left: 3px solid #3b82f6; }
.stat-card.success { border-left: 3px solid #10b981; }

footer {
    margin-right: 5%;
    margin-left: 5%;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}

body.light-theme footer {
    color: #475569;
    border-top: 1px solid rgba(30, 41, 59, 0.2);
}

@media (max-width: 768px) {
    .container {
        padding: 0px;
    }
    
    h1 {
        margin-top: 37px;
        text-align: center;
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    body {
        padding: 0px;
    }
    .theme-toggle{
top: 10px;
} 

.subtitle{
text-align: center;
}
}
