* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #f593ad;
  --primary-dark: #e36b8a;
  --bg-dark: #0a0a0a;
  --bg-card: #1a1a1a;
  --bg-hover: #252525;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --shadow: 0 8px 32px rgba(245, 147, 173, 0.15);
  --border-radius: 16px;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a14 100%);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}
.bg-animation {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}
.sakura-petal {
  position: absolute;
  width: 15px;
  height: 15px;
  pointer-events: none;
}
.sakura-petal::before,
.sakura-petal::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(
    ellipse at center,
    #f593ad 0%,
    #f8b5c7 50%,
    rgba(245, 147, 173, 0.8) 100%
  );
  border-radius: 50% 50% 0 50%;
}
.sakura-petal::before {
  transform: rotate(-45deg);
  box-shadow: 0 0 5px rgba(245, 147, 173, 0.5);
}
.sakura-petal::after {
  transform: rotate(45deg);
  left: 5px;
  box-shadow: 0 0 5px rgba(245, 147, 173, 0.5);
}
@keyframes fall {
  0% {
    transform: translateY(-100px) translateX(0) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(25vh) translateX(20px) rotate(90deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(50vh) translateX(-20px) rotate(180deg);
    opacity: 0.6;
  }
  75% {
    transform: translateY(75vh) translateX(10px) rotate(270deg);
    opacity: 0.4;
  }
  100% {
    transform: translateY(100vh) translateX(-10px) rotate(360deg);
    opacity: 0;
  }
}
@keyframes fall-slow {
  0% {
    transform: translateY(-100px) translateX(0) rotate(0deg) scale(0.8);
    opacity: 0.9;
  }
  25% {
    transform: translateY(25vh) translateX(-30px) rotate(120deg) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(50vh) translateX(30px) rotate(240deg) scale(0.9);
    opacity: 0.5;
  }
  75% {
    transform: translateY(75vh) translateX(-15px) rotate(300deg) scale(1);
    opacity: 0.3;
  }
  100% {
    transform: translateY(100vh) translateX(15px) rotate(360deg) scale(0.8);
    opacity: 0;
  }
}
@keyframes fall-fast {
  0% {
    transform: translateY(-100px) translateX(0) rotateZ(0deg) rotateX(0deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(-40px) rotateZ(180deg)
      rotateX(180deg);
    opacity: 0.6;
  }
  100% {
    transform: translateY(100vh) translateX(20px) rotateZ(360deg)
      rotateX(360deg);
    opacity: 0;
  }
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
header {
  padding: 30px 0;
  backdrop-filter: blur(10px);
  background: rgba(26, 26, 26, 0.8);
  border-bottom: 1px solid rgba(245, 147, 173, 0.1);
  top: 0;
  z-index: 100;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  overflow: hidden;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-text h1 {
  font-size: 28px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text p {
  color: var(--text-secondary);
  font-size: 14px;
}
.server-info {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--bg-card);
  padding: 15px 25px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(245, 147, 173, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.server-info:hover {
  background: var(--bg-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.server-ip {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}
.hero {
  text-align: center;
  padding: 80px 0;
  background: rgba(245, 147, 173, 0.05);
}
.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
a.logo {
    text-decoration: none !important;
    color: inherit !important;
    display: flex;
    align-items: center;
}

a.logo:hover {
    text-decoration: none !important;
}
.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
}
.premium-package {
  background: linear-gradient(135deg, var(--bg-card), rgba(245, 147, 173, 0.1));
  border-radius: var(--border-radius);
  padding: 40px;
  margin: 40px 0;
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.premium-package:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(245, 147, 173, 0.25);
}
.premium-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.premium-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  overflow: hidden;
}
.premium-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.premium-title h3 {
  font-size: 32px;
  margin-bottom: 5px;
}
.premium-subtitle {
  color: var(--text-secondary);
}
.premium-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: 30px 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(245, 147, 173, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.feature-item:hover {
  background: rgba(245, 147, 173, 0.2);
  transform: translateX(5px);
}
.feature-item i {
  color: var(--primary-color);
  font-size: 20px;
}
.premium-button {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}
.premium-button:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 48px rgba(245, 147, 173, 0.35);
}
.packages-section {
  padding: 60px 0;
}
.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}
.package-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(245, 147, 173, 0.1);
  transition: all 0.3s ease;
  position: relative;
}
.package-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}
.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  box-shadow: var(--shadow);
}
.package-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(245, 147, 173, 0.2),
    rgba(245, 147, 173, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.package-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.package-card:hover .package-image img {
  transform: scale(1.1) rotate(5deg);
}
.package-content {
  padding: 25px;
}
.package-name {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-color);
}
.package-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.current-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
}
.original-price {
  font-size: 18px;
  color: var(--text-secondary);
  text-decoration: line-through;
}
.quantity-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.quantity-btn {
  flex: 1;
  padding: 10px;
  background: rgba(245, 147, 173, 0.1);
  border: 1px solid rgba(245, 147, 173, 0.3);
  border-radius: 8px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}
.quantity-btn:hover,
.quantity-btn.active {
  background: var(--primary-color);
  color: var(--bg-dark);
  border-color: var(--primary-color);
}
.add-to-cart {
  width: 100%;
  padding: 15px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.add-to-cart:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}
.view-contents {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}
.view-contents:hover {
  background: rgba(245, 147, 173, 0.1);
}
footer {
  background: var(--bg-card);
  padding: 60px 0 30px;
  margin-top: 80px;
  border-top: 1px solid rgba(245, 147, 173, 0.1);
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 20px;
}
.footer-section p,
.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: white;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(245, 147, 173, 0.1);
  color: var(--text-secondary);
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(245, 147, 173, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .premium-header {
    flex-direction: column;
    text-align: center;
  }
  .premium-features {
    grid-template-columns: 1fr;
  }
}
.loading {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}
.loading.active {
  display: block;
}
.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(245, 147, 173, 0.2);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.policy-container {
    max-width: 900px;
    margin: 40px auto;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 50px;
    border: 1px solid rgba(245, 147, 173, 0.2);
}
.policy-header {
    text-align: center;
    margin-bottom: 50px;
}
.policy-header h1 {
    font-size: 42px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}
.policy-header .date {
    color: var(--text-secondary);
    font-size: 14px;
}
.policy-section {
    margin-bottom: 35px;
}
.policy-section h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.policy-section p, .policy-section li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}
.policy-section ul {
    margin-left: 25px;
    margin-top: 10px;
}
.policy-section li {
    margin-bottom: 8px;
}
.highlight-box {
    background: rgba(245, 147, 173, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
}
.highlight-box strong {
    color: var(--primary-color);
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.back-link:hover {
    transform: translateX(-5px);
}
@media (max-width: 768px) {
    .policy-container {
        padding: 30px 20px;
    }
    .policy-header h1 {
        font-size: 32px;
    }
}
.faq-container {
    max-width: 1000px;
    margin: 40px auto;
}
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}
.faq-header h1 {
    font-size: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}
.faq-header p {
    color: var(--text-secondary);
    font-size: 18px;
}
.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
}
.category-btn {
    padding: 15px 25px;
    background: var(--bg-card);
    border: 2px solid rgba(245, 147, 173, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.category-btn:hover, .category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.faq-section {
    margin-bottom: 30px;
}
.faq-section h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.faq-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    border: 1px solid rgba(245, 147, 173, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: var(--primary-color);
}
.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}
.faq-question:hover {
    color: var(--primary-color);
}
.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer-content {
    padding: 0 25px 25px 25px;
    color: var(--text-secondary);
    line-height: 1.8;
}
.faq-answer-content ul {
    margin: 15px 0 15px 25px;
}
.faq-answer-content li {
    margin-bottom: 8px;
}
.faq-answer-content strong {
    color: var(--primary-color);
}
.faq-answer-content code {
    background: rgba(245, 147, 173, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}
.highlight-box {
    background: rgba(245, 147, 173, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.back-link:hover {
    transform: translateX(-5px);
}
.search-box {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}
.search-box input {
    width: 100%;
    padding: 18px 50px 18px 25px;
    background: var(--bg-card);
    border: 2px solid rgba(245, 147, 173, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}
.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}
.search-box i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}
@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 36px;
    }
    .faq-categories {
        grid-template-columns: 1fr;
    }
}