/* General Reset */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comic Sans MS', cursive, sans-serif; /* Doodle-style font */
}
body {
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Header */
header {
    background: #4a90e2;
    text-align: center;
    padding: 20px 0;
    border-radius: 10px;
}
header h1 {
    color: #fff;
    font-size: 3rem;
}

/* Hero Image Section */
#hero-image {
    text-align: center;
    margin: 20px 0;
}
#hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Buy Section */
#buy {
    background: #fff;
    border: 2px solid #4a90e2;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#buy h1 {
    color: #4a90e2;
    font-size: 2.5rem;
}
#buy .ca {
    font-family: monospace;
    color: #555;
    margin: 10px 0;
}
#buy .buy-button {
    background: #4a90e2;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    display: inline-block;
    margin-top: 10px;
    transition: background 0.3s ease-in-out;
}
#buy .buy-button:hover {
    background: #357ab7;
}

/* Roadmap Section */
#roadmap {
    margin: 40px 0;
}
#roadmap h1 {
    text-align: center;
    color: #4a90e2;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.phase {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #fdd835;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}
.phase h2 {
    color: #fdd835;
    font-size: 1.8rem;
}
.phase p {
    color: #555;
    margin-top: 10px;
}

/* Why Choose Kwuck Section */
#why-kwuck {
    margin: 40px 0;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#why-kwuck h1 {
    text-align: center;
    color: #4a90e2;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
#why-kwuck ul {
    list-style: none;
    padding: 0;
}
#why-kwuck li {
    margin-bottom: 20px;
}
#why-kwuck li h2 {
    color: #fdd835;
    font-size: 1.8rem;
}
#why-kwuck li p {
    color: #555;
    margin-top: 5px;
}

/* About Section */
#about {
    margin: 40px 0;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
#about img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
#about p {
    color: #555;
    flex: 1;
    line-height: 1.8;
    text-align: justify;
}

/* Contact Section */
#contact {
    margin: 40px 0;
    text-align: center;
}
#contact h1 {
    color: #4a90e2;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-icons a img {
    width: 40px;
    transition: transform 0.3s ease-in-out;
}
.social-icons a img:hover {
    transform: scale(1.2);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #4a90e2;
    color: #fff;
    border-radius: 10px;
    margin-top: 40px;
}
.explore-universe {
  text-align: center;
  padding: 50px 20px;
}

/* Slider Container */
.slider-container {
  width: 100%; /* Full width of the parent container */
  max-width: 900px; /* Limit the width for better visuals */
  overflow: hidden; /* Hide extra images */
  margin: 0 auto; /* Center the container */
  position: relative;
}

/* Slider Images */
.slider-images {
  display: flex;
  width: calc(300px * 3 + 20px * 2); /* Total width = 3 images + gaps */
  transition: transform 0.8s ease-in-out; /* Smooth sliding */
  gap: 20px; /* Space between images */
}

.slider-images img {
  width: 300px; /* Consistent width for all images */
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px; /* Rounded corners */
}