:root {
  --bg-primary: #282a36;
  --bg-secondary: #44475a;
  --text-primary: #f8f8f2;
  --text-secondary: #6272a4;
  --accent: #bd93f9;
  --success: #50fa7b;
  --warning: #ffb86c;
  --error: #ff5555;
  --cyan: #8be9fd;
  --pink: #ff79c6;
}

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

body {
  font-family: 'Play', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

nav {
  background: var(--bg-secondary);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 1rem;
  gap: 2rem;
}

nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--accent);
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

@media (max-width: 768px) {
  nav {
    display: none !important;
  }

  .container {
    max-width: 100%;
  }

  .footer-desktop {
    display: none;
  }

  .footer-mobile {
    display: flex !important;
  }

  .copyright-desktop {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .footer-mobile {
    display: none;
  }

  .footer-desktop {
    display: block;
  }
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
  text-align: center;
  color: var(--accent);
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
  color: var(--cyan);
}

p {
  margin: 0.5rem 0;
  font-size: 1.125rem;
}

a {
  color: var(--pink);
  text-decoration: underline;
}

a:hover {
  color: var(--warning);
}

footer {
  background: var(--bg-secondary);
  border-top: 2px solid var(--accent);
  padding: 1rem;
  margin-top: 1rem;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem;
}

.copyrigth-mobile {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
  font-size: small;
}

.social-links a {
  text-decoration: none;
  font-weight: 700;
  color: var(--success);
}

.social-links a:hover {
  color: var(--warning);
}

.contact-info {
  margin: 0.5rem 0;
}

.contact-info a {
  text-decoration: none;
  font-weight: 700;
  color: var(--cyan);
}

.contact-info a:hover {
  color: var(--pink);
}

.footer-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-top: 2px solid var(--accent);
  padding: 1rem;
  z-index: 99;
}

.mobile-footer-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.mobile-footer-buttons button {
  flex: 1;
  max-width: 200px;
  padding: 1rem;
  font-family: 'Play', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--accent);
  background: var(--bg-secondary);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s;
}

.mobile-footer-buttons button:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: var(--bg-secondary);
  margin: 15% auto;
  padding: 2rem;
  border: 2px solid var(--accent);
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
}

.modal-close {
  color: var(--text-secondary);
  float: right;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
  color: var(--accent);
}
