/* =====================
   ROOT THEME VARIABLES
===================== */
:root {
  --primary-color: #ff3b3b;
  --dark-bg: #121212;
  --light-bg: #f5f5f5;
  --accent-color: #00eaff;
  --text-light: #ffffff;
  --text-dark: #333;
  --max-width: 1200px;
  --transition-speed: 0.4s;
}

/* RESET STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  font-size: 16px;
}

/* =====================
   HEADER STYLES (Directly Showing the Content)
===================== */
header {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: url('https://via.placeholder.com/1500x900/000000/FFFFFF?text=Panik+Community') center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.7);
}

header h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-light);
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

header h1 span {
  color: var(--accent-color);
}

header p {
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--text-light);
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

header img {
  width: 100px;
  margin-top: 20px;
  transition: opacity var(--transition-speed) ease-in-out;
}

header img:hover {
  opacity: 0.8;
  transform: rotate(360deg);
}

/* =====================
   SECTION STYLES (Instant Visibility, No Scroll)
===================== */
section {
  max-width: var(--max-width);
  margin: auto;
  padding: 80px 20px;
  opacity: 1;
  transform: none;
}

section h2 {
  font-size: clamp(26px, 5vw, 36px);
  margin-bottom: 30px;
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

section p {
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.9;
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
}

.box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
}

/* =====================
   FOOTER STYLES
===================== */
footer {
  text-align: center;
  padding: 50px 20px;
  background-color: var(--dark-bg);
  border-top: 2px solid var(--primary-color);
  font-size: clamp(12px, 2.5vw, 14px);
  color: var(--text-light);
}

/* =====================
   RESPONSIVE DESIGN
===================== */
@media (max-width: 100px) {
  header h1 {
    font-size: clamp(30px, 5vw, 50px);
  }

  header p {
    font-size: clamp(14px, 3vw, 18px);
  }

  section h2 {
    font-size: clamp(22px, 5vw, 32px);
  }

  footer {
    font-size: 14px;
  }
}