/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
}
button, a {
  cursor: pointer;
}

body {
  background-color: #fffcfc;
  color: #f1f1f1;
  line-height: 1.6;
  animation: fadeBody 1s ease-out;
}
@keyframes fadeBody {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(255, 207, 207, 0.3);
}

.logo {
  color: #000000;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: bold;
}

.nav-links li a:hover {
  color: #00ffcc;
}

/* Hero Section */
.hero {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(145deg, #eae3e3, #000000);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.cta-button {
  padding: 10px 20px;
  border: none;
  background-color: #00ffcc;
  color: #000000;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #00d8aa;
}

.cta-button:hover {
  background: #00e6b2;
}

/* Gallery Section */
.gallery-card {
  min-width: 300px;
  margin: 0 10px;
  background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
  border-radius: 20px;
  padding: 1rem;
  text-align: center;
  color: #ffffff;
  flex-shrink: 0;
  overflow: hidden;
  animation: fadeInUp 0.8s ease forwards;
  box-shadow: 0 4px 10px rgba(0, 255, 204, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.gallery-card:hover {
  transform: scale(1.05) rotateZ(-1deg);
  box-shadow: 0 10px 20px rgba(0, 255, 204, 0.5);
}

.gallery-card img {
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.gallery-card img:hover {
  transform: scale(1.05);
}


.gallery-card h3 {
  text-align: center;
  margin: 12px 0;
  font-size: 1.1rem;
  color: #00ffcc;
}

/* About Section */
.about-section,
.benefits-section,
.pricing-section,
.contact-section {
  padding: 4rem 2rem;
  text-align: center;
}

.about-section h2,
.benefits-section h2,
.pricing-section h2,
.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00ffcc;
}

/* Benefits */
.benefits-section ul {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.benefits-section li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

/* Pricing */
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.price-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 0 10px rgba(0,255,204,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card h3 {
  color: #00ffcc;
  margin-bottom: 1rem;
}

.price-card p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.price-card ul li {
  margin-bottom: 0.5rem;
}

.price-card button {
  background: #00ffcc;
  color: #000;
  border: none;
  padding: 0.7rem 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.price-card button:hover {
  background: #00e6b2;
}

/* Contact Section */
.contact-section form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-section input,
.contact-section textarea {
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background: #222;
  color: #f1f1f1;
  font-size: 1rem;
}

.contact-section button {
  background: #00ffcc;
  border: none;
  padding: 0.9rem;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
}

.contact-section button:hover {
  background: #00e6b2;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  background: #000000;
  color: #000000;
  font-size: 0.9rem;
}
.footer a:focus,
.footer a:focus-visible,
.footer a:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Animations */
@keyframes typing {
  from { width: 0; }
  to { width: 1ch; }
}

@keyframes blink-caret {
  0%, 100% { opacity: 0 }
  50% { opacity: 0 }
}

.card {
  background: linear-gradient(145deg, #0a0a0a, #121212);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.4);
}
.card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 10px;
  color: #00ffcc;
  text-shadow: 0 0 3px #000;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  scroll-behavior: smooth;
}

footer a:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(88, 101, 242, 0.5);
}

.social-icon {
  width: 32px;
  height: 32px;
  margin: 0 10px;
  vertical-align: middle;
  transition: transform 0.3s ease, color 0.3s ease;
  font-size: 24px;
  color: white;
}
.social-icon:hover {
  transform: scale(1.2);
  color: #1DB954;
}
.fa-discord:hover { color: #5865F2; }
.fa-instagram:hover { color: #E1306C; }
.fa-spotify:hover { color: #1DB954; }

.footer a img:focus {
  outline: none !important;
  box-shadow: none !important;
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
  position: relative;
  margin: 40px auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.gallery-card {
  flex: 0 0 auto;
  width: 300px;
  margin: 0 10px;
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
  transition: transform 0.3s ease;
}

.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-card h3 {
  padding: 10px;
  color: #00ffcc;
}

.arrow {
  background: none;
  border: none;
  font-size: 2rem;
  color: #00ffcc;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
  transition: transform 0.2s ease;
}

.arrow:hover {
  transform: scale(1.3);
}



.favourite-section h2 {
  padding: 2rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.art-card:hover,
.price-card:hover {
  box-shadow: 0 10px 25px rgba(0, 255, 204, 0.15);
}

/* Scrollbar modern */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: #00ffcc;
  border-radius: 10px;
}

/* Responsif Mobile untuk Carousel */
@media screen and (max-width: 600px) {
  .carousel-container {
    flex-direction: column;
    padding: 0 1rem;
  }
  .carousel-item {
    min-width: 85%;
    padding: 0.8rem;
    margin: 1rem auto;
  }
  .carousel-item img {
    height: 150px;
  }
  .arrow {
    font-size: 1.8rem;
    margin: 1rem;
  }
}
/* ===== General Reset and Fonts ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  scroll-behavior: smooth;
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #111;
  box-shadow: 0 2px 10px rgba(0, 255, 204, 0.2);
}

.logo {
  font-size: 1.8rem;
  color: #00ffcc;
  text-decoration: none;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #00ffcc;
}

/* ===== Hero Section ===== */
.hero {
  text-align: center;
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #101010, #1f1f1f);
}

.hero h1 {
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #00ffcc;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #00ddb2;
}

/* ===== Favourite Stuff Section ===== */
.favourite-section {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #0a0a0a;
}

.favourite-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #00ffcc;
}

/* Carousel */
.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

/* Gallery Cards */
.gallery-card {
  background: #000000;
  border-radius: 15px;
  overflow: hidden;
  min-width: 280px;
  max-width: 320px;
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 255, 204, 0.3);
}

.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-card h3 {
  padding: 1rem;
  color: #fff;
  font-size: 1.2rem;
}

/* Carousel Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #00ffcc;
  color: #000;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.arrow:hover {
  background-color: #00ddb2;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

/* ===== About, Benefits, Pricing Sections ===== */
.about-section, .benefits-section, .pricing-section {
  padding: 4rem 2rem;
  text-align: center;
}

.about-section p, .benefits-section ul, .pricing-section p {
  max-width: 800px;
  margin: auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

.benefits-section ul {
  list-style: none;
  margin-top: 1.5rem;
}

.benefits-section li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* ===== Pricing Cards ===== */
.pricing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.price-card {
  background: #1c1c1c;
  border-radius: 15px;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 5px 20px rgba(0, 255, 204, 0.2);
}

.price-card h3 {
  color: #00ffcc;
  margin-bottom: 0.5rem;
}

.price-card p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.price-card ul {
  list-style: none;
  margin: 1rem 0;
  color: #ccc;
}

.price-card button {
  padding: 0.5rem 1rem;
  background: #00ffcc;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.price-card button:hover {
  background: #00ddb2;
}

/* ===== Footer ===== */
.footer {
  padding: 2rem;
  background-color: #111;
  text-align: center;
  border-top: 1px solid #00ffcc33;
}

.footer p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icon {
  font-size: 1.5rem;
  color: #ccc;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

.fa-discord:hover {
  color: #5865F2;
}

.fa-instagram:hover {
  color: #E1306C;
}

.fa-spotify:hover {
  color: #1DB954;
}

/* ===== Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .carousel-track {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }

  .arrow {
    display: none;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}
.donate-section {
  text-align: center;
  padding: 60px 20px;
  color: #fff;
  background: #111;
}

.donate-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #00ffc3;
}

.donate-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ccc;
}

.qr-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-image {
  max-width: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

.qr-image:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #00ffc3;
}
body {
  background: #0d0d0d;
  color: #f2f2f2;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.glossy-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom right, #121212, #1c1c1c);
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 600;
  color: #ffffff;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.glossy-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  width: 320px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 255, 200, 0.1);
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glossy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 255, 200, 0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
}

.card-text h3 {
  font-size: 1.5rem;
  margin: 0 0 10px;
  color: #00ffe7;
}

.card-text p {
  font-size: 0.95rem;
  color: #cccccc;
}
.glossy-section {
  background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
  padding: 60px 20px;
  color: #f0f0f0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 600;
  color: #ffffff;
}

.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.glossy-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glossy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 255, 255, 0.3);
}

.card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  border-radius: 12px;
}

.card-text h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #00ffe0;
}

.card-text p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.6;
}
.glossy-section {
  background: radial-gradient(circle at top left, #111, #000);
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 600;
  color: #00ffc8;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.glossy-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 25px;
  width: 280px;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,255,204,0.2);
}

.glossy-card:hover {
  transform: translateY(-10px);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.card-text h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #00ffc8;
}

.card-text p {
  font-size: 0.95rem;
  color: #ccc;
}
.section-title {
  font-size: 2.5rem;
  color: #00ffe7;
  text-align: center;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.1rem;
  color: #ccc;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.drive-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  color: #ddd;
  font-size: 1.1rem;
  line-height: 2;
}
.drive-list li {
  margin-bottom: 10px;
}
.footer-section {
  background: #0b0b0b;
  padding: 40px 20px 20px;
  text-align: center;
  border-top: 1px solid #1f1f1f;
  box-shadow: 0 -2px 20px rgba(0, 255, 255, 0.1);
}

.footer-icons a {
  margin: 0 15px;
  color: #ccc;
  font-size: 28px;
  transition: all 0.3s ease;
}

.footer-icons a:hover {
  color: #00ffe7;
  transform: scale(1.2);
}

.footer-text {
  margin-top: 25px;
  color: #777;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

.footer-text span {
  color: #00ffe7;
  font-weight: bold;
}.enhanced-about {
  text-align: center;
  padding: 4rem 2rem;
  color: #f2f2f2;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.1rem;
}

.about-intro p {
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.highlight {
  color: #00ffd5;
  font-weight: 500;
}

.drive-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.drive-list li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
