/* Cyberpunk Theme Variables */
:root {
  /* Cyberpunk theme colors */
  --primary: #ff00ff;
  /* Magenta */
  --primary-rgb: 255, 0, 255;
  --primary-dark: #cc00cc;
  /* Darker magenta */
  --secondary: #00ffff;
  /* Cyan */
  --secondary-rgb: 0, 255, 255;
  --background: #0a0a16;
  /* Dark blue-black */
  --surface: #1a1a2e;
  /* Dark blue */
  --surface-rgb: 26, 26, 46;
  --surface-hover: #2a2a4e;
  /* Lighter blue */
  --text: #00ffff;
  /* Cyan */
  --text-rgb: 0, 255, 255;
  --border: #ff00ff;
  /* Magenta */
  --divider: #1a1a2e;
  /* Dark blue */
  --error: #ff0055;
  /* Neon red */
  --success: #00ff9f;
  /* Neon green */
  --warning: #ffcc00;
  /* Neon yellow */
  --info: #00ffff;
  /* Cyan */
  --info-dark: #00cccc;
  /* Darker cyan */
  --accent: #ffcc00;
  /* Neon yellow */
  --accent-rgb: 255, 204, 0;

  /* Legacy variables for backward compatibility */
  --bg-color: var(--background);
  --text-color: #e0e0e0;
  --accent-color-1: var(--secondary);
  --accent-color-2: var(--primary);
  --accent-color-3: #7700ff;
  --accent-color-4: #ff2a6d;
  --glow-shadow: 0 0 10px rgba(var(--secondary-rgb), 0.7);

  /* Fonts */
  --font-main: 'Rajdhani', 'Orbitron', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --font-size: 16px;
  --line-height: 1.6;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.1rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;

  /* Border Radius */
  --border-radius: 4px;

  /* Transitions */
  --transition-speed: 0.3s;
}

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

html,
body {
  font-family: var(--font-main);
  font-size: var(--font-size);
  line-height: var(--line-height);
  color: var(--text-color);
  background-color: var(--background);
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

body {
  position: relative;
  min-height: 100vh;
  background-image:
    linear-gradient(rgba(10, 10, 22, 0.9), rgba(10, 10, 22, 0.9)),
    repeating-linear-gradient(transparent,
      transparent 2px,
      rgba(0, 255, 255, 0.03) 2px,
      rgba(0, 255, 255, 0.03) 4px),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 2px,
      rgba(255, 0, 255, 0.03) 2px,
      rgba(255, 0, 255, 0.03) 4px);
  background-attachment: fixed;
}

.crt-container {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  text-align: center;
  width: 35%;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 35%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2));
}

h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-top: 2rem;
  color: var(--accent-color-1);
  text-shadow: 0 0 5px var(--accent-color-1);
}

h3 {
  font-size: 1.8rem;
  color: var(--accent-color-4);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

a {
  color: var(--accent-color-1);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: var(--accent-color-2);
  text-shadow: var(--glow-shadow);
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2));
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

/* Header */
header {
  padding: 2rem 0;
  position: relative;
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  width: 100%;
  text-align: center;
}

.logo {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.nav a {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.1rem 1rem;
  border: 1px solid transparent;
}

.nav a:hover {
  border: 1px solid var(--accent-color-1);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(119, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
  z-index: -1;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
}

.hero-content {
  width: 100%;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(var(--secondary-rgb), 0.7);
}

.hero h2 {
  margin-bottom: var(--spacing-md);
}

.hero p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  justify-content: center;
  width: 100%;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.glitch-text {
  position: relative;
  display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.glitch-text::before {
  left: 2px;
  text-shadow: -2px 0 var(--accent-color-2);
  clip-path: inset(44px 0 calc(100% - 56px) 0);
  animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch-text::after {
  left: -2px;
  text-shadow: -2px 0 var(--accent-color-1);
  clip-path: inset(44px 0 calc(100% - 56px) 0);
  animation: glitch-anim-2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0% {
    clip-path: inset(42px 0 calc(100% - 44px) 0);
  }

  5% {
    clip-path: inset(12px 0 calc(100% - 59px) 0);
  }

  10% {
    clip-path: inset(48px 0 calc(100% - 29px) 0);
  }

  15% {
    clip-path: inset(42px 0 calc(100% - 73px) 0);
  }

  20% {
    clip-path: inset(63px 0 calc(100% - 27px) 0);
  }

  25% {
    clip-path: inset(34px 0 calc(100% - 55px) 0);
  }

  30% {
    clip-path: inset(86px 0 calc(100% - 73px) 0);
  }

  35% {
    clip-path: inset(20px 0 calc(100% - 20px) 0);
  }

  40% {
    clip-path: inset(26px 0 calc(100% - 60px) 0);
  }

  45% {
    clip-path: inset(25px 0 calc(100% - 66px) 0);
  }

  50% {
    clip-path: inset(57px 0 calc(100% - 98px) 0);
  }

  55% {
    clip-path: inset(5px 0 calc(100% - 46px) 0);
  }

  60% {
    clip-path: inset(82px 0 calc(100% - 31px) 0);
  }

  65% {
    clip-path: inset(54px 0 calc(100% - 27px) 0);
  }

  70% {
    clip-path: inset(28px 0 calc(100% - 99px) 0);
  }

  75% {
    clip-path: inset(45px 0 calc(100% - 69px) 0);
  }

  80% {
    clip-path: inset(23px 0 calc(100% - 85px) 0);
  }

  85% {
    clip-path: inset(54px 0 calc(100% - 84px) 0);
  }

  90% {
    clip-path: inset(45px 0 calc(100% - 47px) 0);
  }

  95% {
    clip-path: inset(37px 0 calc(100% - 20px) 0);
  }

  100% {
    clip-path: inset(4px 0 calc(100% - 91px) 0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip-path: inset(65px 0 calc(100% - 100px) 0);
  }

  5% {
    clip-path: inset(52px 0 calc(100% - 74px) 0);
  }

  10% {
    clip-path: inset(79px 0 calc(100% - 85px) 0);
  }

  15% {
    clip-path: inset(75px 0 calc(100% - 5px) 0);
  }

  20% {
    clip-path: inset(67px 0 calc(100% - 61px) 0);
  }

  25% {
    clip-path: inset(14px 0 calc(100% - 79px) 0);
  }

  30% {
    clip-path: inset(1px 0 calc(100% - 66px) 0);
  }

  35% {
    clip-path: inset(86px 0 calc(100% - 30px) 0);
  }

  40% {
    clip-path: inset(23px 0 calc(100% - 98px) 0);
  }

  45% {
    clip-path: inset(85px 0 calc(100% - 72px) 0);
  }

  50% {
    clip-path: inset(71px 0 calc(100% - 75px) 0);
  }

  55% {
    clip-path: inset(2px 0 calc(100% - 48px) 0);
  }

  60% {
    clip-path: inset(30px 0 calc(100% - 16px) 0);
  }

  65% {
    clip-path: inset(59px 0 calc(100% - 50px) 0);
  }

  70% {
    clip-path: inset(41px 0 calc(100% - 62px) 0);
  }

  75% {
    clip-path: inset(2px 0 calc(100% - 82px) 0);
  }

  80% {
    clip-path: inset(47px 0 calc(100% - 73px) 0);
  }

  85% {
    clip-path: inset(3px 0 calc(100% - 27px) 0);
  }

  90% {
    clip-path: inset(26px 0 calc(100% - 55px) 0);
  }

  95% {
    clip-path: inset(42px 0 calc(100% - 97px) 0);
  }

  100% {
    clip-path: inset(38px 0 calc(100% - 49px) 0);
  }
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  margin: 0.1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--secondary-rgb), 0.2), transparent);
  transition: all 0.5s ease;
  z-index: -1;
}

.btn:hover {
  box-shadow: 0 0 15px rgba(var(--secondary-rgb), 0.5);
}

.btn:hover::before {
  left: 100%;
}

.primary-btn {
  background-color: var(--primary);
  color: var(--background);
  border-color: var(--primary);
}

.primary-btn:hover {
  background-color: transparent;
  color: var(--primary);
  box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.5);
}

.secondary-btn {
  background-color: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}

.secondary-btn:hover {
  background-color: rgba(var(--secondary-rgb), 0.1);
  box-shadow: 0 0 15px rgba(var(--secondary-rgb), 0.5);
}

/* Projects Section */
.projects {
  padding: 4rem 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  background: rgba(20, 20, 30, 0.7);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 5px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2));
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 255, 255, 0.3);
}

.project-card img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.project-card h3 {
  margin-bottom: 0.1rem;
}

.project-card p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.project-card.coming-soon .placeholder-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, var(--accent-color-3), var(--accent-color-2));
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.project-card.coming-soon .placeholder-img::before {
  content: 'COMING SOON';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--text-color);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.project-card.coming-soon .placeholder-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shine 2s infinite;
}

.project-links {
  display: flex;
  gap: 0.1rem;
  margin-top: 1rem;
}

.project-links .btn {
  padding: 0.1rem 1rem;
  font-size: 0.9rem;
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}

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

  100% {
    left: 100%;
  }
}

/* About Section */
.about {
  padding: 4rem 0;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 80% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
  z-index: -1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  background: rgba(20, 20, 30, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  padding: 1.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 255, 255, 0.2);
}

.feature-item h3 {
  margin-bottom: 1rem;
  color: var(--accent-color-1);
  font-size: 1.5rem;
  line-height: 1.3;
  word-wrap: break-word;
}

.feature-item p {
  font-size: 1rem;
  margin-bottom: 0;
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Footer */
footer {
  padding: 3rem 0;
  background-color: rgba(10, 10, 18, 0.9);
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.social-links a {
  font-size: 1.5rem;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--accent-color-1);
  transform: translateY(-3px);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.1rem;
  margin: 1rem 0;
}

.badges img {
  height: 28px;
}

.copyright {
  font-size: 0.9rem;
  color: rgba(224, 224, 224, 0.7);
}


/* Turbo Mode Toggle */
.turbo-container {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  text-align: center;
}

.turbo-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 35%;
  /* Match the h1 width */
  margin: 0 auto;
}

.turbo-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  width: 60px;
  height: 30px;
  margin-right: 10px;
}

.turbo-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  width: 60px;
  height: 30px;
  background-color: var(--surface);
  transition: 0.4s;
  border-radius: 30px;
  border: 1px solid var(--primary);
}

.slider:before {
  position: absolute;
  content: '';
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 3px;
  background-color: var(--text);
  transition: 0.4s;
  border-radius: 50%;
}

input:checked+.slider {
  background-color: var(--primary-dark);
}

input:checked+.slider:before {
  transform: translateX(30px);
  background-color: var(--accent);
}

.turbo-label {
  margin-left: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-mono);
  font-weight: bold;
  color: var(--secondary);
  white-space: nowrap;
}

/* CRT Effects */
.turbo-mode {
  position: relative;
}

.crt-scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
  background-size: 100% 4px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.crt-flicker-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  animation: flicker 5s infinite;
}

.crt-glitch-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  animation: glitch 10s infinite;
}

.crt-vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center,
      rgba(10, 10, 22, 0) 0%,
      rgba(10, 10, 22, 0.2) 80%,
      rgba(10, 10, 22, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.crt-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center,
      rgba(var(--primary-rgb), 0.1) 0%,
      rgba(var(--primary-rgb), 0) 70%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show CRT effects when turbo mode is enabled */
body.turbo-mode .crt-scanlines,
body.turbo-mode .crt-vignette,
body.turbo-mode .crt-glow {
  opacity: 1;
}

body.turbo-mode .crt-flicker-overlay,
body.turbo-mode .crt-glitch-overlay {
  opacity: 0.05;
}

/* Responsive Design */
@media (max-width: 992px) {
  .cta-buttons {
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
    width: 100%;
    max-width: 300px;
  }

  .btn {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .feature-grid,
  .project-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-item {
    padding: 1.25rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

/* CRT Effect Animations */
@keyframes flicker {
  0% {
    opacity: 0.97;
  }

  5% {
    opacity: 0.9;
  }

  10% {
    opacity: 0.97;
  }

  15% {
    opacity: 0.92;
  }

  20% {
    opacity: 0.97;
  }

  50% {
    opacity: 0.95;
  }

  80% {
    opacity: 0.97;
  }

  85% {
    opacity: 0.9;
  }

  90% {
    opacity: 0.97;
  }

  95% {
    opacity: 0.93;
  }

  100% {
    opacity: 0.97;
  }
}

@keyframes glitch {
  0% {
    transform: translateX(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  5% {
    transform: translateX(-5px);
    clip-path: polygon(0 10%, 100% 10%, 100% 90%, 0 90%);
  }

  10% {
    transform: translateX(5px);
    clip-path: polygon(0 5%, 100% 5%, 100% 95%, 0 95%);
  }

  15% {
    transform: translateX(-3px);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  20% {
    transform: translateX(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  98% {
    transform: translateX(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  100% {
    transform: translateX(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.flicker {
  animation: flicker 5s infinite;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.accent-1 {
  color: var(--accent-color-1);
}

.accent-2 {
  color: var(--accent-color-2);
}

.accent-3 {
  color: var(--accent-color-3);
}

.accent-4 {
  color: var(--accent-color-4);
}

.glow {
  text-shadow: 0 0 5px currentColor;
}

.hidden {
  display: none;
}
