/* JetonSepetim - TikTok Jeton Satın Al CSS */
/* SEO Optimized & Clean URLs */

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

body {
  background: linear-gradient(135deg, #000 0%, #1a1a2e 50%, #16213e 100%);
  color: #fff;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

/* Top Bar */
.top-bar {
  background: linear-gradient(90deg, #1a0a2e, #2d1b4e, #4a1259, #2d1b4e, #1a0a2e);
  background-size: 200% 100%;
  animation: gradientMove 8s ease infinite;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 0;
  height: 64px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .5);
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding-left: 0;
  margin-left: 0;
}

.logo-icon {
  width: 64px;
  height: 64px;
  background-color: #2d1b4e;
  background-image: url('logo.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0;
  display: inline-block;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
}

/* Desktop Menu */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all .3s;
  cursor: pointer;
  font-size: .95rem;
}

.desktop-menu a:hover,
.desktop-menu a.active {
  background: rgba(255, 255, 255, .15);
}

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #fe2c55;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-count.hidden {
  display: none;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, .95);
  padding: 20px;
  z-index: 999;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 8px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 50px 20px;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000 0%, #1a1a2e 100%);
  overflow: hidden;
}

.hero-bg-animations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  opacity: .15;
  animation: floatUpDown 6s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Page Header */
.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header p {
  color: #888;
  font-size: 1rem;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.section-title-full {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
  width: 100%;
}
}

/* Packages Section */
.packages-section {
  background: url('tiktok-bg.jpg') center center/contain no-repeat;
  background-color: #000;
  position: relative;
  padding: 50px 20px;
  margin: 0 -20px 60px -20px;
  border-radius: 20px;
}

.packages-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .3);
  border-radius: 20px;
}

.packages-section .section-title {
  position: relative;
  z-index: 1;
  color: #fff;
  -webkit-text-fill-color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, .8);
}

.packages-section-page {
  padding: 30px 0;
}

.packages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  position: relative;
  z-index: 1;
}

.package {
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all .3s;
}

.package:hover {
  transform: translateY(-5px);
  background: rgba(0, 0, 0, .7);
  border-color: #25f4ee;
}

.popular-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(90deg, #fe2c55, #25f4ee);
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  padding: 3px 6px;
  border-radius: 8px;
}

.package-title {
  font-size: 1.1rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.coin-icon-container {
  width: 60px;
  height: 60px;
  margin: 5px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coin-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(254, 44, 85, .5));
}

.coin-count {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
}

.price {
  font-size: 1.1rem;
  font-weight: 900;
  color: #25f4ee;
  text-align: center;
}

.bonus {
  color: #fe2c55;
  font-size: .7rem;
  text-align: center;
  font-weight: 700;
}

.add-btn {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: .8rem;
  cursor: pointer;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  color: #fff;
  transition: all .3s;
  margin-top: auto;
}

.add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(254, 44, 85, .5);
}

.add-btn.added {
  background: linear-gradient(90deg, #00d4aa, #25f4ee);
}

/* SEO Text */
.seo-text {
  text-align: center;
  color: #888;
  font-size: .85rem;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* Features Section */
.features {
  margin: 50px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.features-page {
  margin: 50px 0;
}

.feature {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all .3s;
}

.feature:hover {
  border-color: #25f4ee;
  transform: translateY(-3px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}

.feature h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #fff;
}

.feature p {
  color: #888;
  font-size: .85rem;
}

/* Info Section */
.info-section {
  margin: 50px 0;
}

.info-section h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.info-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 25px;
}

.info-card h3 {
  color: #25f4ee;
  margin-bottom: 10px;
}

.info-card p {
  color: #888;
  font-size: .9rem;
}

/* SEO Content */
.seo-content {
  background: rgba(255, 255, 255, .02);
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
}

.seo-content h2 {
  color: #25f4ee;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.seo-content h3 {
  color: #fff;
  margin: 20px 0 10px;
  font-size: 1.1rem;
}

.seo-content p {
  color: #888;
  margin-bottom: 15px;
  line-height: 1.7;
}

.seo-content ol,
.seo-content ul {
  color: #888;
  margin-left: 20px;
  margin-bottom: 15px;
}

.seo-content li {
  margin-bottom: 8px;
}

/* Steps Section */
.steps-section {
  margin: 40px 0;
}

.steps-section h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #fff;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 15px;
  transition: all .3s;
}

.step-card:hover {
  border-color: #25f4ee;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.step-content h3 {
  color: #fff;
  margin-bottom: 8px;
}

.step-content p {
  color: #888;
  font-size: .9rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(37, 244, 238, .1), rgba(254, 44, 85, .1));
  border-radius: 20px;
  padding: 50px 30px;
  margin: 50px 0;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 15px;
}

.cta-section p {
  color: #888;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  transition: all .3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(254, 44, 85, .4);
}

.cta-box {
  background: linear-gradient(135deg, rgba(37, 244, 238, .1), rgba(254, 44, 85, .1));
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin-top: 30px;
}

.cta-box h3 {
  color: #fff;
  margin-bottom: 10px;
}

.cta-box p {
  color: #888;
  margin-bottom: 20px;
}

.cta-box a {
  color: #25f4ee;
}

/* FAQ Section */
.faq {
  max-width: 800px;
  margin: 50px auto;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-page {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item:hover {
  border-color: #25f4ee;
}

.faq-q {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  font-size: .9rem;
}

.faq-q i {
  color: #25f4ee;
  transition: transform .3s;
}

.faq-item.active .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: all .3s;
  color: #888;
  padding: 0 20px;
  font-size: .85rem;
}

.faq-item.active .faq-a {
  max-height: 200px;
  padding: 0 20px 15px;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Panel */
.panel {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 20px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.panel-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}

.panel-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
}

/* Search Box */
.search-box {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.search-input {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font-size: .9rem;
}

.search-input::placeholder {
  color: #666;
}

.search-input:focus {
  outline: none;
  border-color: #25f4ee;
}

.search-btn {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  font-size: .85rem;
}

.search-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* Scroll Area */
.scroll-area {
  flex: 1;
  overflow-y: auto;
}

/* Empty State */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #666;
}

.empty-state i {
  font-size: 3rem;
  opacity: .3;
  margin-bottom: 15px;
}

/* User Profile */
.user-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, .03);
  padding: 20px;
  border-radius: 12px;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #25f4ee;
  margin-bottom: 15px;
}

.user-stats {
  display: flex;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 15px;
}

.stat {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  flex: 1;
  min-width: 70px;
}

.stat-label {
  font-size: .6rem;
  color: #666;
  text-transform: uppercase;
}

.stat-value {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
}

/* Cart Items */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-item {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: 12px;
}

.item-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.item-info h4 {
  font-size: .95rem;
  color: #fff;
  margin-bottom: 3px;
}

.item-info p {
  color: #666;
  font-size: .8rem;
}

.item-price {
  color: #25f4ee;
  font-size: 1.2rem;
  font-weight: 900;
}

.item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-control button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: none;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.qty-control button:hover {
  background: #25f4ee;
  color: #000;
}

.qty-control button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.qty-control span {
  font-weight: 900;
  color: #fff;
  min-width: 30px;
  text-align: center;
}

.remove-btn {
  background: none;
  border: none;
  color: #fe2c55;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 700;
}

/* Cart Footer */
.cart-footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 15px;
  margin-top: 15px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: #fff;
}

.total-amount {
  color: #25f4ee;
  font-size: 1.5rem;
}

.checkout-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
}

.checkout-btn:hover {
  box-shadow: 0 5px 25px rgba(254, 44, 85, .4);
}

/* Content Page */
.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
}

.content-page h1 {
  font-size: 2rem;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-page h2 {
  font-size: 1.3rem;
  margin: 25px 0 12px;
  color: #25f4ee;
}

.content-page h3 {
  font-size: 1.1rem;
  margin: 20px 0 10px;
  color: #fff;
}

.content-page p {
  color: #888;
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: .9rem;
}

.content-page ul,
.content-page ol {
  list-style: none;
  margin: 15px 0;
}

.content-page ul li,
.content-page ol li {
  padding: 8px 0 8px 25px;
  position: relative;
  color: #888;
  font-size: .9rem;
}

.content-page ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #25f4ee;
  font-weight: 900;
}

.content-page ol {
  counter-reset: item;
}

.content-page ol li {
  counter-increment: item;
}

.content-page ol li::before {
  content: counter(item) '.';
  position: absolute;
  left: 0;
  color: #25f4ee;
  font-weight: 900;
}

/* Legal Page */
.legal-page .last-update {
  color: #666;
  font-size: .8rem;
  margin-bottom: 30px;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.contact-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all .3s;
}

.contact-card:hover {
  border-color: #25f4ee;
}

.contact-icon {
  font-size: 2rem;
  color: #25f4ee;
  margin-bottom: 15px;
}

.contact-card h3 {
  color: #fff;
  margin-bottom: 8px;
}

.contact-card p {
  color: #25f4ee;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-card span {
  color: #666;
  font-size: .8rem;
}

/* Support Page */
.support-hero {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, rgba(37, 244, 238, .1), rgba(254, 44, 85, .1));
  border-radius: 12px;
  margin-bottom: 30px;
}

.support-icon {
  font-size: 4rem;
  color: #25f4ee;
  margin-bottom: 15px;
}

.support-hero h2 {
  color: #fff !important;
  margin-bottom: 10px !important;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.support-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.support-card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.support-card-icon .fa-whatsapp {
  color: #25D366;
}

.support-card-icon .fa-comment-dots {
  color: #25f4ee;
}

.support-card-icon .fa-envelope {
  color: #fe2c55;
}

.support-card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.support-card p {
  color: #888;
  margin-bottom: 15px;
}

.support-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-size: .9rem;
}

.support-btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.support-btn.chat {
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  color: #fff;
}

.support-btn.email {
  background: #fe2c55;
  color: #fff;
}

/* Quick Help */
.quick-help {
  margin: 40px 0;
}

.quick-help h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.help-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  color: #888;
  text-decoration: none;
  transition: all .3s;
}

.help-item:hover {
  border-color: #25f4ee;
  color: #fff;
}

.help-item i {
  color: #25f4ee;
  font-size: 1.2rem;
}

/* Security Badge */
.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 30px;
}

.security-badge i {
  font-size: 1.5rem;
}

.security-badge span {
  font-weight: 700;
}

/* Security Features */
.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.security-item {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
}

.security-item i {
  font-size: 2rem;
  color: #25f4ee;
  margin-bottom: 15px;
}

.security-item h3 {
  color: #fff;
  margin-bottom: 10px;
}

.security-item p {
  color: #888;
  font-size: .85rem;
}

/* Footer */
footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 40px 0 25px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 25px;
}

.footer-column h3 {
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #666;
  text-decoration: none;
  font-size: .85rem;
  transition: color .3s;
}

.footer-column ul li a:hover {
  color: #25f4ee;
}

.copyright {
  text-align: center;
  color: #444;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  font-size: .8rem;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: rgba(0, 0, 0, .95);
  border: 1px solid #25f4ee;
  border-radius: 10px;
  padding: 15px;
  min-width: 280px;
  transform: translateX(400px);
  transition: transform .3s;
}

.toast.show {
  transform: translateX(0);
}

.toast-title {
  font-weight: 900;
  color: #fff;
  margin-bottom: 3px;
  font-size: .9rem;
}

.toast-desc {
  color: #888;
  font-size: .8rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .packages {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .packages {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .logo-icon {
    width: 64px;
    height: 64px;
  }

  .logo-text {
    display: none;
  }

  .top-bar {
    padding: 0 15px 0 0;
    height: 64px;
  }

  .mobile-menu .cart-link {
    font-size: 1.5rem;
    color: #fff;
  }

  .mobile-menu .cart-link i {
    color: #fff;
    font-size: 1.5rem;
  }

  .mobile-menu .cart-count {
    width: 22px;
    height: 22px;
    font-size: 12px;
    top: -10px;
    right: -10px;
  }

  .hero {
    padding: 30px 15px;
    min-height: 200px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: .85rem;
  }

  .container {
    padding: 25px 15px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .packages-section {
    padding: 30px 15px;
    margin: 0 -15px 40px;
    background-size: cover;
  }

  .packages {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .package {
    padding: 10px;
    gap: 5px;
  }

  .package-title {
    font-size: .85rem;
  }

  .coin-icon-container {
    width: 40px;
    height: 40px;
    margin: 3px auto;
  }

  .coin-count {
    font-size: .75rem;
  }

  .price {
    font-size: .85rem;
  }

  .bonus {
    font-size: .55rem;
  }

  .add-btn {
    padding: 7px;
    font-size: .65rem;
  }

  .popular-badge {
    font-size: 6px;
    padding: 2px 4px;
    top: 5px;
    right: 5px;
  }

  .features,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .section-title-full {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 20px;
  }

  .feature {
    padding: 15px 12px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .feature h3 {
    font-size: .85rem;
  }

  .feature p {
    font-size: .75rem;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .content-page {
    padding: 20px;
  }

  .content-page h1 {
    font-size: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 400px) {
  .packages {
    gap: 8px;
  }

  .package {
    padding: 8px;
  }

  .package-title {
    font-size: .75rem;
  }

  .coin-icon-container {
    width: 35px;
    height: 35px;
  }

  .coin-count {
    font-size: .7rem;
  }

  .price {
    font-size: .8rem;
  }

  .add-btn {
    padding: 6px;
    font-size: .6rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}
