* {
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  margin: 0;
  padding: 20px;
  padding-top: 90px;
  min-height: 100vh;
}

/* ===== HEADER RESPONSIF ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border-bottom: 3px solid #00d4ff;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.header-logo {
  flex-shrink: 0;
  margin-right: 30px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  font-weight: 800;
  font-size: 22px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.logo-link:hover {
  color: #00d4ff;
  transform: translateY(-2px);
}

.logo-icon {
  font-size: 32px;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
}

.logo-text {
  display: none;
}

/* ===== NAVIGASI MENU ===== */
.nav-menu {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.nav-link:hover {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  padding-left: 20px;
}

.nav-link i {
  font-size: 18px;
  transition: 0.3s ease;
}

.nav-link:hover i {
  transform: scale(1.2);
}

.nav-link span {
  display: none;
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  margin-right: 10px;
  transition: 0.3s ease;
}

.hamburger-btn:hover {
  opacity: 0.8;
}

.hamburger-btn span {
  width: 26px;
  height: 3px;
  background: #00d4ff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
  background: #00d4ff;
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: #00d4ff;
}

/* ===== HEADER ACTIONS (LOGIN/USER) ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
}

.btn-login {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.btn-login:hover {
  background: linear-gradient(135deg, #00e8ff 0%, #00b3e6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 212, 255, 0.5);
}

.btn-login:active {
  transform: translateY(0);
}

.btn-login span {
  display: inline;
  font-weight: 700;
}

.user-info-display {
  display: none;
  position: relative;
}

.user-info-display.active {
  display: block;
}

/* Profile Button - Small Icon */
.profile-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #222;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.profile-btn:hover {
  background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.5);
}

/* Profile Dropdown Menu */
.profile-dropdown {
  display: none;
  position: fixed;
  top: 65px;
  right: 25px;
  background: #1a1a1a;
  border: 2px solid #ffd700;
  border-radius: 12px;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
  z-index: 1001;
  overflow: hidden;
}

.profile-dropdown.active {
  display: block;
  animation: slideDown 0.3s ease;
}

.profile-header {
  padding: 12px 16px;
  border-bottom: 2px solid #ffd700;
  background: #222;
}

.profile-header p {
  margin: 0;
  color: #ffd700;
  font-weight: 700;
  font-size: 14px;
}

.profile-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: #e0e0e0;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: left;
  box-sizing: border-box;
}

.profile-item:hover {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  padding-left: 18px;
}

.profile-item i {
  width: 16px;
  text-align: center;
  color: #ffd700;
  font-size: 14px;
}

.profile-divider {
  height: 1px;
  background: rgba(255, 215, 0, 0.3);
  margin: 6px 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== TABLET VIEW (768px - 1024px) ===== */
@media (max-width: 1024px) {
  body {
    padding-top: 85px;
  }

  .header-container {
    padding: 12px 20px;
  }

  .logo-text {
    display: inline;
    font-size: 18px;
  }
  
  .logo-icon {
    font-size: 26px;
  }
  
  .nav-link span {
    display: inline;
    font-size: 13px;
  }
  
  .nav-menu {
    gap: 6px;
  }
  
  .nav-link {
    font-size: 12px;
    padding: 8px 12px;
  }

  .btn-login {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* ===== MOBILE VIEW (kurang dari 768px) ===== */
@media (max-width: 768px) {
  body {
    padding: 15px;
    padding-top: 75px;
  }

  .header {
    border-bottom: 3px solid #00d4ff;
  }

  .header-container {
    padding: 12px 15px;
  }

  /* HAMBURGER BUTTON MUNCUL */
  .hamburger-btn {
    display: flex;
  }

  /* LOGO */
  .header-logo {
    margin-right: 10px;
  }

  .logo-link {
    font-size: 18px;
    gap: 10px;
  }

  .logo-icon {
    font-size: 26px;
  }

  .logo-text {
    display: none;
  }

  /* NAVIGASI MENU MOBILE */
  .nav-menu {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-bottom: 2px solid #00d4ff;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu.active {
    max-height: 350px;
  }

  .nav-link {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 0;
    color: #e0e0e0;
  }

  .nav-link:hover {
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
  }

  .nav-link span {
    display: inline;
  }

  .nav-link i {
    min-width: 20px;
    margin-right: 4px;
  }

  /* LOGIN BUTTON MOBILE */
  .btn-login {
    padding: 8px 12px;
    font-size: 12px;
    gap: 4px;
  }

  .btn-login span {
    display: none;
  }

  .btn-login i {
    font-size: 16px;
  }

  /* USER INFO MOBILE */
  .user-info-display {
    display: block;
    position: relative;
  }

  .profile-dropdown {
    position: fixed;
    top: 75px;
    right: 15px;
    left: auto;
    z-index: 999;
    min-width: 180px;
  }

  .profile-btn {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
}

/* ===== SMALL PHONE VIEW (kurang dari 480px) ===== */
@media (max-width: 480px) {
  body {
    padding: 12px;
    padding-top: 70px;
  }

  .header {
    border-bottom: 2px solid #00d4ff;
  }

  .header-container {
    padding: 10px 12px;
  }

  .header-logo {
    margin-right: 8px;
  }

  .logo-link {
    font-size: 16px;
    gap: 8px;
  }

  .logo-icon {
    font-size: 22px;
  }

  .section-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .hamburger-btn {
    gap: 4px;
    margin-right: 5px;
  }

  .hamburger-btn span {
    width: 20px;
    height: 2.5px;
  }

  .nav-link {
    padding: 12px 15px;
    font-size: 13px;
  }

  .btn-login {
    padding: 6px 10px;
    font-size: 11px;
  }
}

/* ===== BANNER SECTION ===== */
.banner-section {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 21 / 9;
  margin: 20px auto 30px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
  border: 2px solid #ffd700;
  background: #333;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
  display: block;
}

.banner-section:hover .banner-img {
  transform: scale(1.05);
}

/* RESPONSIVE BANNER */
@media (max-width: 1024px) {
  .banner-section {
    width: 96%;
    max-width: 900px;
  }
}

@media (max-width: 768px) {
  .banner-section {
    width: 97%;
    max-width: none;
    aspect-ratio: 16 / 9;
    margin: 0 auto 25px auto;
  }
}

@media (max-width: 480px) {
  .banner-section {
    width: 98%;
    aspect-ratio: 16 / 9;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    border: 1px solid #ffd700;
  }
}

.section-title {
  margin-bottom: 15px;
}

/* ===== GAME CARD (FOTO 1) ===== */
.game-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.game-card {
  background: #444;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: .25s;
}

.game-card:hover {
  transform: translateY(-6px);
}

.game-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.game-info {
  background: #f0f000;
  color: #222;
  padding: 8px;
  border-radius: 0 0 12px 12px;
}

/* ===== ITEM CARD (FOTO 2) ===== */
.item-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.item-card {
  background: #4b4b5c;
  padding: 10px;
  border-radius: 10px;
}

.price {
  color: #ffe600;
  font-size: 20px;
  font-weight: bold;
}

.badge {
  display: inline-block;
  margin-top: 10px;
  background: white;
  color: #333;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/* ===== CHECKOUT BAR ===== */
.checkout-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: black;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-checkout {
  background: #f0f000;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
}
.item-card {
  background: #4b4b5f;
  border-radius: 12px;
  padding: 16px;
  text-decoration: none;
  color: white;
  display: block;
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 212, 255, 0.2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.item-card:hover {
  background: linear-gradient(135deg, #4b4b5f, #3a3a4d);
  transform: translateY(-4px);
  border-color: #00d4ff;
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.2);
}

.item-card:hover .item-img {
  transform: scale(1.05);
}

.item-img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.item-title {
  color: #ffffff; /* PUTIH */
  font-size: 16px;
  margin-bottom: 6px;
}

.item-desc {
  font-size: 13px;
  color: #dcdcdc;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: 36px;
}

.price {
  font-size: 16px;
  font-weight: bold;
  color: #ffd900;
}

/* ===== DETAIL PAGE ===== */
.detail-wrapper {
  max-width: 800px;
  margin: 20px auto;
}

.detail-card {
  background: #4b4b5c;
  border-radius: 12px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-decoration: none;
  color: white;
}

.detail-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.detail-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.detail-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 12px;
  margin-top: 0;
}

.detail-price {
  font-size: 18px;
  color: #dcdcdc;
  margin-bottom: 10px;
}

.detail-price span {
  color: #ffd900;
  font-weight: bold;
}

.detail-desc {
  font-size: 14px;
  color: #dcdcdc;
  margin-bottom: 15px;
  line-height: 1.5;
}

.jumlah-box-modern {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.qty-btn {
  background: #f0f000;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s;
}

.qty-btn:hover {
  background: #ffd900;
}

.qty-input {
  width: 60px;
  padding: 8px;
  text-align: center;
  border: 1px solid #666;
  border-radius: 6px;
  background: #333;
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.btn-beli-modern {
  width: 100%;
  padding: 12px 20px;
  background: #f0f000;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  color: #222;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-beli-modern:hover {
  background: #ffd900;
}

#beliBtn {
  text-decoration: none;
  display: block;
  width: 100%;
}

@media (max-width: 600px) {
  .detail-card {
    grid-template-columns: 1fr;
  }
}

/* ===== CHECKOUT PAGE ===== */
.checkout-body {
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  margin: 0;
  padding: 20px;
}

.checkout-wrapper {
  max-width: 600px;
  margin: 30px auto;
}

.checkout-title {
  text-align: center;
  font-size: 28px;
  color: white;
  margin-bottom: 25px;
  margin-top: 0;
}

.checkout-card-modern {
  background: #4b4b5c;
  border-radius: 12px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  color: white;
}

.checkout-img-modern {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.checkout-info-modern {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.prod-title {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 12px;
  margin-top: 0;
}

.prod-detail {
  font-size: 14px;
  color: #dcdcdc;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.prod-value {
  color: #ffffff;
  font-weight: bold;
}

.total-label {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #666;
  font-size: 16px;
  font-weight: bold;
}

.prod-total {
  color: #ffd900;
  font-size: 18px;
}

.btn-pay-modern {
  width: 100%;
  padding: 12px 20px;
  margin-top: 15px;
  background: #f0f000;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  color: #222;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-pay-modern:hover {
  background: #ffd900;
}

@media (max-width: 600px) {
  .checkout-card-modern {
    grid-template-columns: 1fr;
  }
}

/* ===== LOGIN BUTTON & MODAL ===== */
.login-btn-wrapper {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
}

.btn-login {
  background: #f0f000;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  color: #222;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-login:hover {
  background: #ffd900;
  transform: scale(1.05);
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 200;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #4b4b5c;
  border-radius: 12px;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #666;
}

.modal-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
}

.btn-close {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-close:hover {
  color: #f0f000;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: #dcdcdc;
  margin-bottom: 6px;
  font-weight: bold;
}

.form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #666;
  border-radius: 6px;
  background: #333;
  color: white;
  font-size: 14px;
  box-sizing: border-box;
  transition: 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #f0f000;
  background: #3a3a3a;
  box-shadow: 0 0 8px rgba(240, 240, 0, 0.3);
}

.form-group input::placeholder {
  color: #999;
}

.btn-register,
.btn-submit {
  width: 100%;
  padding: 12px;
  background: #f0f000;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  color: #222;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
  margin-top: 10px;
}

.btn-register:hover,
.btn-submit:hover {
  background: #ffd900;
}

.login-optional {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 15px;
}

.user-info-display {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  background: #4b4b5c;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.user-info-display.active {
  display: block;
}

.user-info-display span {
  color: #f0f000;
  font-weight: bold;
}

.btn-admin {
  background: #ff9800;
  border: none;
  padding: 4px 10px;
  border-radius: 4px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-size: 12px;
  margin-left: 10px;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
}

.btn-admin:hover {
  background: #f57c00;
}

/* ===== MODAL TABS ===== */
.modal-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #666;
}

.tab-btn {
  flex: 1;
  padding: 12px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: #999;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}

.tab-btn:hover {
  color: #f0f000;
}

.tab-btn.active {
  border-bottom-color: #f0f000;
  color: #f0f000;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.error-message {
  display: none;
  background: #d32f2f;
  color: white;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 13px;
}

/* ===== FILTER SECTION ===== */
.filter-section {
  background: #4b4b5c;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.filter-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.filter-form label {
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.filter-select {
  padding: 8px 12px;
  border: 1px solid #666;
  border-radius: 6px;
  background: #333;
  color: white;
  cursor: pointer;
  font-size: 14px;
}

/* ===== PAYMENT FORM ===== */
.form-payment {
  background: #4b4b5c;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-payment .form-group {
  margin-bottom: 15px;
}

.form-payment .form-group label {
  display: block;
  color: #dcdcdc;
  margin-bottom: 6px;
  font-weight: bold;
  font-size: 14px;
}

.form-payment .form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #666;
  border-radius: 6px;
  background: #333;
  color: white;
  font-size: 14px;
  box-sizing: border-box;
}

.form-payment .form-group input:focus {
  outline: none;
  border-color: #f0f000;
  box-shadow: 0 0 8px rgba(240, 240, 0, 0.3);
}

/* ===== USER DATA DISPLAY ===== */
.user-data-display {
  background: #3a3a4a;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #4caf50;
}

.user-info-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: #dcdcdc;
  margin: 0;
}

.user-info-item .label {
  font-weight: bold;
  color: #f0f000;
}

.user-info-item .value {
  color: white;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #0f1419 0%, #1a1a1a 100%);
  border-top: 3px solid #ffd700;
  color: #e0e0e0;
  padding: 50px 20px 20px 20px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* FOOTER ABOUT SECTION */
.footer-about {
  grid-column: span 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  font-size: 32px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.footer-logo h3 {
  margin: 0;
  color: #ffd700;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.footer-description {
  font-size: 13px;
  line-height: 1.6;
  color: #999;
  margin: 15px 0;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

.social-btn.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-btn.instagram:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0 20px rgba(240, 148, 51, 0.5);
}

.social-btn.tiktok {
  background: #000;
  color: #fff;
  border: 2px solid #ffd700;
}

.social-btn.tiktok:hover {
  background: #ffd700;
  color: #000;
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.social-btn.whatsapp {
  background: #25d366;
  color: white;
}

.social-btn.whatsapp:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

/* FOOTER SECTIONS */
.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h4 {
  color: #ffd700;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #ffd700;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li a {
  color: #999;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: #ffd700;
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #999;
}

.footer-contact li i {
  color: #ffd700;
  min-width: 16px;
  margin-top: 2px;
}

.footer-contact li a {
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact li a:hover {
  color: #ffd700;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  color: #666;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom strong {
  color: #ffd700;
}

.footer-bottom i {
  color: #ff6b6b;
  font-size: 11px;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
  .footer {
    padding: 30px 15px 15px 15px;
    margin-top: 40px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section h4 {
    font-size: 14px;
  }

  .footer-about {
    grid-column: span 1;
  }

  .footer-logo h3 {
    font-size: 20px;
  }

  .footer-description {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 10px 10px 10px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-section h4 {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .footer-links,
  .footer-contact {
    gap: 6px;
  }

  .footer-logo {
    margin-bottom: 15px;
  }

  .footer-description {
    font-size: 11px;
  }

  .social-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
