/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
  --primary: #3a86ff; /* Sky blue */
  --primary-hover: #2a6ae0;
  --secondary: #ffbe0b; /* Yellow Accent */
  --secondary-hover: #e0a800;
  
  --bg-dark: #0d1b2a;
  --bg-darker: #08111b;
  --bg-card: rgba(27, 38, 59, 0.6);
  --text-main: #f8f9fa;
  --text-muted: #adb5bd;
  
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  
  --font-main: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before, body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
  animation: floatOrb 25s infinite alternate ease-in-out;
}

body::before {
  width: 40vw;
  height: 40vw;
  background: rgba(58, 134, 255, 0.25);
  top: -10%;
  left: -10%;
}

body::after {
  width: 30vw;
  height: 30vw;
  background: rgba(255, 190, 11, 0.15);
  bottom: -10%;
  right: -10%;
  animation-delay: -5s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  padding: 2rem;
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.glass-dark {
  background: rgba(8, 17, 27, 0.8);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--glass-border);
}

.bg-darker {
  background-color: var(--bg-darker);
}

.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.divider {
  height: 4px;
  width: 60px;
  background: var(--primary);
  margin: 0 auto 1rem auto;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.align-center {
  align-items: center;
}

.p-0 {
  padding: 0;
}

.w-100 {
  width: 100%;
}

.mt-3 {
  margin-top: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn.large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #5a00ff);
  color: white;
  box-shadow: 0 4px 15px rgba(58, 134, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: shine 4s infinite;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(58, 134, 255, 0.6);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: padding 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(13, 27, 42, 0.85);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-main);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

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

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
  background: radial-gradient(circle at center, #1b263b 0%, var(--bg-dark) 100%);
}

.weather-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.cloud {
  position: absolute;
  color: rgba(255, 255, 255, 0.04);
  font-size: 15rem;
  animation: float 20s infinite linear;
  will-change: transform;
}

.cloud1 { top: 10%; left: -10%; animation-duration: 35s; }
.cloud2 { bottom: 20%; right: -5%; font-size: 20rem; animation-duration: 45s; animation-direction: reverse; }

.lightning {
  position: absolute;
  top: 30%;
  left: 50%;
  color: rgba(255, 190, 11, 0.15);
  font-size: 10rem;
  transform: translate(-50%, -50%);
  animation: flash 5s infinite;
  will-change: transform;
}

.hero-container {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1000px; /* added for 3D parallax effect */
}

.hero-content {
  max-width: 800px;
  padding: 3rem;
  background: rgba(13, 27, 42, 0.6);
  border: 1px solid rgba(58, 134, 255, 0.2);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.badge {
  display: inline-block;
  background: rgba(58, 134, 255, 0.15);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(58, 134, 255, 0.3);
}

.hero .title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero .title span {
  color: var(--secondary);
}

.hero .tagline {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero .hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  background: rgba(58, 134, 255, 0.1);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  display: inline-block;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.check-list {
  margin-top: 2rem;
}

.check-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.check-list i {
  color: var(--secondary);
  font-size: 1.2rem;
}

.about-image {
  overflow: hidden;
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.image-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, rgba(58, 134, 255, 0.2), rgba(255, 190, 11, 0.2));
  z-index: -1;
  border-radius: 16px;
}

.image-fallback i {
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Tracks Section
   ========================================================================== */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.track-card {
  border-top: 4px solid var(--primary);
}

.track-card:nth-child(2) { border-top-color: #ff006e; }
.track-card:nth-child(3) { border-top-color: #fb5607; }
.track-card:nth-child(4) { border-top-color: #8338ec; }

.track-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.track-card:nth-child(1) .track-icon { color: var(--primary); }
.track-card:nth-child(2) .track-icon { color: #ff006e; }
.track-card:nth-child(3) .track-icon { color: #fb5607; }
.track-card:nth-child(4) .track-icon { color: #8338ec; }

.track-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.track-card p {
  color: var(--text-muted);
}

/* ==========================================================================
   Timeline Section
   ========================================================================== */
.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border: 4px solid var(--bg-dark);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(58, 134, 255, 0.2), 0 0 15px var(--primary);
  animation: pulseDot 2s infinite;
}

.timeline-content .date {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.timeline-content p {
  color: var(--text-muted);
}

/* ==========================================================================
   Prizes Section
   ========================================================================== */
.prizes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.prize-card {
  text-align: center;
  position: relative;
}

.top-prize {
  transform: scale(1.05);
  border-color: rgba(255, 190, 11, 0.5);
  background: linear-gradient(to bottom, rgba(255, 190, 11, 0.05), rgba(27, 38, 59, 0.6));
}

.top-prize:hover {
  transform: scale(1.08) translateY(-5px);
}

.medal {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  filter: drop-shadow(0 10px 10px rgba(0,0,0,0.3));
}

.gold { color: #ffd700; font-size: 4.5rem; }
.silver { color: #c0c0c0; }
.bronze { color: #cd7f32; }

.prize-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.prize-amt {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.top-prize .prize-amt {
  color: var(--secondary);
  font-size: 1.5rem;
}

.prize-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.participation-prize {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
  border-left: 4px solid var(--primary);
}

.participation-prize i {
  font-size: 3rem;
  color: var(--primary);
}

.participation-prize h3 {
  margin-bottom: 0.5rem;
}

.participation-prize p {
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-answer p {
  color: var(--text-muted);
  padding-bottom: 1.5rem;
}

.faq-item.active {
  border-color: rgba(58, 134, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 200px; /* arbitrary max height */
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  padding: 4rem 0 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
}

.footer-links h3, .footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   Registration Modal
   ========================================================================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 17, 27, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.close-btn:hover {
  color: white;
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.modal-header p {
  color: var(--primary);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.required {
  color: #ff006e;
}

.optional {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 400;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.input-with-icon input,
.input-with-icon select {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: white;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
}

.input-with-icon input:focus,
.input-with-icon select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
}

.input-with-icon select option {
  background: var(--bg-dark);
  color: white;
}

.success-message {
  text-align: center;
  padding: 2rem 0;
}

.success-message.hidden {
  display: none;
}

.success-icon {
  font-size: 5rem;
  color: #06d6a0;
  margin-bottom: 1.5rem;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-message h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.success-message p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Animations & Parallax
   ========================================================================== */
@keyframes float {
  0% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(50px) translateY(-20px); }
  100% { transform: translateX(0) translateY(0); }
}

@keyframes flash {
  0%, 95%, 98% { opacity: 0.1; }
  96%, 99% { opacity: 0.8; }
  100% { opacity: 0.1; }
}

@keyframes scaleIn {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(10vw, 10vh) scale(1.2); }
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 4px rgba(58, 134, 255, 0.2), 0 0 10px var(--primary); }
  50% { box-shadow: 0 0 0 8px rgba(58, 134, 255, 0.4), 0 0 20px var(--primary); }
  100% { box-shadow: 0 0 0 4px rgba(58, 134, 255, 0.2), 0 0 10px var(--primary); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Parallax utility */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.parallax-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(8, 17, 27, 0.8);
  z-index: 0;
}

.parallax-bg > .container {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
  .hero .title { font-size: 3rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .about-image { min-height: 250px; grid-row: 1; }
  .prizes-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 3rem auto; }
  .top-prize { transform: none; order: -1; }
  .top-prize:hover { transform: translateY(-5px); }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .social-links { justify-content: center; }
  .participation-prize { flex-direction: column; text-align: center; border-left: none; border-top: 4px solid var(--primary); padding-top: 1.5rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
    border-left: 1px solid var(--glass-border);
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }
  
  .nav-buttons .btn {
    display: none; /* Hide register button in mobile header */
  }
  
  .hero .cta-buttons { flex-direction: column; }
  .hero .title { font-size: 2.5rem; }
  .section { padding: 4rem 0; }
  
  .timeline-container::before { left: 10px; }
  .timeline-item { padding-left: 40px; }
  .timeline-dot { left: 2px; width: 16px; height: 16px; }
}
