/* style.css */
/* Reset */
html {
  font-size: 16px; /* 1rem = 16px (default), easy to scale later */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Oswald', sans-serif;
  background-color: #111;
  color: #fff;
  line-height: 1.6;
  font-size: 1.125rem; /* 18px */
}
h1 { font-size: 3rem; }     /* 48px */
h2 { font-size: 2.5rem; }   /* 40px */
h3 { font-size: 2.0rem; }     /* 32px */
p, li {
  font-size: 1.5rem;      /* 18px */
}

/* Header */
.site-header {
  background: linear-gradient(135deg, #800000, #ff3333, #800000);
  background-size: 200% 200%;
  animation: headerGradient 8s ease infinite;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 4px solid #ff4444;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1000;
}
.site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 1;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.logo {
  height: 60px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}

.site-header h1 {
  font-family: 'Russo One', sans-serif;
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}


.site-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.site-nav a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.site-nav a:hover {
  background: rgba(255,255,255,0.1);
  color: #ffdddd;
}
.brand-name h1 {
  font-family: 'Russo One', sans-serif;
  font-size: 2.2rem;
  margin: 0;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.brand-name h3 {
  font-size: 1rem;
  font-weight: normal;
  margin-top: 4px;
  color: #ffcccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.map-container {
  margin-top: 40px;
  border: 2px solid #ff3333;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}
.map-fallback {
  margin-top: 30px;
  text-align: center;
}

.map-fallback img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px #000;
  margin-bottom: 10px;
}
.safe-link {
  display: inline-block;
  margin-top: 5px;
  font-weight: bold;
  color: #ff3333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.safe-link:hover {
  color: #ff6666;
  text-decoration: underline;
}


.hero {
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  z-index: 0;
  min-height: 400px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.reviews-section {
  background-color: #111;
  padding: 60px 20px;
  text-align: center;
}

.reviews-section h2 {
  color: #ff3333;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.review-card {
  background-color: #222;
  border-left: 5px solid #ff3333;
  padding: 25px;
  max-width: 350px;
  box-shadow: 0 0 10px #000;
  transition: transform 0.3s ease;
  border-radius: 8px;
  text-align: left;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.review-text {
  color: #eee;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.review-author {
  color: #ff4444;
  font-weight: bold;
  font-size: 0.95rem;
}

/* Highlights */
.highlights {
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  background-color: #222;
  flex-wrap: wrap;
}
.highlight {
  flex: 1 1 30%;
  margin: 15px;
  text-align: center;
}
.highlight h3 {
  color: #ff4444;
  margin-bottom: 10px;
}
.training-section {
  padding: 50px 20px;
  background-color: #111;
  color: #fff;
  text-align: center;
}

.training-section h2 {
  font-size: 2.5rem;
  color: #ff3333;
  margin-bottom: 10px;
}

.training-intro {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.training-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.training-box {
  flex: 1 1 300px;
  background-color: #222;
  padding: 20px;
  border-left: 4px solid #ff3333;
  text-align: left;
  max-width: 400px;
  box-shadow: 0 0 10px #000;
}

.training-box h3 {
  color: #ff4444;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.training-box p {
  font-size: 1.25rem;
  line-height: 1.5;
}
.training-icon {
  width: 60px;
  height: auto;
  margin: 0 auto 15px;
  display: block;
}

}

/* Mobile tweaks */
@media (max-width: 768px) {
  .training-grid {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: center;
  }

  .site-nav {
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  .logo {
    height: 50px;
  }
}

.site-footer {
  background: linear-gradient(to right, #1a1a1a, #000000);
  color: #ccc;
  padding: 30px 20px;
  text-align: center;
  border-top: 4px solid #ff3333;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.5);
  margin-top: 40px;
  font-size: 1rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-content p {
  margin: 0;
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

/* Facebook = Blue */
.social-links a[aria-label="Facebook"] i {
  color: #1877f2;
}

/* Instagram = Gradient style (simulated with solid color) */
.social-links a[aria-label="Instagram"] i {
  color: #e4405f; /* Close to Instagram's main brand pink */
}

.social-links a:hover {
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}


/* Responsive */
@media (max-width: 768px) {
  .highlights {
    flex-direction: column;
    align-items: center;
  }
  .highlight {
    flex: 1 1 100%;
  }
}
button.whatsapp {
  background-color: #25D366;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}button:hover {
  background-color: #a00000;
  transform: scale(1.05);
}
form input, form textarea {
  width: 100%; padding: 10px; margin-bottom: 10px;
  border: none; border-radius: 3px;
}
form input[type="submit"] {
  background-color: #800000; color: #fff; font-size: 18px; cursor: pointer;
}
/* Animation Keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply Animation */
.training-box {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

/* Add a staggered delay for each box */
.training-box:nth-child(1) { --delay: 0s; }
.training-box:nth-child(2) { --delay: 0.2s; }
.training-box:nth-child(3) { --delay: 0.4s; }
.training-box:nth-child(4) { --delay: 0.6s; }
.programs-section {
  background-color: #111;
  padding: 50px 20px;
}

.programs-section h2 {
  text-align: center;
  color: #ff3333;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* Default style */
.program-box {
  display: flex;
  align-items: flex-start;
  margin: 30px auto;
  padding: 25px;
  border-left: 5px solid #ff3333;
  box-shadow: 0 0 10px #000;
  max-width: 1100px;
  gap: 30px;
  background-color: #222; /* default dark grey */
}

/* Alternate background and border */
.program-box:nth-child(even) {
  flex-direction: row-reverse;
  border-left: none;
  border-right: 5px solid #ff3333;
  background-color: #111; /* slightly darker strip */
}

.program-box img.program-img {
  width: 220px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 0 6px #000;
  flex-shrink: 0;
}

.program-box-content {
  flex: 1;
}

.program-box h3 {
  color: #ff4444;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.program-box h3 span {
  font-weight: normal;
  color: #ccc;
  font-size: 1rem;
}

.program-box p {
  color: #eee;
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 1rem;
}

/* Mobile stacking */
@media (max-width: 900px) {
  .program-box,
  .program-box:nth-child(even) {
    flex-direction: column;
    text-align: center;
    border-left: 5px solid #ff3333;
    border-right: none;
  }

  .program-box img.program-img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 15px;
  }

  .program-box-content {
    text-align: left;
  }
}
/* Hover Effect */
.program-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-box:hover {
  transform: translateY(-8px); /* lift slightly */
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6); /* red glow */
}


/* Keyframes */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Initial hidden state */
.program-box {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When in view */
.program-box.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Different directions for odd/even */
.program-box.visible:nth-child(odd) {
  animation: slideInLeft 0.8s ease forwards;
}
.program-box.visible:nth-child(even) {
  animation: slideInRight 0.8s ease forwards;
}

/* Mobile stacking */
@media (max-width: 900px) {
  .program-box {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .program-box img.program-img {
    margin-bottom: 15px;
    width: 100%;
    max-width: 350px;
  }
}


/* Mobile stacking */
@media (max-width: 768px) {
  .program-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .program-box img.program-img {
    margin-bottom: 15px;
    width: 100%;
    max-width: 300px;
  }
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

.cta-button {
  padding: 15px 30px;
  background-color: #ff3333;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #cc0000;
}
.program-img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
  box-shadow: 0 0 10px #000;
}

@media (max-width: 600px) { nav { display: block; padding: 10px; } nav a { display: block; margin: 5px 0; } }
.team-section {
  background-color: #111;
  padding: 50px 20px;
  text-align: center;
}

.team-section h2 {
  color: #ff3333;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.team-card {
  background-color: #222;
  border-left: 5px solid #ff3333;
  margin: 20px auto;
  padding: 20px;
  max-width: 700px;
  text-align: center;   /* centers text + photo */
  box-shadow: 0 0 10px #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card h3 {
  color: #ff4444;
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.team-card p {
  color: #eee;
  margin: 5px 0;
  line-height: 1.6;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}
.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;      /* circle crop */
  object-fit: cover;       /* fills circle without distortion */
  object-position: top;    /* ensures faces stay in frame */
  display: block;
  margin: 0 auto 15px;     /* center horizontally */
  border: 3px solid #ff3333;
  box-shadow: 0 0 10px #000;
}
.safe-link {
  color: #ff3333;
  text-decoration: none;
  font-weight: bold;
}

.safe-link:hover {
  text-decoration: underline;
  color: #ff6666;
}
.schedule-section {
  background-color: #111;
  padding: 50px 20px;
  text-align: center;
}

.schedule-section h2 {
  color: #ff3333;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.schedule-group {
  margin: 30px auto;
  padding: 20px;
  max-width: 700px;
  border-radius: 8px;
  box-shadow: 0 0 12px #000;
  text-align: left;
}

.schedule-group h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.schedule-group i {
  color: #ff3333;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table td {
  padding: 12px;
  border-bottom: 1px solid #444;
  color: #eee;
  font-size: 1.1rem;
}

.schedule-group.dragons {
  background-color: #5a2a2a;
}

.schedule-group.kids {
  background-color: #2a5a2a;
}

.schedule-group.adults {
  background-color: #2a2a5a;
}

.schedule-group:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: bold;
  color: #fff;
}

.badge-dragons { background-color: #e74c3c; }
.badge-kids { background-color: #27ae60; }
.badge-adults { background-color: #2980b9; }
.focus-section {
  background-color: #111;
  padding: 50px 20px;
  text-align: left;
}

.focus-section h2 {
  color: #ff3333;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.focus-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.focus-list li {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: #eee;
  line-height: 1.7;
}

.focus-list strong {
  color: #ff4444;
}
.program-box h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.program-box h3 span {
  font-size: 1rem;
  color: #bbb;
}

.program-box h3::first-letter {
  font-size: 1.8rem; /* makes emojis stand out */
}
/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.team-card {
  background-color: #222;
  border-left: 5px solid #ff3333;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 12px #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin-bottom: 15px;
  border: 3px solid #ff3333;
  box-shadow: 0 0 10px #000;
}

.team-card h3 {
  margin-bottom: 10px;
  color: #ff4444;
  font-size: 1.4rem;
}

.team-card p {
  color: #ddd;
  margin: 5px 0;
}

.safe-link {
  color: #ff6666;
  font-weight: bold;
  text-decoration: none;
}

.safe-link:hover {
  text-decoration: underline;
  color: #ff9999;
}
.team-intro {
  color: #eee;
  font-size: 1.2rem;
  margin: 0 auto 30px auto;
  max-width: 800px;
  line-height: 1.7;
  text-align: center;
}
.team-quote {
  font-style: italic;
  font-size: 1.4rem;
  color: #ff6666;
  border-left: 4px solid #ff3333;
  padding-left: 20px;
  margin: 30px auto;
  max-width: 800px;
  line-height: 1.8;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

/* Contact page */
.contact-section {
  background: #111;
  padding: 50px 20px;
  text-align: center;
}

.contact-intro {
  color: #ddd;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto 30px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #222;
  color: #fff;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff3333;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info {
  color: #eee;
  font-size: 1rem;
  margin-top: 20px;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.6);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
}
/* Hero buttons side by side */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.cta-button {
  background: #ff3333;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #cc0000;
}

.cta-button.secondary {
  background: #444;
}

.cta-button.secondary:hover {
  background: #666;
}
/* Modal Background */
.modal {
  display: none; 
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

/* Modal Box */
.modal-content {
  background-color: #111;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #ff3333;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.modal-content h2 {
  color: #ff3333;
  margin-bottom: 20px;
}

.modal-content input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #222;
  color: #fff;
}

.modal-content input:focus {
  border-color: #ff3333;
  outline: none;
}

/* Close button */
.close {
  color: #fff;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #ff6666;
}
/* Members Dashboard */
.members-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.dashboard-box {
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.3s ease;
}

.dashboard-box h3 {
  color: #ff3333;
  margin-bottom: 10px;
}

.dashboard-box p {
  color: #ccc;
  margin-bottom: 15px;
}

.dashboard-box:hover {
  transform: translateY(-5px);
  border-color: #ff3333;
}

.logout-link {
  color: #ff3333;
  font-weight: bold;
  margin-left: 15px;
  text-decoration: none;
}

.logout-link:hover {
  text-decoration: underline;
}
@keyframes headerGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.warrior-intro {
  background-color: #222;
  border-left: 5px solid #ff3333;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.share-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.share-button {
  display: inline-block;
  padding: 8px 12px;
  background: #ff3333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.share-button:hover {
  background: #cc0000;
}

.share-button.fb { background: #3b5998; }

.badge-text {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background-color: #ff3333;
  color: #fff;
  font-weight: bold;
  border-radius: 20px;
}
.result-card {
  border: 3px solid #ff3333;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  max-width: 400px;
  margin: 30px auto;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
  text-align: center;
  color: #fff;
  font-family: 'Russo One', sans-serif;
}

.result-card p {
  margin: 10px 0;
  line-height: 1.5;
}

.result-image img {
  width: 200px;
  height: auto;
  border-radius: 50%;
  border: 4px solid #ff3333;
  display: block;
  margin: 0 auto 15px;
}

.badge-reveal img {
  width: 80px;
  height: auto;
  display: block;
  margin: 10px auto 0;
}
.dojang-scrolls {
  font-size: 1rem;
  margin-top: 15px;
  color: #ccc;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
#result .warrior-name {
  font-size: 2rem;
  margin: 15px 0 10px;
}

#result p {
  margin-bottom: 15px;
  line-height: 1.6;
}

#result .cta-button {
  margin: 15px 5px;
}
.warrior-card {
  background: linear-gradient(145deg, #1a1a1a, #2b2b2b);
  border: 4px solid #ff3333;
  border-radius: 15px;
  padding: 20px;
  max-width: 400px;
  margin: 20px auto;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  text-align: center;
  color: #fff;
  font-family: 'Russo One', sans-serif;
}

.card-header h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #ff3333;
}

.card-image img {
  width: 180px;
  height: auto;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 10px #000;
  margin-bottom: 15px;
}

.card-body {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #ddd;
}

.badge-text {
  margin: 20px auto 10px;
  padding: 8px 14px;
  background: gold;
  color: #111;
  font-weight: bold;
  border-radius: 25px;
  display: inline-block;
}
.warrior-quote {
  font-style: italic;
  color: #ccc;
  margin: 15px 0;
}

.dojang-scrolls {
  font-size: 0.9rem;
  margin-top: 20px;
  color: #bbb;
}
.quiz-section {
  background-color: #333;
  padding: 50px 20px;
  margin: 40px 0;
  border-radius: 8px;
  text-align: center;
}

.quiz-section h2 {
  font-size: 2.5rem;
  color: #ff3333;
  margin-bottom: 20px;
}

.quiz-section p {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 20px;
}

.quiz-section .cta-button {
  font-size: 1.2rem;
  padding: 15px 25px;
  background: #ff3333;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background 0.3s ease;
}

.quiz-section .cta-button:hover {
  background: #cc0000;
  transform: scale(1.05);
}

.cta-button {
  padding: 12px 20px;
  background: #ff3333;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  margin: 10px;
  display: inline-block;
}

.cta-button:hover { background: #cc0000; }
