/* Common Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #181A2A;
  color: #D1D5DB;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

nav {
  background: #222;
  color: #fff;
  padding: 0 16px;
}
nav .nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
nav .logo {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
nav ul li a:hover {
  color: #ff9800;
}

.card {
  background: #23264A;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  overflow: hidden;
  margin-bottom: 24px;
  transition: box-shadow 0.2s;
  border: 1px solid #31345B;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.card img {
  width: 100%;
  display: block;
}
.card-content {
  padding: 16px;
}

.btn {
  display: inline-block;
  background: linear-gradient(90deg, #6C63FF 0%, #00C3FF 100%);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px #23264A;
}
.btn:hover {
  background: #e67c00;
}

@media (max-width: 768px) {
  .container {
    padding: 8px;
  }
  nav .nav-content {
    flex-direction: column;
    height: auto;
    gap: 8px;
    align-items: flex-start;
  }
  nav ul {
    gap: 12px;
  }
}

footer{
  margin: 20px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background-color: #2a2a31;
  color: white;
}
.footer-section{
  display: flex;
  flex-direction: row;
}
.footer-section a{
  color: white;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #FFFFFF;
}

a {
  color: #00C3FF;
}

a:hover {
  color: #00FFB0;
}

button, .btn {
  background: linear-gradient(90deg, #6C63FF 0%, #00C3FF 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 2px 8px #23264A;
}

hr, .divider {
  border-color: #31345B;
}

.panel, .box {
  background: #23264A;
  border: 1px solid #31345B;
}

input, textarea, select {
  background: #181A2A;
  color: #D1D5DB;
  border: 1px solid #31345B;
}

::-webkit-scrollbar-thumb {
  background: #31345B;
}

::-webkit-scrollbar-track {
  background: #181A2A;
}