html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* Import clean modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

/* -------------------------
   ROOT COLOR SYSTEM
-------------------------- */
:root {
  /* Background blues */
  --blue-deep: #0b1f3a;
  --blue-midnight: #102a43;
  --blue-ocean: #174c7a;
  --blue-royal: #2563eb;
  --blue-sky: #4ea8ff;
  --blue-soft: #dbeafe;

  /* Accent blues */
  --cyan-bright: #38bdf8;
  --teal-blue: #0ea5a4;

  /* Neutral support */
  --white: #ffffff;
  --off-white: #f8fbff;
  --gray-light: #cbd5e1;
  --gray-mid: #94a3b8;
  --gray-dark: #1e293b;

  /* Text colors */
  --text-primary: #f8fbff;
  --text-secondary: #dbeafe;
  --text-dark: #0f172a;

  /* Effects */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.18);
  --shadow-hover: 0 15px 40px rgba(37, 99, 235, 0.35);

  --radius: 16px;
  --transition: 0.3s ease;
}

/* -------------------------
   BODY, BACKGROUND, AND IMAGES
-------------------------- */
body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(78, 168, 255, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(14, 165, 164, 0.18), transparent 35%),
    linear-gradient(135deg, var(--blue-deep), var(--blue-midnight));
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.7;
  padding: 40px;
  letter-spacing: 0.2px;
}

/* Container holding images */
.image-row {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: flex-start;
}

/* Individual image + text block */
.image-card {
  flex: 1;
  text-align: center;
}

/* Image styling */
.image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Text styling */
.image-card p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
}

footer {
  margin-top: 20px;
  text-align: center;
}

/* -------------------------
   TYPOGRAPHY
-------------------------- */
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

h2 {
  font-size: 2.2rem;
  color: var(--blue-sky);
}

h3 {
  font-size: 1.5rem;
  color: var(--cyan-bright);
}

p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.middle {
  text-align: center;
}

/* Indent all unordered and ordered lists */
ul, ol {
  margin-left: 40px;
}

li, dd {
  margin-bottom: 8px;
}

/* -------------------------
   LINKS
-------------------------- */
a {
  color: var(--cyan-bright);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

a:hover {
  color: var(--white);
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.7);
}

/* -------------------------
   GLASS CONTAINERS
-------------------------- */
.card,
.panel,
.container {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);

  transition: transform var(--transition),
              box-shadow var(--transition),
              border-color var(--transition);
}

.card:hover,
.panel:hover,
.container:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(78, 168, 255, 0.35);
}

/* -------------------------
   SCROLLBAR
-------------------------- */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--blue-midnight);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    var(--blue-royal),
    var(--cyan-bright)
  );

  border-radius: 999px;
}

/* -------------------------
   SELECTION
-------------------------- */
::selection {
  background: var(--blue-sky);
  color: var(--blue-deep);
}