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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  color: #ffffff;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

p,
li {
  overflow-wrap: anywhere;
}

ul {
  list-style: none !important;
}

:root {
  --color-primary: #ffffff;
  --color-secondary: #e9d5ff;
  --color-accent: #10b981;
  --color-indigo: #6366f1;
  --color-violet: #a855f7;
  --color-glass: rgba(255, 255, 255, 0.1);
  --color-border: rgba(255, 255, 255, 0.2);
  --color-muted: rgba(255, 255, 255, 0.7);

  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.25);

  --container-width: 1200px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-primary);
  word-break: break-word;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
}

p {
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flex {
  display: flex;
  gap: var(--space-md);
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-col {
  flex-direction: column;
}

.flex > * {
  min-width: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-indigo), var(--color-violet));
  color: #fff;
  font-weight: 500;
  transition: 0.3s ease;
  max-width: 100%;
  text-align: center;
  flex-wrap: wrap;
}

.btn:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-border);
}

.card {
  background: var(--color-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  max-width: 100%;
}

.glass {
  background: var(--color-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
}

.input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}

.table th,
.table td {
  padding: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav-menu {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.footer {
  padding: var(--space-2xl) 0;
  background: rgba(0, 0, 0, 0.4);
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.footer p {
  font-size: 0.85rem;
}

.media-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--space-xl) 0;
  }
}

#age-no{
    color: white;
}