* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
 padding-top: 25px;
  min-height: 100vh;
  background: linear-gradient(145deg, #1f1f1f, #121212);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 0;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        overflow-x: hidden;
        margin: 0;
}

.login-container {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 10px 10px 30px #0d0d0d, -10px -10px 30px #2a2a2a;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-container h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #00ffcc;
  text-shadow: 0 0 10px #00ffcc;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
}

.success-wrap {
    animation: fadeInUp 0.3s ease-out;
    background: linear-gradient(145deg, rgba(0, 255, 204, 0.1), rgba(0, 255, 204, 0.05));
    border: 1px solid rgba(0, 255, 204, 0.3);
    padding: 10px 16px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 12px;
    color: #00ffcc;
    font-size: 13px;
    font-weight: 500;
}

.warning-wrap {
    animation: fadeInUp 0.3s ease-out;
    background: linear-gradient(145deg, rgb(244 67 54 / 15%), rgb(244 67 54 / 8%));
    border: 1px solid #ff5a5f;
    color: #ff5a5f;
    padding: 10px 16px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 500;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  margin-bottom: 6px;
  font-size: 13px;
  color: #bbb;
  font-weight: 500;
}

.input-group input {
  padding: 12px 10px;
  border: none;
  border-radius: 10px;
  background: #2b2b2b;
  color: #fff;
  box-shadow: inset 2px 2px 5px #0d0d0d, inset -2px -2px 5px #333;
  transition: all 0.3s ease;
  font-size: 15px;
  min-height: 42px;
}

.input-group input::placeholder {
  color: #888;
}

.input-group input:focus {
  outline: none;
  box-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc;
  transform: translateY(-1px);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #bbb;
  cursor: pointer;
  user-select: none;
  line-height: 1.3;
  margin: 5px 0;
}

.checkbox-label input[type='checkbox'] {
  width: 16px;
  height: 16px;
  accent-color: #00ffcc;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}

.checkbox-label span {
  cursor: pointer;
}

.checkbox-label:hover {
  color: #fff;
}

.recaptcha-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px 0;
  padding: 8px;
  border-radius: 10px;
  background: #2b2b2b;
  box-shadow: inset 2px 2px 5px #0d0d0d, inset -2px -2px 5px #333;
}

.recaptcha-container .g-recaptcha {
  transform: scale(0.85);
  transform-origin: center;
}

/* Custom reCAPTCHA dark theme overrides */
.recaptcha-container iframe {
  
}

.recaptcha-container .g-recaptcha > div {
  background: #2b2b2b !important;
  border-radius: 8px !important;
  border: 1px solid #444 !important;
}

/* Alternative approach using CSS variables for reCAPTCHA */
.g-recaptcha {
  --recaptcha-bg: #2b2b2b;
  --recaptcha-border: #444;
  --recaptcha-text: #fff;
}

/* Force dark theme on reCAPTCHA elements */
.recaptcha-container * {
  
}

.login-btn {
  padding: 12px 10px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(145deg, #00a594, #00d4aa);
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 15px #0d0d0d, -4px -4px 15px #2a2a2a;
  min-height: 42px;
  margin-top: 8px;
      width: 100%;
}

.login-btn:hover {
  background: linear-gradient(145deg, #00ffcc, #00b38f);
  box-shadow: 0 0 15px #00ffcc, 0 0 25px #00ffcc;
  transform: translateY(-2px);
}

.login-btn:active {
  transform: translateY(0);
  box-shadow: 2px 2px 8px #0d0d0d, -2px -2px 8px #2a2a2a;
}

.footer-text {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-top: 8px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-text:hover {
  color: #00ffcc;
}

/* 404 Page Specific Styles */
.error-container {
  background: #1a1a1a;
  padding: 60px 40px;
  border-radius: 25px;
  box-shadow: 10px 10px 30px #0d0d0d, -10px -10px 30px #2a2a2a;
  max-width: 600px;
  width: 100%;
  text-align: center;
  position: relative;
}

.error-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 255, 204, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  border-radius: 25px;
}

.error-content {
  position: relative;
  z-index: 1;
}

.error-code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  color: #00ffcc;
  text-shadow: 0 0 30px #00ffcc, 0 0 60px #00ffcc;
  margin: 0;
  line-height: 0.9;
  background: linear-gradient(45deg, #00ffcc, #00b38f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate;
}

/* New class for error code without glow effect */
.error-code-no-glow {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  color: #00ffcc;
  margin: 0;
  line-height: 0.9;
  background: linear-gradient(45deg, #00ffcc, #00b38f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px #00ffcc, 0 0 40px #00ffcc;
  }
  to {
    text-shadow: 0 0 30px #00ffcc, 0 0 60px #00ffcc, 0 0 80px #00ffcc;
  }
}

.error-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #fff;
  margin: 20px 0 15px;
  font-weight: 700;
}

.error-message {
  color: #bbb;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.error-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.error-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 200px;
  justify-content: center;
  box-shadow: 4px 4px 15px #0d0d0d, -4px -4px 15px #2a2a2a;
}

.error-btn.primary {
  background: linear-gradient(145deg, #00a594, #00d4aa);
    color: #000;
}

.error-btn.primary:hover {
  background: linear-gradient(145deg, #00ffcc, #00b38f);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.error-btn.secondary {
  background: linear-gradient(145deg, #2b2b2b, #1f1f1f);
  color: #bbb;
  border: 1px solid #444;
}

.error-btn.secondary:hover {
  background: linear-gradient(145deg, #333, #2a2a2a);
  color: #fff;
  border-color: #00ffcc;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
  transform: translateY(-2px);
  text-decoration: none;
}

.error-icon {
  font-size: 1.2rem;
}

.breadcrumb {
  position: relative;
  top: 30px;
  left: 30px;
  color: #666;
  font-size: 0.9rem;
  z-index: 2;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 16px 24px;
        margin: 24px auto;
        max-width: 1400px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transform: translateZ(0);
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.breadcrumb a {
  color: #00ffcc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #00b38f;
  text-decoration: underline;
}

/* Stats Page Styles */
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #1a1a1a;
  border-radius: 20px;
  box-shadow: 10px 10px 30px #0d0d0d, -10px -10px 30px #2a2a2a;
  position: relative;
}

.stats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #2b2b2b;
}

.stats-title-section h1 {
  color: #00ffcc;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 10px;
  font-weight: 700;
}

.stats-title-section p {
  color: #bbb;
  font-size: 1.1rem;
  margin: 0;
}

.stats-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-globe {
  font-size: 4rem;
  filter: drop-shadow(0 0 10px #00ffcc);
}

.stats-generated {
  background: linear-gradient(145deg, #2b2b2b, #1f1f1f);
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid #333;
}

.generated-label {
  color: #bbb;
  font-size: 0.9rem;
  margin-right: 10px;
}

.generated-time {
  color: #00ffcc;
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stats-card {
  background: linear-gradient(145deg, #2b2b2b, #1f1f1f);
  padding: 25px;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(0, 255, 204, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.stats-card:hover::before {
  opacity: 1;
}

.stats-card:hover {
  border-color: #00ffcc;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
  transform: translateY(-5px);
}

.stats-card.highlight {
  border-color: #00ffcc;
  background: linear-gradient(145deg, #00ffcc15, #00ffcc08);
}

.stats-card.success {
  border-color: #2ecc71;
  background: linear-gradient(145deg, #2ecc7115, #2ecc7108);
}

.stats-card.success-total {
  border-color: #f39c12;
  background: linear-gradient(145deg, #f39c1215, #f39c1208);
}

.stats-card.warning {
  border-color: #e74c3c;
  background: linear-gradient(145deg, #e74c3c15, #e74c3c08);
}

.stats-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.stats-card-header h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.stats-icon-small {
  font-size: 1.5rem;
  opacity: 0.8;
}

.stats-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.stats-number {
  color: #00ffcc;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.stats-currency {
  color: #f39c12;
  font-size: 1.5rem;
  font-weight: 600;
}

.stats-description {
  color: #bbb;
  font-size: 0.9rem;
  line-height: 1.4;
}

.stats-percentage {
  color: #2ecc71;
  font-weight: 600;
}

.investment-section {
  background: linear-gradient(145deg, #00ffcc20, #00ffcc10);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 30px;
  border: 1px solid #00ffcc30;
}

.investment-content h2 {
  color: #00ffcc;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 700;
}

.investment-content p {
  color: #bbb;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.investment-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(145deg, #00ccaa, #00997a);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 15px #0d0d0d;
}

.investment-btn:hover {
  background: linear-gradient(145deg, #00ffcc, #00b38f);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.investment-icon {
  font-size: 1.2rem;
        width: 120px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transparency-note {
  background: linear-gradient(145deg, #2b2b2b, #1f1f1f);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #333;
}

.transparency-note h3 {
  color: #00ffcc;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.transparency-note p {
  color: #bbb;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* FAQ-specific styles */
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #1a1a1a;
  border-radius: 20px;
  box-shadow: 10px 10px 30px #0d0d0d, -10px -10px 30px #2a2a2a;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h1 {
  color: #cfd1d1;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 15px;
  font-weight: 700;
}

.faq-header p {
  color: #bbb;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* CSS-only category filtering */
.faq-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.faq-categories input[type='radio'] {
  display: none;
}

.category-card {
  background: linear-gradient(145deg, #2b2b2b, #1f1f1f);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: block;
}

.category-card:hover {
  border-color: #00ffcc;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
  transform: translateY(-5px);
}

.faq-categories input[type='radio']:checked + .category-card {
  border-color: #00ffcc;
  background: linear-gradient(145deg, #00ffcc20, #00ffcc10);
}

.category-card h3 {
  color: #00ffcc;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.category-card p {
  color: #bbb;
  font-size: 0.9rem;
}

/* FAQ Accordion - CSS Only */
.faq-accordion {
  margin-top: 30px;
}

.faq-item {
  background: #2b2b2b;
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 4px 4px 15px #0d0d0d, -4px -4px 15px #333;
  transition: all 0.3s ease;
}

.faq-toggle {
  display: none;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: inherit;
}

.faq-question:hover {
  background: linear-gradient(145deg, #333, #2a2a2a);
}

.faq-question h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  color: #00ffcc;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-toggle:checked + .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-toggle:checked + .faq-question + .faq-answer {
  max-height: 1000px;
  padding-bottom: 25px;
}

.faq-toggle:checked ~ .faq-item {
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 25px;
}

.faq-answer-content {
  color: #bbb;
  line-height: 1.7;
  font-size: 1rem;
  padding-top: 0;
}

.faq-answer-content code {
  background: #1a1a1a;
  padding: 2px 6px;
  border-radius: 4px;
  color: #00ffcc;
  font-family: 'Courier New', monospace;
}

.faq-answer-content a {
  color: #00ffcc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.faq-answer-content a:hover {
  color: #00b38f;
  text-decoration: underline;
}

/* Category filtering with CSS */
#all:checked ~ .faq-accordion .faq-item {
  display: block;
}

#gameplay:checked ~ .faq-accordion .faq-item:not(.gameplay) {
  display: none;
}

#deposits:checked ~ .faq-accordion .faq-item:not(.deposits) {
  display: none;
}

#withdrawals:checked ~ .faq-accordion .faq-item:not(.withdrawals) {
  display: none;
}

#account:checked ~ .faq-accordion .faq-item:not(.account) {
  display: none;
}

.contact-section {
  background: linear-gradient(145deg, #00ffcc20, #00ffcc10);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
  border: 1px solid #00ffcc30;
}

.contact-section h2 {
  color: #00ffcc;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.contact-section p {
  color: #bbb;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(145deg, #00ccaa, #00997a);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 15px #0d0d0d;
}

.contact-btn:hover {
  background: linear-gradient(145deg, #00ffcc, #00b38f);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(145deg, #00ffcc, #00d4aa);
  color: #000;
  border: none;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(0, 255, 204, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
        font-weight: 700;
        z-index: 1000;
        overflow: hidden;
}

.back-to-top:hover {
  background: linear-gradient(145deg, #00ffcc, #00b38f);
  box-shadow: 0 12px 32px rgba(0, 255, 204, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-2px) scale(1.05);
  color: #fff;
  text-decoration: none;
}

/* Terms of Service Specific Styles */
.terms-content {
  margin-top: 30px;
}

.terms-section {
  background: linear-gradient(145deg, #2b2b2b, #1f1f1f);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 25px;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.terms-section:hover {
  border-color: #00ffcc30;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.1);
}

.terms-section-title {
  color: #cfd1d1;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #333;
}

.terms-section-content {
  color: #bbb;
  line-height: 1.7;
  font-size: 1rem;
}

.terms-list {
  padding-left: 20px;
  margin: 0;
}

.terms-list li {
  margin-bottom: 15px;
  line-height: 1.7;
}

.terms-sublist {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
}

.terms-sublist li {
  margin-bottom: 8px;
  list-style-type: disc;
  color: #999;
}

.terms-paragraph {
  margin-bottom: 15px;
  line-height: 1.7;
}

.terms-contact-list {
  list-style: none;
  padding-left: 0;
}

.terms-contact-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.terms-contact-list li::before {
  content: '•';
  color: #00ffcc;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.terms-link {
  color: #00ffcc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: #00b38f;
  text-decoration: underline;
}

/* Modern User Stats Page Styles */
.modern-user-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 40px;
  background: #1a1a1a;
  border-radius: 20px;
  box-shadow: 10px 10px 30px #0d0d0d, -10px -10px 30px #2a2a2a;
  position: relative;
}

/* Modern Profile Header - Compact */
.modern-profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
  border-radius: 24px;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(20px);
        margin-top: 40px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.2),
          0 0 0 1px rgba(0, 255, 204, 0.1);
        transform: translateZ(0);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
}

.profile-left {
  display: flex;
  align-items: center;
  gap: 20px;
}


.avatar-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
        flex: 1;
}

.modern-username {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-meta {
  display: flex;
  gap: 15px;
  align-items: center;
}

.status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  background: linear-gradient(145deg, #2ecc71, #27ae60);
  color: #fff;
}

.status-badge.hustler-since {
  background: linear-gradient(145deg, #00ccaa, #00997a);
  color: #fff;
}

.rank-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  background: linear-gradient(145deg, #f39c12, #e67e22);
  color: #fff;
}

.profile-badges {
  display: flex;
  gap: 8px;
}

.badge {
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge.verified {
  background: linear-gradient(145deg, #2ecc71, #27ae60);
  color: #fff;
}

.badge.vip {
  background: linear-gradient(145deg, #f39c12, #e67e22);
  color: #fff;
}

.profile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
        text-align: right;
}

.joined-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-align: right;
  line-height: 1.3;
  margin-top: 8px;
}

.modern-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 2px 8px #0d0d0d;
        border: 1px solid transparent;
        position: relative;
        overflow: hidden;
}

.modern-btn.primary {
  background: linear-gradient(145deg, #00a594, #00d4aa);
  color: #000;
       
}

.modern-btn.primary:hover {
  background: linear-gradient(145deg, #00ffcc, #00b38f);
  box-shadow: 0 6px 16px rgba(0, 255, 204, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.modern-btn.secondary {
  background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
  color: #fff;
  border: 1px solid #444;
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.modern-btn.secondary:hover {
  background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.15),
          rgba(255, 255, 255, 0.1)
        );
  color: #fff;
  border-color: #00ffcc;
  transform: translateY(-2px);
  text-decoration: none;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Account Navigation Tabs */
.account-nav-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow-x: auto;
        justify-content: center;
        backdrop-filter: blur(20px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
        scrollbar-width: none;
        -ms-overflow-style: none;
}

.nav-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  min-width: fit-content;
        position: relative;
        overflow: hidden;
        background: transparent;
        border: 1px solid transparent;
}

.nav-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-tab.active {
  background: linear-gradient(145deg, #00a594, #00d4aa);
  color: #000;
  box-shadow: 0 8px 24px rgba(0, 255, 204, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
        font-weight: 600;
        border-color: rgba(0, 255, 204, 0.3);
}

.nav-tab-icon {
  font-size: 1rem;
}

.nav-tab-text {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Dashboard Grid Layout */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
        margin-top: 32px;
}

/* Stats Column */
.stats-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats-section {
  background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        transform: translateZ(0);
}

.section-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
}

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

/* New single row grid for performance overview */
.stats-cards-grid-single-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.modern-stat-card {
  background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02)
        );
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 15px;
        text-align: center;
        position: relative;
        overflow: hidden;
}

.modern-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.modern-stat-card.primary {
  border-color: rgba(0, 255, 204, 0.3);
  background: linear-gradient(
          145deg,
          rgba(0, 255, 204, 0.1),
          rgba(0, 255, 204, 0.05)
        );
}

.modern-stat-card.success {
  border-color: rgba(34, 197, 94, 0.3);
  background: linear-gradient(
          145deg,
          rgba(34, 197, 94, 0.1),
          rgba(34, 197, 94, 0.05)
        );
}

.modern-stat-card.profit {
  border-color: rgba(251, 191, 36, 0.3);
  background: linear-gradient(
          145deg,
          rgba(251, 191, 36, 0.1),
          rgba(251, 191, 36, 0.05)
        );
}

.modern-stat-card.highlight {
  border-color: rgba(139, 92, 246, 0.3);
  background: linear-gradient(
          145deg,
          rgba(139, 92, 246, 0.1),
          rgba(139, 92, 246, 0.05)
        );
}

.modern-stat-card.highlight1 {
  border-color: rgba(0, 255, 204, 0.3);
    background: linear-gradient(145deg, rgba(0, 255, 204, 0.1), rgba(0, 255, 204, 0.05));
}

.stat-icon {
  font-size: 2rem;
  opacity: 0.8;
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
        display: flex;
        flex-direction: column;
        gap: 8px;
}

.stat-value {
  color: #00ffcc;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.2;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
}

/* Balance Card Styles */
.balance-card {
  background: linear-gradient(
          145deg,
          rgba(0, 255, 204, 0.1),
          rgba(0, 212, 170, 0.05)
        );
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 204, 0.3);
  box-shadow: 0 12px 32px rgba(0, 255, 204, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        text-align: center;
        position: relative;
        overflow: hidden;
}

.balance-main {
  text-align: center;
  margin-bottom: 20px;
}

.balance-crypto {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.balance-amount {
  color: #00ffcc;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
        text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}

.balance-currency {
  color: #00ffcc;
  font-size: 2rem;
  font-weight: 700;
}

.balance-fiat {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
}

.balance-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.balance-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 2px 8px #0d0d0d;
  flex: 1;
  justify-content: center;
        position: relative;
        overflow: hidden;
        border: 1px solid transparent;
}

.balance-btn.primary {
  background: linear-gradient(145deg, #00a594, #00d4aa);
  color: #000;
       
}

.balance-btn.primary:hover {
  background: linear-gradient(145deg, #00ffcc, #00b38f);
  box-shadow: 0 12px 32px rgba(0, 255, 204, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.balance-btn.secondary {
  background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
  color: #fff;
  border: 1px solid #444;
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.balance-btn.secondary:hover {
  background: linear-gradient(145deg, #333, #2a2a2a);
  color: #fff;
  border-color: #00ffcc;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Deposit Card Styles */
.deposit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.qr-section {
  display: flex;
  justify-content: center;
}

.qr-code {
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.9);
        transform: translateZ(0);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        max-width: 200px;
        height: auto;
        margin: 0 auto;
}

.qr-image {
  display: block;
  border-radius: 8px;
        width: 150px;
        height: 150px;
}

.address-section {
  flex: 1;
}

.address-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.address-container {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.address-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 14px;
  word-break: break-all;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.address-input:focus {
  outline: none;
  border-color: #00ffcc;
  box-shadow: 0 0 5px rgba(0, 255, 204, 0.3);
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: linear-gradient(145deg, #00a594, #00d4aa);
  color: #000;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
       
}

.copy-btn:hover {
  background: linear-gradient(145deg, #00ffcc, #00b38f);
  box-shadow: 0 6px 16px rgba(0, 255, 204, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.deposit-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: linear-gradient(145deg, #333, #2a2a2a);
  border-radius: 8px;
  border: 1px solid #444;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
}

.info-icon {
  font-size: 16px;
  flex-shrink: 0;
        width: 20px;
        height: 20px;
        object-fit: contain;
}

.info-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
}

/* Account Statistics Grid */
.account-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.account-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02)
        );
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.account-stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
}

.account-stat-item.highlight {
  border-color: rgba(0, 255, 204, 0.3);
  background: linear-gradient(
          145deg,
          rgba(0, 255, 204, 0.1),
          rgba(0, 255, 204, 0.05)
        );
}

/* Quick Actions Grid */
.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quick-action-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02)
        );
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.quick-action-item:hover {
  border-color: #00ffcc;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
}

.action-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.action-content {
  flex: 1;
}

.action-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 14px;
        margin: 0 0 8px 0;
        display: flex;
        align-items: center;
        gap: 8px;
}

.action-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.3;
}

/* Security Status */
.security-status {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: linear-gradient(145deg, #333, #2a2a2a);
  border-radius: 10px;
  border: 1px solid transparent;
}

.security-item.verified {
  border-color: #2ecc71;
  background: linear-gradient(145deg, #2ecc7115, #2ecc7108);
}

.security-item.warning {
  border-color: #f39c12;
  background: linear-gradient(145deg, #f39c1215, #f39c1208);
}

.security-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.security-content {
  flex: 1;
}

.security-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.security-desc {
  color: #bbb;
  font-size: 0.8rem;
  line-height: 1.3;
}

.security-link {
  color: #00ffcc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.security-link:hover {
  color: #00b38f;
  text-decoration: underline;
}

/* Transactions Table */
.transactions-table {
  background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02)
        );
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.transaction-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
}

.transaction-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transaction-row:last-child {
  border-bottom: none;
}

.transaction-row:hover {
  background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02)
        );
}

.transaction-type {
  display: flex;
  align-items: center;
  gap: 8px;
}

.type-icon {
  font-size: 16px;
}

.type-text {
  font-weight: 500;
  color: #fff;
        font-size: 14px;
}

.td-amount {
  font-family: 'Monaco', 'Menlo', monospace;
  font-weight: 600;
  color: #fff;
        font-size: 14px;
}

.status-badge {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        flex-shrink: 0;
}

.status-badge.confirmed {
  background: linear-gradient(
          145deg,
          rgba(34, 197, 94, 0.2),
          rgba(34, 197, 94, 0.1)
        );
  color: #22c55e;
        border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.pending {
  background: linear-gradient(145deg, #f39c12, #e67e22);
  color: #fff;
}

.td-date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.view-all-transactions {
  text-align: center;
  margin-top: 20px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.2);
}

.view-all-btn:hover {
  background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.15),
          rgba(255, 255, 255, 0.1)
        );
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

/* Metrics Section */
.metrics-section {
  background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
}

.subsection-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.metrics-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric-item {
  background: linear-gradient(145deg, #333, #2a2a2a);
  padding: 15px;
  border-radius: 10px;
        display: flex;
        flex-direction: column;
        gap: 8px;
}

.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.metric-name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
        font-weight: 600;
}

.metric-value {
  color: #00ffcc;
  font-weight: 700;
  font-size: 14px;
}

.metric-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ffcc, #00d4aa);
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* Activity Column */
.activity-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.activity-section-modern {
  background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
}

.section-header-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.view-all-link {
  color: #00ffcc;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.view-all-link:hover {
  color: #00b38f;
  text-decoration: underline;
}

.activity-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.activity-item-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
}

.activity-item-modern:hover {
  transform: translateX(5px);
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.1);
        background: rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.2);
}

.activity-icon-modern {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.activity-item-modern.win .activity-icon-modern {
  background: linear-gradient(145deg, #2ecc71, #27ae60);
}

.activity-item-modern.loss .activity-icon-modern {
  background: linear-gradient(145deg, #e74c3c, #c0392b);
}

.activity-item-modern.bonus .activity-icon-modern {
  background: linear-gradient(145deg, #f39c12, #e67e22);
}

.activity-content {
  flex: 1;
}

.activity-title-modern {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.activity-details-modern {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
        font-family: 'Monaco', 'Menlo', monospace;
}

.activity-time-modern {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  flex-shrink: 0;
}

/* Achievements Section Modern */
.achievements-section-modern {
  background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
}

.achievement-count {
  color: #00ffcc;
  font-size: 12px;
  font-weight: 600;
}

.achievements-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.achievements-with-descriptions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* New 2x3 Grid for Achievements */
.achievements-grid-2x3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: linear-gradient(145deg, #333, #2a2a2a);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-item-detailed {
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
}

.achievement-item.earned,
.achievement-item-detailed.earned {
 border-color: rgba(0, 255, 204, 0.3);
    background: linear-gradient(145deg, rgba(0, 255, 204, 0.1), rgba(0, 255, 204, 0.05));
}

.achievement-item.locked,
.achievement-item-detailed.locked {
  opacity: 0.6;
        background: linear-gradient(
          145deg,
          rgba(107, 114, 128, 0.1),
          rgba(107, 114, 128, 0.05)
        );
        border-color: rgba(107, 114, 128, 0.3);
}

.achievement-item:hover,
.achievement-item-detailed:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.1);
        background: rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.2);
}

.achievement-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.achievement-icon-small {
  font-size: 16px;
  flex-shrink: 0;
}

.achievement-name {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.achievement-item.locked .achievement-name,
.achievement-item-detailed.locked .achievement-name {
  color: #888;
}

.achievement-description {
  color: #bbb;
  font-size: 0.75rem;
  line-height: 1.3;
  margin-left: 28px;
}

.achievement-item-detailed.locked .achievement-description {
  color: #666;
}

/* Bottom Navigation */
.bottom-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 15px;
  background: linear-gradient(145deg, #2b2b2b, #1f1f1f);
  border: 1px solid #333;
  border-radius: 12px;
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-item:hover {
  border-color: #00ffcc;
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
  transform: translateY(-3px);
  text-decoration: none;
}

.nav-icon {
  font-size: 1.5rem;
}

.nav-text {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Performance Overview using nav-item styling */
.stats-cards-grid-single-row .nav-item {
  padding: 15px;
  text-align: center;
}

.stats-cards-grid-single-row .nav-item .nav-text {
  color: #00ffcc;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stats-cards-grid-single-row .nav-item small {
  color: #bbb;
  font-size: 0.8rem;
  display: block;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .modern-user-container {
    max-width: 100%;
    padding: 15px;
  }

  .stats-cards-grid-single-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievements-grid-2x3 {
    grid-template-columns: 1fr;
  }

  .account-nav-tabs {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .account-nav-tabs::-webkit-scrollbar {
    display: none;
  }

  .deposit-card {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .account-stats-grid {
    grid-template-columns: 1fr;
  }

  .quick-actions-grid {
    grid-template-columns: 1fr;
  }

  .transaction-header,
  .transaction-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .transaction-header {
    display: none;
  }

  .transaction-row {
    padding: 15px;
    background: linear-gradient(145deg, #333, #2a2a2a);
    border-radius: 10px;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .modern-profile-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 20px;
  }

  .profile-left {
    flex-direction: column;
    gap: 15px;
  }

  .profile-actions {
    align-items: center;
  }

  .joined-date {
    text-align: center;
  }

  .stats-cards-grid,
  .stats-cards-grid-single-row {
    grid-template-columns: 1fr;
  }

  .achievements-compact {
    grid-template-columns: 1fr;
  }

  .bottom-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievements-grid-2x3 {
    grid-template-columns: 1fr;
  }

  /* Terms of Service Mobile */
  .terms-section {
    padding: 20px;
  }

  .terms-section-title {
    font-size: 1.3rem;
  }

  .terms-list {
    padding-left: 15px;
  }

  .terms-sublist {
    padding-left: 15px;
  }

  .account-nav-tabs {
    gap: 4px;
    padding: 6px;
  }

  .nav-tab {
    padding: 10px 12px;
  }

  .nav-tab-text {
    font-size: 0.8rem;
  }

  .balance-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .modern-user-container {
    padding: 10px;
    border-radius: 15px;
  }

  .modern-profile-header {
    padding: 15px;
  }

  .modern-username {
    font-size: 1.5rem;
  }

  .stats-section,
  .metrics-section,
  .activity-section-modern,
  .achievements-section-modern {
    padding: 20px 15px;
  }

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

  .bottom-nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nav-item {
    padding: 15px;
  }

  /* Terms of Service Mobile */
  .faq-container {
    padding: 25px 15px;
  }

  .terms-section {
    padding: 15px;
  }

  .terms-section-title {
    font-size: 1.2rem;
  }

  .terms-section-content {
    font-size: 0.9rem;
  }

  .account-nav-tabs {
    flex-wrap: wrap;
    gap: 6px;
  }

  .nav-tab {
    flex: 1;
    min-width: calc(50% - 3px);
  }

  .balance-amount {
    font-size: 2rem;
  }

  .balance-currency {
    font-size: 1.5rem;
  }

  .address-container {
    flex-direction: column;
  }

  .copy-btn {
    justify-content: center;
  }
}

/* User Stats Page Styles */
.user-stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #1a1a1a;
  border-radius: 20px;
  box-shadow: 10px 10px 30px #0d0d0d, -10px -10px 30px #2a2a2a;
  position: relative;
}

/* User Profile Header */
.user-profile-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(145deg, #2b2b2b, #1f1f1f);
  border-radius: 20px;
  border: 2px solid #333;
}

.user-avatar {
  flex-shrink: 0;
}

.avatar-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(145deg, #00ccaa, #00997a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
}

.avatar-icon {
  font-size: 2.5rem;
  color: #fff;
}

.user-info {
  flex: 1;
}

.username {
  color: #00ffcc;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #00ffcc;
}

.user-status {
  color: #bbb;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.user-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
}

.badge.verified {
  background: linear-gradient(
          145deg,
          rgba(34, 197, 94, 0.2),
          rgba(34, 197, 94, 0.1)
        );
  color: #22c55e;
        border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge.vip {
  background: linear-gradient(
          145deg,
          rgba(251, 191, 36, 0.2),
          rgba(251, 191, 36, 0.1)
        );
  color: #fbbf24;
        border: 1px solid rgba(251, 191, 36, 0.3);
}

.user-actions {
  flex-shrink: 0;
}

.user-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 15px #0d0d0d;
}

.user-btn.primary {
  background: linear-gradient(145deg, #00ccaa, #00997a);
  color: #fff;
}

.user-btn.primary:hover {
  background: linear-gradient(145deg, #00ffcc, #00b38f);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.btn-icon {
  font-size: 18px;
}

/* User Stats Grid */
.user-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.user-stat-card {
  background: linear-gradient(145deg, #2b2b2b, #1f1f1f);
  padding: 25px;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.user-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(0, 255, 204, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.user-stat-card:hover::before {
  opacity: 1;
}

.user-stat-card:hover {
  border-color: #00ffcc;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
  transform: translateY(-5px);
}

.user-stat-card.highlight {
  border-color: #00ffcc;
  background: linear-gradient(145deg, #00ffcc15, #00ffcc08);
}

.user-stat-card.success {
  border-color: #2ecc71;
  background: linear-gradient(145deg, #2ecc7115, #2ecc7108);
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
        gap: 8px;
}

.stat-header h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.stat-icon {
  font-size: 20px;
  opacity: 0.8;
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 2px;
        font-size: 16px;
        font-weight: 700;
        color: #fff;
}

.stat-number {
  color: #00ffcc;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.stat-currency {
  color: #f39c12;
  font-size: 1.5rem;
  font-weight: 600;
}

.stat-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.4;
}

.rank-link {
  color: #00ffcc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.rank-link:hover {
  color: #00b38f;
  text-decoration: underline;
}

.profit-percentage {
  color: #2ecc71;
  font-weight: 600;
}

/* Performance Section */
.performance-section {
  margin-bottom: 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header h2 {
  color: #00ffcc;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  color: #bbb;
  font-size: 1.1rem;
}

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

.performance-card {
  background: linear-gradient(145deg, #2b2b2b, #1f1f1f);
  padding: 20px;
  border-radius: 15px;
  border: 2px solid #333;
  transition: all 0.3s ease;
}

.performance-card:hover {
  border-color: #00ffcc;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
  transform: translateY(-3px);
}

.performance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.performance-header h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.performance-icon {
  font-size: 1.3rem;
  opacity: 0.8;
}

.performance-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 15px;
}

.performance-number {
  color: #00ffcc;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.performance-currency {
  color: #f39c12;
  font-size: 1.2rem;
  font-weight: 600;
}

.performance-bar {
  width: 100%;
  height: 8px;
  background: #333;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.performance-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ccaa, #00ffcc);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.performance-description {
  color: #bbb;
  font-size: 0.85rem;
}

/* Activity Section */
.activity-section {
  margin-bottom: 40px;
}

.activity-list {
  background: linear-gradient(145deg, #2b2b2b, #1f1f1f);
  border-radius: 15px;
  padding: 20px;
  border: 2px solid #333;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #333;
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.activity-item.win .activity-icon {
  background: linear-gradient(145deg, #2ecc71, #27ae60);
}

.activity-item.loss .activity-icon {
  background: linear-gradient(145deg, #e74c3c, #c0392b);
}

.activity-item.bonus .activity-icon {
  background: linear-gradient(145deg, #f39c12, #e67e22);
}

.activity-details {
  flex: 1;
}

.activity-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}

.activity-description {
  color: #bbb;
  font-size: 0.9rem;
}

.activity-time {
  color: #888;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.activity-actions {
  text-align: center;
  margin-top: 20px;
}

.activity-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(145deg, #00ccaa, #00997a);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 15px #0d0d0d;
}

.activity-btn:hover {
  background: linear-gradient(145deg, #00ffcc, #00b38f);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

/* Achievements Section */
.achievements-section {
        display: flex;
        flex-direction: column;
        gap: 16px;
}

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

.achievement-card {
  background: linear-gradient(145deg, #2b2b2b, #1f1f1f);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #333;
  transition: all 0.3s ease;
}

.achievement-card.earned {
  border-color: #2ecc71;
  background: linear-gradient(145deg, #2ecc7115, #2ecc7108);
}

.achievement-card.locked {
  opacity: 0.6;
}

.achievement-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
}

.achievement-icon {
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
        width: 32px;
        height: 32px;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
}

.achievement-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 14px;
}

.achievement-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.achievement-status {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.achievement-card.earned .achievement-status {
  background: linear-gradient(145deg, #2ecc71, #27ae60);
  color: #fff;
}

.achievement-card.locked .achievement-status {
  background: linear-gradient(145deg, #666, #555);
  color: #bbb;
}

/* Navigation Section */
.navigation-section {
  margin-top: 40px;
}

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

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: linear-gradient(145deg, #2b2b2b, #1f1f1f);
  border: 2px solid #333;
  border-radius: 12px;
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link:hover {
  border-color: #00ffcc;
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
  transform: translateY(-2px);
  text-decoration: none;
}

.nav-icon {
  font-size: 1.3rem;
}

.nav-text {
  font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  body {
    padding: 15px;
  }

  .login-container {
    padding: 25px 20px;
    border-radius: 16px;
    gap: 14px;
  }

  .login-container h2 {
    margin-bottom: 12px;
    font-size: 1.5rem;
  }

  .input-group input {
    padding: 11px 9px;
    border-radius: 8px;
    min-height: 40px;
  }

  .login-btn {
    padding: 11px 9px;
    border-radius: 8px;
    min-height: 40px;
  }

  .recaptcha-container {
    padding: 6px;
  }

  .recaptcha-container .g-recaptcha {
    transform: scale(0.75);
  }

  .checkbox-label {
    font-size: 11px;
  }

  /* User Stats Mobile */
  .user-stats-container {
    padding: 30px 15px;
    border-radius: 15px;
  }

  .user-profile-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 25px 20px;
  }

  .username {
    font-size: 2rem;
  }

  .user-stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .performance-grid {
    grid-template-columns: 1fr;
  }

  .achievements-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .nav-links {
    grid-template-columns: 1fr;
  }

  /* Stats Page Mobile */
  .stats-container {
    padding: 30px 15px;
    border-radius: 15px;
  }

  .stats-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .stats-globe {
    font-size: 3rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stats-card {
    padding: 20px;
  }

  .stats-number {
    font-size: 1.5rem;
  }

  .stats-currency {
    font-size: 1.2rem;
  }

  .investment-section {
    padding: 25px 20px;
  }

  .investment-content h2 {
    font-size: 1.5rem;
  }

  .transparency-note {
    padding: 20px;
  }

  /* 404 Page Mobile */
  .error-container {
    padding: 40px 30px;
    border-radius: 20px;
  }

  .error-actions {
    flex-direction: column;
    gap: 12px;
  }

  .error-btn {
    min-width: 180px;
    padding: 12px 25px;
  }

  .breadcrumb {
    top: 20px;
    left: 20px;
    font-size: 0.8rem;
  }

  /* FAQ Mobile */
  .faq-container {
    padding: 30px 15px;
    border-radius: 15px;
  }

  .faq-header h1 {
    font-size: 2rem;
  }

  .faq-categories {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 1rem;
    padding-right: 15px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-answer-content {
    font-size: 0.95rem;
  }

  .contact-section {
    padding: 25px 20px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
        .support-container {
          padding: 8px;
        }

        .header-top {
          flex-wrap: wrap;
          gap: 8px;
        }

        .ticket-meta {
          flex-direction: column;
          align-items: flex-start;
          gap: 4px;
        }

        .message-bubble {
          max-width: 95%;
          padding: 8px 10px;
        }

        .form-group {
          flex-direction: column;
          align-items: stretch;
        }

        .send-btn {
          align-self: flex-end;
          min-width: 100px;
        }
}

/* Very small screens */
@media (max-width: 320px) {
  .login-container {
    padding: 20px 15px;
    gap: 12px;
  }

  .input-group input,
  .login-btn {
    padding: 10px 8px;
    min-height: 38px;
  }

  .recaptcha-container .g-recaptcha {
    transform: scale(0.7);
  }

  /* User Stats Very Small */
  .user-stats-container {
    padding: 25px 10px;
  }

  .user-profile-header {
    padding: 20px 15px;
  }

  .username {
    font-size: 1.8rem;
  }

  .user-stat-card {
    padding: 15px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .performance-card {
    padding: 15px;
  }

  .achievement-card {
    padding: 15px;
  }

  /* Stats Page Very Small */
  .stats-container {
    padding: 25px 10px;
  }

  .stats-card {
    padding: 15px;
  }

  .stats-number {
    font-size: 1.3rem;
  }

  .investment-section {
    padding: 20px 15px;
  }

  /* 404 Page Very Small */
  .error-container {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .error-message {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .error-btn {
    min-width: 160px;
    padding: 11px 20px;
    font-size: 0.95rem;
  }

  /* FAQ Very Small */
  .faq-container {
    padding: 25px 10px;
  }

  .category-card {
    padding: 15px;
  }

  .faq-question {
    padding: 12px 15px;
  }

  .faq-answer {
    padding: 0 15px;
  }

  /* Terms Very Small */
  .terms-section {
    padding: 12px;
  }

  .terms-section-title {
    font-size: 1.1rem;
  }

  .terms-section-content {
    font-size: 0.85rem;
  }
}

/* Landscape mobile orientation */
@media (max-height: 600px) and (orientation: landscape) {
  body {
    padding: 10px;
  }

  .login-container {
    padding: 20px;
    gap: 12px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .login-container h2 {
    margin-bottom: 8px;
    font-size: 1.4rem;
  }

  .input-group {
    margin-bottom: 0;
  }

  .input-group label {
    margin-bottom: 4px;
  }

  .recaptcha-container {
    margin: 6px 0;
    padding: 6px;
  }

  .recaptcha-container .g-recaptcha {
    transform: scale(0.75);
  }
}

/* Very short screens - extra compact */
@media (max-height: 500px) {
  .login-container {
    padding: 15px;
    gap: 10px;
  }

  .login-container h2 {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }

  .input-group input,
  .login-btn {
    min-height: 36px;
    padding: 9px 8px;
  }

  .checkbox-label {
    font-size: 11px;
    margin: 3px 0;
  }

  .recaptcha-container .g-recaptcha {
    transform: scale(0.7);
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .input-group input:focus {
    transform: none;
  }

  .login-btn:hover {
    transform: none;
  }

  .login-btn:active:not(:disabled) {
    transform: scale(0.98);
  }
}

/* Tablet Responsiveness */
@media (max-width: 768px) {
  .faq-container {
    padding: 30px 15px;
    border-radius: 15px;
  }

  .faq-header h1 {
    font-size: 2rem;
  }

  .faq-categories {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 1rem;
    padding-right: 15px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-answer-content {
    font-size: 0.95rem;
  }

  .contact-section {
    padding: 25px 20px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  /* User Stats Tablet */
  .user-stats-container {
    padding: 30px 15px;
  }

  .user-profile-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .user-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .performance-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

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

  /* Stats Page Tablet */
  .stats-container {
    padding: 30px 15px;
  }

  .stats-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .investment-section {
    padding: 25px 20px;
  }

  /* 404 Page Tablet */
  .error-container {
    padding: 40px 30px;
    border-radius: 20px;
  }

  .error-actions {
    flex-direction: column;
    gap: 12px;
  }

  .error-btn {
    min-width: 180px;
    padding: 12px 25px;
  }

  .breadcrumb {
    top: 20px;
    left: 20px;
    font-size: 0.8rem;
  }

  /* Terms Tablet */
  .terms-section {
    padding: 25px 20px;
  }

  .terms-section-title {
    font-size: 1.4rem;
  }
        .modern-user-container {
          padding: 0 16px 40px;
        }

        .modern-profile-header {
          padding: 20px;
          flex-direction: column;
          align-items: stretch;
          text-align: center;
        }

        .profile-left {
          flex-direction: column;
          text-align: center;
          gap: 16px;
          justify-content: center;
        }

        .profile-actions {
          text-align: center;
          align-items: center;
        }

        .withdrawal-form-section {
          padding: 20px;
        }

        .table-header,
        .table-row {
          grid-template-columns: 60px 1fr 80px;
          gap: 8px;
        }

        .table-header .hide-mobile,
        .table-row .hide-mobile {
          display: none;
        }

        .hero-title {
          font-size: 24px;
        }

        .avatar-img {
          width: 80px;
          height: 80px;
        }

        .stats-cards-grid-single-row {
          grid-template-columns: 1fr;
        }

        .achievements-grid-2x3 {
          grid-template-columns: 1fr;
        }

        .transfer-form-section {
          padding: 20px;
        }
        .support-container {
          padding: 12px;
          min-height: 100vh;
        }

        .support-header {
          padding: 12px;
          margin-bottom: 12px;
        }

        .ticket-title {
          font-size: 16px;
          margin-bottom: 6px;
        }

        .ticket-meta {
          font-size: 11px;
          gap: 8px;
        }

        .back-btn,
        .close-ticket-btn {
          padding: 6px 10px;
          font-size: 12px;
        }

        .message-bubble {
          max-width: 90%;
          padding: 10px 12px;
          font-size: 13px;
        }

        .message-header {
          font-size: 10px;
          margin-bottom: 4px;
        }

        .message-content {
          font-size: 13px;
          line-height: 1.3;
        }

        .messages-area {
          padding: 12px;
          gap: 8px;
          min-height: 250px;
        }

        .reply-form {
          padding: 12px;
        }

        .form-group {
          gap: 6px;
        }

        .message-input {
          padding: 10px 12px;
          font-size: 13px;
          min-height: 40px;
        }

        .send-btn {
          padding: 10px 12px;
          font-size: 12px;
          min-width: 70px;
        }

        .char-counter {
          font-size: 10px;
        }

        .empty-messages {
          padding: 30px 15px;
          min-height: 150px;
        }

        .empty-icon {
          font-size: 28px;
          margin-bottom: 8px;
        }

        .empty-text {
          font-size: 13px;
        }

        .empty-subtext {
          font-size: 11px;
        }

        .ticket-closed-message {
          padding: 12px;
          margin: 8px 12px;
        }

        .ticket-closed-message h3 {
          font-size: 14px;
        }

        .ticket-closed-message p {
          font-size: 12px;
        }

        .balance-amount {
          font-size: 24px;
        }

        .balance-currency {
          font-size: 24px;
        }

        .transaction-header,
        .transaction-row {
          grid-template-columns: 1fr 1fr;
          gap: 8px;
        }

        .transaction-header .th-status,
        .transaction-header .th-date,
        .transaction-row .td-status,
        .transaction-row .td-date {
          display: none;
        }

        .referral-link-container {
          flex-direction: column;
        }

        .modern-username {
          font-size: 24px;
        }

        .contact-methods {
          grid-template-columns: 1fr;
        }

        .contact-form-section,
        .support-tickets-section,
        .quick-links-section {
          padding: 24px;
        }

        .hide-mobile {
          display: none;
        }

        .quick-links-grid {
          grid-template-columns: 1fr;
        }

        .security-section {
          padding: 20px;
        }

        .security-two-column {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .investment-stats-grid {
          grid-template-columns: 1fr;
        }

        .how-it-works-grid {
          grid-template-columns: 1fr;
        }

        .benefits-grid {
          grid-template-columns: 1fr;
        }
        .game-container {
          padding: 0 16px 40px;
        }

        .game-header-card {
          padding: 20px;
        }

        .game-title {
          font-size: 24px;
        }

        .game-multiplier {
          font-size: 36px;
        }

        .game-icon {
          width: 100px;
          height: 100px;
        }

        .game-icon img {
          width: 60px;
          height: 60px;
        }

        .players-table {
          font-size: 14px;
        }

        .players-table th,
        .players-table td {
          padding: 12px 16px;
        }

        .action-buttons {
          flex-direction: column;
          align-items: center;
        }

        .social-share {
          grid-template-columns: 1fr;
        }

        .faucet-image-container {
          height: 100px;
        }

        .faucet-image {
          width: 60px;
          height: 60px;
        }

        /* Mobile fix for crypto-columns-grid */
        .crypto-columns-grid {
          margin: 16px -20px 0 -20px; /* Adjust for mobile padding */
        }
}

/* Print styles */
@media print {
  .category-card,
  .contact-section,
  .back-to-top {
    display: none;
  }

  .faq-item,
  .terms-section {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .faq-answer {
    max-height: none !important;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .error-code {
    animation: none;
  }

  .error-btn:hover {
    transform: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .error-container,
  .terms-section {
    border: 2px solid #00ffcc;
  }

  .error-btn.secondary {
    border-width: 2px;
  }
}

/* Profile Header - 3D Card */
.modern-profile-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.1),
          transparent
        );
        transition: left 0.5s;
      }
.modern-profile-header:hover::before {
        left: 100%;
      }
.modern-profile-header:hover {
        transform: translateY(-4px) translateZ(0);
        box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5),
          inset 0 1px 0 rgba(255, 255, 255, 0.3),
          0 0 0 1px rgba(0, 255, 204, 0.2);
      }
/* Avatar Image */
.avatar-img:hover {
        transform: translateY(-2px) scale(1.05);
      }
/* Navigation Tabs */
.account-nav-tabs::-webkit-scrollbar {
        display: none;
      }
.nav-tab::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.1),
          transparent
        );
        transition: left 0.3s;
      }
.nav-tab:hover::before {
        left: 100%;
      }
/* Section Titles */
.section-title::before {
        content: '';
        width: 4px;
        height: 20px;
        background: linear-gradient(135deg, #00ffcc, #00d4aa);
        border-radius: 2px;
        box-shadow: 0 0 8px rgba(0, 255, 204, 0.5);
      }
/* Modern Buttons */
.modern-btn:hover {
        transform: translateY(-1px);
      }
/* Profile Info */
/* Withdrawal Dashboard */
.withdrawal-dashboard {
        display: flex;
        flex-direction: column;
        gap: 24px; /* Reduced gap from 32px to 24px */
      }
/* Withdrawal Hero Section */
.withdrawal-hero {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 24px;
        padding: 32px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.withdrawal-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.withdrawal-hero:hover::before {
        opacity: 1;
      }
.withdrawal-hero:hover {
        transform: translateY(-4px) translateZ(0);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
.hero-content {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 32px;
        align-items: center;
      }
.hero-title {
        font-size: 32px;
        font-weight: 800;
        color: #fff;
        margin: 0 0 16px 0;
        display: flex;
        align-items: center;
        gap: 12px;
      }
.hero-icon {
        font-size: 36px;
      }
.hero-description {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin-bottom: 24px;
      }
.hero-benefits {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
.benefit-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
      }
.benefit-icon {
        font-size: 18px;
      }
.hero-visual {
        display: flex;
        justify-content: center;
      }
.withdrawal-icon {
        width: 120px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.withdrawal-icon img {
        width: 120px;
        height: 120px;
        object-fit: contain;
      }
.withdrawal-icon:hover {
        transform: translateY(-4px) scale(1.05);
      }
/* Withdrawal Form Section */
.withdrawal-form-section {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 24px;
        padding: 32px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.withdrawal-form-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.withdrawal-form-section:hover::before {
        opacity: 1;
      }
.withdrawal-form-section:hover {
        transform: translateY(-4px) translateZ(0);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
/* Info Alert */
.info-alert {
        background: linear-gradient(
          145deg,
          rgba(0, 255, 204, 0.1),
          rgba(0, 255, 204, 0.05)
        );
        border: 1px solid rgba(0, 255, 204, 0.3);
        border-radius: 16px;
        padding: 20px;
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 8px 24px rgba(0, 255, 204, 0.1);
      }
/* Withdrawal Form */
.withdrawal-form {
        display: flex;
        flex-direction: column;
        gap: 24px;
      }
.form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
.form-label {
        font-size: 14px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        display: flex;
        align-items: center;
        gap: 8px;
      }
.form-input {
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 16px 20px;
        color: #fff;
        font-size: 16px;
        transition: all 0.3s;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
        font-family: inherit;
      }
.form-input:focus {
        outline: none;
        border-color: #00ffcc;
        box-shadow: 0 0 0 2px rgba(0, 255, 204, 0.2),
          inset 0 2px 4px rgba(0, 0, 0, 0.3);
      }
.form-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
      }
.form-hint {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
      }
/* Withdrawal Preview */
.withdrawal-preview {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
      }
.preview-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
.preview-label {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
      }
.preview-value {
        font-size: 14px;
        font-weight: 600;
        color: #00ffcc;
        font-family: 'Monaco', 'Menlo', monospace;
      }
/* Submit Button */
.submit-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px 32px;
        border-radius: 12px;
        border: none;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: linear-gradient(145deg, #00a594, #00d4aa);
        color: #000;
        font-family: inherit;
      }
.submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(0, 255, 204, 0.4);
      }
.submit-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
      }
/* Withdrawal History Section */
.withdrawal-history-section {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.withdrawal-history-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.withdrawal-history-section:hover::before {
        opacity: 1;
      }
.withdrawal-history-section:hover {
        transform: translateY(-4px) translateZ(0);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
/* Withdrawal History Table */
.withdrawal-history-table {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02)
        );
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
      }
.table-header {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 100px;
        gap: 16px;
        padding: 16px 20px;
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 12px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
.table-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 100px;
        gap: 16px;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.table-row:hover {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.08),
          rgba(255, 255, 255, 0.04)
        );
        transform: translateX(4px);
      }
.table-row:last-child {
        border-bottom: none;
      }
.table-cell {
        font-size: 14px;
        color: #fff;
        display: flex;
        align-items: center;
      }
.amount-cell {
        font-family: 'Monaco', 'Menlo', monospace;
        font-weight: 600;
        color: #22c55e;
      }
.status-completed {
        color: #22c55e;
        font-weight: 600;
      }
.status-pending {
        color: #fbbf24;
        font-weight: 600;
      }
.address-cell {
        font-family: 'Monaco', 'Menlo', monospace;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
      }
.date-cell {
        color: rgba(255, 255, 255, 0.7);
        font-size: 13px;
      }
/* Empty State */
.empty-state {
        text-align: center;
        padding: 40px 20px;
        color: rgba(255, 255, 255, 0.6);
      }
.empty-icon {
        font-size: 48px;
        margin-bottom: 16px;
        opacity: 0.5;
      }
.empty-text {
        font-size: 16px;
        margin-bottom: 8px;
      }
.empty-subtext {
        font-size: 14px;
        opacity: 0.7;
      }
/* Back to Top Button */
/* Responsive Design */
@media (max-width: 600px) {
  .hide-on-small {
    display: none;
  }
}

@media (max-width: 1024px) {
        .hero-content {
          grid-template-columns: 1fr;
          text-align: center;
        }
        .dashboard-grid {
          grid-template-columns: 1fr;
          gap: 24px;
        }

        .stats-cards-grid-single-row {
          grid-template-columns: repeat(2, 1fr);
        }

        .deposit-card {
          grid-template-columns: 1fr;
          text-align: center;
        }

        .account-stats-grid,
        .quick-actions-grid,
        .achievements-grid {
          grid-template-columns: 1fr;
        }

        .referral-stats {
          grid-template-columns: 1fr;
        }
        .support-content-flex {
          flex-direction: column;
        }
        .security-two-column {
          grid-template-columns: 1fr;
          gap: 24px;
        }

        .investment-stats-grid {
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
        .game-header-content {
          grid-template-columns: 1fr;
          text-align: center;
          gap: 24px;
        }

        .game-meta {
          justify-content: center;
        }
        .main-content-grid {
          grid-template-columns: 1fr;
        }
      }
/* Modern 3D Account Dashboard Styles */
 .modern-avatar {
        width: 80px;
        height: 80px;
        position: relative;
        cursor: pointer;
        transform-style: preserve-3d;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .modern-avatar:hover {
        transform: rotateY(180deg) scale(1.1);
      }

      /* 3D Bitcoin Symbol Container for Avatar */
      .modern-avatar .bitcoin-symbol {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 38px;
        font-weight: 750;
        color: #000;
        background: linear-gradient(145deg, #00ffcc 0%, #00d4aa 50%, #4ecdc4 100%);
        border-radius: 16px;
        position: relative;
        overflow: hidden;
        transform-style: preserve-3d;
      }

      /* 3D Depth Effect for Avatar */
      .modern-avatar .bitcoin-symbol::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(145deg, #00b8a3, #009688);
        border-radius: 18px;
        z-index: -1;
        transform: translateZ(-4px);
      }

      /* Animated Glow Ring for Avatar */
      .modern-avatar .bitcoin-symbol::after {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        background: conic-gradient(
          from 0deg,
          transparent,
          rgba(0, 255, 204, 0.6),
          transparent,
          rgba(0, 255, 204, 0.6),
          transparent
        );
        border-radius: 20px;
        z-index: -2;
        animation: logoRotate 3s linear infinite;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .modern-avatar:hover .bitcoin-symbol::after {
        opacity: 1;
      }

      @keyframes logoRotate {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }

      /* Floating Particles Effect for Avatar */
      .modern-avatar .brand-logo-particles {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100px;
        height: 100px;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 10;
      }

      .modern-avatar .particle {
        position: absolute;
        width: 3px;
        height: 3px;
        background: #00ffcc;
        border-radius: 50%;
        opacity: 0;
        animation: particleFloat 2s ease-in-out infinite;
        z-index: 10;
      }

      .modern-avatar .particle:nth-child(1) {
        top: 10%;
        left: 20%;
        animation-delay: 0s;
      }

      .modern-avatar .particle:nth-child(2) {
        top: 20%;
        right: 15%;
        animation-delay: 0.3s;
      }

      .modern-avatar .particle:nth-child(3) {
        bottom: 20%;
        left: 15%;
        animation-delay: 0.6s;
      }

      .modern-avatar .particle:nth-child(4) {
        bottom: 10%;
        right: 20%;
        animation-delay: 0.9s;
      }

      @keyframes particleFloat {
        0%, 100% {
          opacity: 0;
          transform: translateY(0px) scale(0.5);
        }
        50% {
          opacity: 1;
          transform: translateY(-20px) scale(1);
        }
      }

      /* Enhanced Avatar Hover Effect */
      .modern-avatar:hover .brand-logo-particles .particle {
        animation-play-state: running;
      }

/* Breadcrumb Enhancement */
.breadcrumb::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.breadcrumb:hover::before {
        opacity: 1;
      }
.breadcrumb:hover {
        transform: translateY(-4px) translateZ(0);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
/* Main Container */
/* Stats Column */
.stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.stats-section:hover::before {
        opacity: 1;
      }
.stats-section:hover {
        transform: translateY(-4px) translateZ(0);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
/* Stats Cards Grid - Updated for 4 cards in 1 row */
.modern-stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        opacity: 0;
        transition: opacity 0.3s;
      }
.modern-stat-card:hover::before {
        opacity: 1;
      }
/* Metrics Section */
.metrics-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.metrics-section:hover::before {
        opacity: 1;
      }
.metrics-section:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
/* Activity Column */
/* Activity Section */
.activity-section-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.activity-section-modern:hover::before {
        opacity: 1;
      }
.activity-section-modern:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
.activity-item-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
       
        opacity: 0;
        transition: opacity 0.3s;
      }
.activity-item-modern:hover::before {
        opacity: 1;
      }
.activity-item-modern.win {
        border-left: 3px solid #22c55e;
      }
.activity-item-modern.loss {
        border-left: 3px solid #ef4444;
      }
/* Achievements Section */
.achievements-section-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.achievements-section-modern:hover::before {
        opacity: 1;
      }
.achievements-section-modern:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
.achievement-item-detailed::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        opacity: 0;
        transition: opacity 0.3s;
      }
.achievement-item-detailed:hover::before {
        opacity: 1;
      }
/* Back to Top Button */
.back-to-top::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.back-to-top:hover::before {
        opacity: 1;
      }

.transfer-dashboard {
        display: flex;
        flex-direction: column;
        gap: 32px;
      }
/* Transfer Form Section */
.transfer-form-section {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 24px;
        padding: 32px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.transfer-form-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.transfer-form-section:hover::before {
        opacity: 1;
      }
.transfer-form-section:hover {
        transform: translateY(-4px) translateZ(0);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
/* Warning Alert */
.warning-alert {
        background: linear-gradient(
          145deg,
          rgba(255, 193, 7, 0.1),
          rgba(255, 193, 7, 0.05)
        );
        border: 1px solid rgba(255, 193, 7, 0.3);
        border-radius: 16px;
        padding: 20px;
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 8px 24px rgba(255, 193, 7, 0.1);
      }
.warning-icon {
        font-size: 20px;
        color: #ffc107;
      }
.warning-text {
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px;
        line-height: 1.5;
      }
/* Transfer Form */
.transfer-form {
        display: flex;
        flex-direction: column;
        gap: 24px;
      }
/* Transfer Preview */
.transfer-preview {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
      }
/* Submit Button */
/* Transfer History Section */
.transfer-history-section {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.transfer-history-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.transfer-history-section:hover::before {
        opacity: 1;
      }
.transfer-history-section:hover {
        transform: translateY(-4px) translateZ(0);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
/* Transfer History Table */
.transfer-history-table {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02)
        );
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
      }
.amount-positive {
        color: #22c55e;
      }
.amount-negative {
        color: #ef4444;
      }

.support-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 16px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
      }
/* Header Section */
.support-header {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        padding: 16px;
        margin-bottom: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
      }
.header-content {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
.header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }
.back-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        flex-shrink: 0;
      }
.back-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.15),
          rgba(255, 255, 255, 0.1)
        );
      }
.close-ticket-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        background: linear-gradient(145deg, #ef4444, #dc2626);
        color: #fff;
        border: none;
        border-radius: 10px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
        font-family: inherit;
        flex-shrink: 0;
      }
.close-ticket-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
      }
.ticket-info {
        min-width: 0;
        flex: 1;
      }
.ticket-title {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 8px 0;
        line-height: 1.3;
        word-break: break-word;
      }
.ticket-meta {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.7);
        flex-wrap: wrap;
      }
.status-open {
        background: linear-gradient(
          145deg,
          rgba(34, 197, 94, 0.2),
          rgba(34, 197, 94, 0.1)
        );
        color: #22c55e;
        border: 1px solid rgba(34, 197, 94, 0.3);
        font-weight: 600;
      }
.status-closed {
        background: linear-gradient(
          145deg,
          rgba(239, 68, 68, 0.2),
          rgba(239, 68, 68, 0.1)
        );
        color: #ef4444;
        border: 1px solid rgba(239, 68, 68, 0.3);
        font-weight: 600;
      }
/* Chat Container */
.chat-container {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
        min-height: 0;
      }
/* Messages Area */
.messages-area {
        flex: 1;
        padding: 16px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
        min-height: 300px;
      }
.messages-area::-webkit-scrollbar {
        width: 4px;
      }
.messages-area::-webkit-scrollbar-track {
        background: transparent;
      }
.messages-area::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 2px;
      }
.messages-area::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.3);
      }
/* Message Bubbles */
.message {
        display: flex;
        margin-bottom: 8px;
        animation: fadeInUp 0.3s ease-out;
      }
@keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
.message.user {
        justify-content: flex-end;
      }
.message.support {
        justify-content: flex-start;
      }
.message-bubble {
        max-width: 80%;
        padding: 12px 16px;
        border-radius: 16px;
        position: relative;
        word-wrap: break-word;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      }
/* User Messages - Right Side */
.message.user .message-bubble {
        background: linear-gradient(145deg, #00ffcc, #00d4aa);
        color: #000;
        border-bottom-right-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 255, 204, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
.message.user .message-bubble::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: -6px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-left-color: #00d4aa;
        border-bottom: none;
        border-right: none;
      }
/* Support Messages - Left Side */
.message.support .message-bubble {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.15),
          rgba(255, 255, 255, 0.1)
        );
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom-left-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
      }
.message.support .message-bubble::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: -6px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-right-color: rgba(255, 255, 255, 0.15);
        border-bottom: none;
        border-left: none;
      }
.message-header {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 6px;
        font-size: 11px;
        font-weight: 600;
        opacity: 0.8;
      }
.message.user .message-header {
        color: rgba(0, 0, 0, 0.7);
      }
.message.support .message-header {
        color: rgba(255, 255, 255, 0.7);
      }
.message-content {
        font-size: 14px;
        line-height: 1.4;
        word-break: break-word;
      }
/* Reply Form */
.reply-form {
        padding: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02)
        );
      }
.reply-form.disabled {
        opacity: 0.5;
        pointer-events: none;
      }
.message-input {
        flex: 1;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 12px 16px;
        color: #fff;
        font-size: 14px;
        font-family: inherit;
        resize: none;
        min-height: 44px;
        max-height: 100px;
        transition: all 0.3s;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
      }
.message-input:focus {
        outline: none;
        border-color: #00ffcc;
        box-shadow: 0 0 0 2px rgba(0, 255, 204, 0.2),
          inset 0 1px 3px rgba(0, 0, 0, 0.3);
      }
.message-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
      }
.send-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px 16px;
        background: linear-gradient(145deg, #00ffcc, #00d4aa);
        color: #000;
        border: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(0, 255, 204, 0.3);
        font-family: inherit;
        min-width: 80px;
        flex-shrink: 0;
      }
.send-btn:hover:not(:disabled) {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 255, 204, 0.4);
      }
.send-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
      }
/* Ticket Closed Message */
.ticket-closed-message {
        text-align: center;
        padding: 16px;
        background: linear-gradient(
          145deg,
          rgba(34, 197, 94, 0.1),
          rgba(34, 197, 94, 0.05)
        );
        border: 1px solid rgba(34, 197, 94, 0.3);
        border-radius: 12px;
        margin: 12px 16px;
      }
.ticket-closed-message h3 {
        color: #22c55e;
        margin: 0 0 6px 0;
        font-size: 16px;
        font-weight: 600;
      }
.ticket-closed-message p {
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
        font-size: 13px;
        line-height: 1.4;
      }
/* Empty State */
.empty-messages {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
        min-height: 200px;
      }
/* Character Counter */
.char-counter {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.5);
        text-align: right;
        margin-top: 4px;
      }
.char-counter.warning {
        color: #fbbf24;
      }
.char-counter.error {
        color: #ef4444;
      }
/* Loading Animation */
.loading {
        display: inline-block;
        width: 16px;
        height: 16px;
        border: 2px solid rgba(0, 0, 0, 0.3);
        border-radius: 50%;
        border-top-color: #000;
        animation: spin 1s ease-in-out infinite;
      }
@keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }
/* Success Message */
.success-message {
        background: linear-gradient(
          145deg,
          rgba(34, 197, 94, 0.1),
          rgba(34, 197, 94, 0.05)
        );
        border: 1px solid rgba(34, 197, 94, 0.3);
        color: #22c55e;
        padding: 10px 16px;
        border-radius: 10px;
        margin-bottom: 12px;
        font-size: 13px;
        font-weight: 500;
        display: none;
      }
.success-message.show {
        display: block;
        animation: fadeInUp 0.3s ease-out;
      }


@keyframes rotate {
        to {
          transform: rotate(360deg);
        }
      }
/* Action Buttons - 3D Effect */
.balance-btn:hover {
        transform: translateY(-2px);
      }
/* Deposit Card - QR Code Section */
.qr-code:hover {
        transform: translateY(-2px) scale(1.02) translateZ(0);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.9);
      }
/* Address Section */
/* Info Items */
/* Account Stats Grid */
/* Quick Actions Grid */
/* Achievements Section */
.achievement-item.earned .achievement-icon {
        background: linear-gradient(
          145deg,
          rgba(34, 197, 94, 0.2),
          rgba(34, 197, 94, 0.1)
        );
      }
.achievement-item.locked .achievement-icon {
        background: linear-gradient(
          145deg,
          rgba(107, 114, 128, 0.2),
          rgba(107, 114, 128, 0.1)
        );
      }
.achievement-content {
        flex: 1;
      }
.achievement-desc {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.7);
      }
/* Referral Section */
.referral-section {
        background: linear-gradient(
          145deg,
          rgba(0, 255, 204, 0.1),
          rgba(0, 212, 170, 0.05)
        );
        border: 1px solid rgba(0, 255, 204, 0.3);
        border-radius: 16px;
        padding: 24px;
        margin-bottom: 24px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 12px 32px rgba(0, 255, 204, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
      }
.referral-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(
          from 0deg,
          transparent,
          rgba(0, 255, 204, 0.05),
          transparent
        );
        animation: rotate 12s linear infinite;
        z-index: -1;
      }
.referral-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
      }
.referral-icon {
        font-size: 24px;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(145deg, #00a594, #00d4aa);
        border-radius: 12px;
        color: #000;
        
      }
.referral-title {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        margin: 0;
      }
.referral-description {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.5;
        margin-bottom: 20px;
      }
.referral-link-container {
        display: flex;
        gap: 8px;
        margin-bottom: 16px;
      }
.referral-input {
        flex: 1;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 12px 16px;
        color: #fff;
        font-family: 'Monaco', 'Menlo', monospace;
        font-size: 14px;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
      }
.referral-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 20px;
        margin-bottom: 20px;
      }
.referral-stat {
        text-align: center;
        padding: 12px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
      }
.referral-stat-value {
        font-size: 18px;
        font-weight: 700;
        color: #00ffcc;
        margin-bottom: 4px;
      }
.referral-stat-label {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.7);
      }

.support-content-flex {
        display: flex;
        gap: 32px;
        margin-bottom: 40px;
      }
/* Contact Form Section */
.contact-form-section {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 24px;
        padding: 40px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        flex: 1;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.contact-form-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.contact-form-section:hover::before {
        opacity: 1;
      }
.contact-form-section:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
.section-subtitle {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin-bottom: 32px;
      }
/* Form Styles */
.contact-form {
        display: grid;
        gap: 24px;
      }
.form-input,
      .form-textarea {
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 12px 16px;
        color: #fff;
        font-size: 16px;
        transition: all 0.3s;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
        font-family: inherit;
        resize: vertical;
        flex: 1;
      }
.form-input:focus,
      .form-textarea:focus {
        outline: none;
        border-color: #00ffcc;
        box-shadow: 0 0 0 2px rgba(0, 255, 204, 0.2);
      }
.form-input::placeholder,
      .form-textarea::placeholder {
        color: rgba(255, 255, 255, 0.5);
      }
/* Support Tickets Section */
.support-tickets-section {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 24px;
        padding: 40px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        flex: 1;
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.support-tickets-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #00ffcc);
        opacity: 0;
        transition: opacity 0.3s;
      }
.support-tickets-section:hover::before {
        opacity: 1;
      }
.support-tickets-section:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5),
          inset 0 1px 0 rgba(255, 255, 255, 0.3),
          0 0 0 1px rgba(255, 107, 107, 0.2);
      }
.tickets-table {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02)
        );
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.support-tickets-section:hover .tickets-table {
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.15);
      }
.reply-link {
        color: #00ffcc;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        padding: 4px 8px;
        border-radius: 6px;
      }
.reply-link:hover {
        color: #00d4aa;
        background: rgba(0, 255, 204, 0.1);
        transform: scale(1.05);
      }
.new-ticket-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        background: linear-gradient(145deg, #00ffcc, #00d4aa);
        color: #000;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(0, 255, 204, 0.3);
        margin-top: 24px;
      }
.new-ticket-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 255, 204, 0.4);
      }
/* Quick Links Section */
.quick-links-section {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 24px;
        padding: 40px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
      }
.quick-links-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        margin-top: 24px;
      }
.quick-link-card {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02)
        );
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 24px;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      }
.quick-link-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.2);
      }
.quick-link-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
      }
.quick-link-icon {
        font-size: 24px;
      }
.quick-link-title {
        font-size: 18px;
        font-weight: 600;
        color: #fff;
        margin: 0;
      }
.quick-link-description {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.5;
        margin: 0;
      }

/* Security Dashboard - 2 Column Layout */
.security-dashboard {
        display: flex;
        flex-direction: column;
        gap: 32px;
      }
/* Two Column Container */
.security-two-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin-bottom: 32px;
      }
/* Security Section */
.security-section {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 24px;
        padding: 32px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.security-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.security-section:hover::before {
        opacity: 1;
      }
.security-section:hover {
        transform: translateY(-4px) translateZ(0);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
/* Security Form */
.security-form {
        display: flex;
        flex-direction: column;
        gap: 24px;
      }
/* Submit Button */
.submit-btn.danger {
        background: linear-gradient(145deg, #ef4444, #dc2626);
        color: #fff;
        box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
      }
.submit-btn.danger:hover {
        box-shadow: 0 12px 32px rgba(239, 68, 68, 0.4);
      }
/* Info Alert */
.alert-icon {
        font-size: 20px;
        color: #00ffcc;
      }
.alert-text {
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px;
        line-height: 1.5;
      }
/* QR Code Container */
.qr-container {
        padding: 20px;
        text-align: center;
        margin: 20px 0;
      }
.secret-code {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        padding: 12px;
        font-family: 'Monaco', 'Menlo', monospace;
        font-size: 12px;
        color: #00ffcc;
        word-break: break-all;
        margin-top: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
      }
/* Back to Top Button */
/* Responsive Design */
/* Modern 3D Account Dashboard Styles */
/* Breadcrumb Enhancement */
/* Main Container */
/* Profile Header - 3D Card - Moved down */
/* Avatar 3D Effect */
/* Navigation Tabs - 3D Pills */
/* Section Titles */
/* Modern Buttons */
/* Profile Info */
/* Investment Dashboard Styles */
.investment-dashboard {
        display: flex;
        flex-direction: column;
        gap: 32px;
      }
/* Investment Hero Section */
.investment-hero {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 24px;
        padding: 32px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.investment-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.investment-hero:hover::before {
        opacity: 1;
      }
.investment-hero:hover {
        transform: translateY(-4px) translateZ(0);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
.investment-icon img {
        width: 120px;
        height: 120px;
        object-fit: contain;
      }
.investment-icon:hover {
        transform: translateY(-4px) scale(1.05);
      }
/* Investment Stats Section */
.investment-stats-section {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.investment-stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.investment-stats-section:hover::before {
        opacity: 1;
      }
.investment-stats-section:hover {
        transform: translateY(-4px) translateZ(0);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
.investment-stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
      }
.investment-stat-card {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02)
        );
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 20px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      }
.investment-stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
      }
.investment-stat-card.primary {
        border-color: rgba(0, 255, 204, 0.3);
        background: linear-gradient(
          145deg,
          rgba(0, 255, 204, 0.1),
          rgba(0, 255, 204, 0.05)
        );
      }
.investment-stat-card.success {
        border-color: rgba(34, 197, 94, 0.3);
        background: linear-gradient(
          145deg,
          rgba(34, 197, 94, 0.1),
          rgba(34, 197, 94, 0.05)
        );
      }
.investment-stat-card.profit {
        border-color: rgba(251, 191, 36, 0.3);
        background: linear-gradient(
          145deg,
          rgba(251, 191, 36, 0.1),
          rgba(251, 191, 36, 0.05)
        );
      }
.investment-stat-card.highlight {
        border-color: rgba(139, 92, 246, 0.3);
        background: linear-gradient(
          145deg,
          rgba(139, 92, 246, 0.1),
          rgba(139, 92, 246, 0.05)
        );
      }
.stat-name {
        font-size: 14px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
      }
/* Investment Actions Section */
.investment-actions-section {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.investment-actions-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.investment-actions-section:hover::before {
        opacity: 1;
      }
.investment-actions-section:hover {
        transform: translateY(-4px) translateZ(0);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
.actions-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        justify-items: center;
      }
.action-card {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02)
        );
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 24px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        max-width: 800px;
        width: 100%;
      }
.action-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
      }
.action-header {
        margin-bottom: 20px;
      }
.action-description {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.5;
      }
.investment-form {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
.input-wrapper {
        position: relative;
        display: flex;
        align-items: center;
      }
.input-suffix {
        position: absolute;
        right: 16px;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 600;
      }
.investment-preview {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
.action-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: 12px;
        border: 1px solid transparent;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        position: relative;
        overflow: hidden;
      }
.action-btn.primary {
        background: linear-gradient(145deg, #00a594, #00d4aa);
        color: #000;
        
      }
.action-btn.secondary {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
      }
.action-btn:hover {
        transform: translateY(-2px);
      }
.action-btn.primary:hover {
        box-shadow: 0 12px 32px rgba(0, 255, 204, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.4);
      }
/* How It Works Section */
.how-it-works-section {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.how-it-works-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.how-it-works-section:hover::before {
        opacity: 1;
      }
.how-it-works-section:hover {
        transform: translateY(-4px) translateZ(0);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
.how-it-works-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
      }
.how-step {
        display: flex;
        gap: 16px;
        align-items: flex-start;
      }
.step-number {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(145deg, #00a594, #00d4aa);
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 18px;
        flex-shrink: 0;
        box-shadow: 0 8px 24px rgba(0, 255, 204, 0.3);
      }
.step-content {
        flex: 1;
      }
.step-title {
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 8px 0;
      }
.step-description {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.5;
      }
/* Benefits Section */
.benefits-section {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.benefits-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.benefits-section:hover::before {
        opacity: 1;
      }
.benefits-section:hover {
        transform: translateY(-4px) translateZ(0);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
.benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
      }
.benefit-card {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02)
        );
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 24px;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.benefit-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
      }
.benefit-icon-large {
        font-size: 48px;
        margin-bottom: 16px;
      }
.benefit-title {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 12px 0;
      }
.benefit-description {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.5;
      }
/* Disclaimer Section */
.disclaimer-section {
        background: linear-gradient(
          145deg,
          rgba(255, 193, 7, 0.1),
          rgba(255, 193, 7, 0.05)
        );
        border: 1px solid rgba(255, 193, 7, 0.3);
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 16px 40px rgba(255, 193, 7, 0.1);
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.disclaimer-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.disclaimer-section:hover::before {
        opacity: 1;
      }
.disclaimer-section:hover {
        transform: translateY(-4px) translateZ(0);
        box-shadow: 0 24px 60px rgba(255, 193, 7, 0.2);
      }
.disclaimer-card {
        background: transparent;
      }
.disclaimer-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
      }
.disclaimer-icon {
        font-size: 24px;
      }
.disclaimer-title {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        margin: 0;
      }
.disclaimer-content p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin-bottom: 16px;
      }
.disclaimer-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }
.disclaimer-list li {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.5;
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
      }
.disclaimer-list li::before {
        content: '•';
        color: #ffc107;
        position: absolute;
        left: 0;
        font-weight: bold;
      }
/* Back to Top Button */
/* Responsive Design */
/* Modern Game Details Page Styles */
/* Breadcrumb Enhancement */
/* Main Container */
.game-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px 40px;
      }
/* Game Header Card */
.game-header-card {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 24px;
        padding: 32px;
        margin-bottom: 32px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.2),
          0 0 0 1px rgba(0, 255, 204, 0.1);
        transform: translateZ(0);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
      }
.game-header-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.1),
          transparent
        );
        transition: left 0.5s;
      }
.game-header-card:hover::before {
        left: 100%;
      }
.game-header-card:hover {
        transform: translateY(-4px) translateZ(0);
        box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5),
          inset 0 1px 0 rgba(255, 255, 255, 0.3),
          0 0 0 1px rgba(0, 255, 204, 0.2);
      }
/* Game Header Content */
.game-header-content {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 32px;
        align-items: center;
      }
.game-info-left {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
.game-title {
        font-size: 32px;
        font-weight: 800;
        color: #fff;
        margin: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      }
.game-multiplier {
        font-size: 48px;
        font-weight: 900;
        background: linear-gradient(135deg, #00ffcc, #ff6b6b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 30px rgba(0, 255, 204, 0.5);
        margin: 0;
      }
.game-meta {
        display: flex;
        gap: 24px;
        align-items: center;
        flex-wrap: wrap;
      }
.game-id {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: linear-gradient(
          145deg,
          rgba(0, 255, 204, 0.1),
          rgba(0, 255, 204, 0.05)
        );
        border: 1px solid rgba(0, 255, 204, 0.3);
        border-radius: 12px;
        color: #00ffcc;
        font-weight: 600;
        font-size: 14px;
      }
.game-time {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        font-weight: 500;
      }
.game-date {
        color: rgba(255, 255, 255, 0.5);
        font-size: 12px;
      }
/* Game Visual */
.game-visual {
        position: relative;
      }
.game-icon {
        width: 120px;
        height: 120px;
        border-radius: 20px;
        background: linear-gradient(145deg, #00ffcc, #00d4aa);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 20px 40px rgba(0, 255, 204, 0.3),
          inset 0 2px 0 rgba(255, 255, 255, 0.3),
          inset 0 -2px 0 rgba(0, 0, 0, 0.2);
        transform: translateZ(0);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
      }
.game-icon::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(
          from 0deg,
          transparent,
          rgba(255, 255, 255, 0.2),
          transparent
        );
        animation: rotate 4s linear infinite;
        z-index: 0;
      }
.game-icon img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        position: relative;
        z-index: 1;
      }
.game-icon:hover {
        transform: translateY(-4px) scale(1.05) translateZ(0);
        box-shadow: 0 24px 48px rgba(0, 255, 204, 0.4),
          inset 0 2px 0 rgba(255, 255, 255, 0.4);
      }
/* Players Table */
.players-section {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 24px;
        margin-bottom: 32px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transform: translateZ(0);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
      }
.players-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffcc, #ff6b6b, #4ecdc4);
        opacity: 0;
        transition: opacity 0.3s;
      }
.players-section:hover {
        transform: translateY(-4px) translateZ(0);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
.players-section:hover::before {
        opacity: 1;
      }
/* Modern Table */
.players-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02)
        );
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
      }
.players-table thead {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
      }
.players-table th {
        padding: 16px 20px;
        text-align: left;
        font-size: 12px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }
.players-table td {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.players-table tbody tr {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.players-table tbody tr:hover {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02)
        );
      }
.players-table tbody tr:last-child td {
        border-bottom: none;
      }
/* Player Name */
.player-name {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.player-name:hover {
        color: #00ffcc;
        text-shadow: 0 0 8px rgba(0, 255, 204, 0.5);
      }
/* Bet Amount */
.bet-amount {
        font-family: 'Monaco', 'Menlo', monospace;
        font-weight: 600;
        color: #fff;
      }
/* Cash Out Status */
.cash-out-win {
        color: #22c55e;
        font-weight: 700;
        text-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
      }
.cash-out-lose {
        color: #ef4444;
        font-weight: 700;
        text-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
      }
/* Bonus */
.bonus-amount {
        color: #fbbf24;
        font-weight: 600;
        text-shadow: 0 0 8px rgba(251, 191, 36, 0.3);
      }
/* Profit */
.profit-positive {
        color: #22c55e;
        font-weight: 700;
        font-family: 'Monaco', 'Menlo', monospace;
        text-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
      }
.profit-negative {
        color: #ef4444;
        font-weight: 700;
        font-family: 'Monaco', 'Menlo', monospace;
        text-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
      }
/* Losing Row Highlight */
.players-table tbody tr.lose {
        background: linear-gradient(
          145deg,
          rgba(239, 68, 68, 0.05),
          rgba(239, 68, 68, 0.02)
        );
        border-left: 3px solid rgba(239, 68, 68, 0.3);
      }
/* Hash Section */
.hash-section {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 24px;
        margin-bottom: 32px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.2);
      }
.hash-title {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
      }

.hash-value {
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 16px;
        font-family: 'Monaco', 'Menlo', monospace;
        font-size: 12px;
        color: #949494;
        text-align: center;
        word-break: break-all;
        line-height: 1.5;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
      }
.hash-link {
        color: #00ffcc;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
.hash-link:hover {
        color: #fff;
        text-shadow: 0 0 8px rgba(0, 255, 204, 0.5);
      }
/* Action Buttons */
.action-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        margin-top: 32px;
      }
.action-btn.secondary:hover {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.15),
          rgba(255, 255, 255, 0.1)
        );
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
      }
/* Back to Top Button */
/* Responsive Design */
@media (max-width: 640px) {
        .players-table th:nth-child(4),
        .players-table td:nth-child(4) {
          display: none;
        }

        .game-meta {
          flex-direction: column;
          gap: 12px;
        }
      }

.faucet-dashboard {
        display: flex;
        flex-direction: column;
        gap: 32px;
      }
/* Main Content Grid - Side by Side Layout */
.main-content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin-bottom: 32px;
      }
/* Stats Section - 3D Cards */
/* Faucet Claim Section */
.faucet-claim-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
.claim-card {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.05),
          rgba(255, 255, 255, 0.02)
        );
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 24px;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
      }
.claim-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
      }
.claim-card.primary {
        border-color: rgba(0, 255, 204, 0.3);
        background: linear-gradient(
          145deg,
          rgba(0, 255, 204, 0.1),
          rgba(0, 255, 204, 0.05)
        );
      }
.claim-card.warning {
        border-color: rgba(255, 193, 7, 0.3);
        background: linear-gradient(
          145deg,
          rgba(255, 193, 7, 0.1),
          rgba(255, 193, 7, 0.05)
        );
      }
/* Faucet Image Container with Floating Effects */
.faucet-image-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        height: 120px;
        overflow: visible;
      }
.faucet-image {
        width: 130px;
        height: 130px;
        object-fit: contain;
        filter: drop-shadow(0 0 20px rgba(0, 255, 204, 0.6));
        animation: float 3s ease-in-out infinite;
        z-index: 2;
        position: relative;
      }
/* Floating Animation */
@keyframes float {
        0%, 100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-10px);
        }
      }
/* Floating Bitcoin Symbols */
.floating-bitcoin {
        position: absolute;
        color: #00ffcc;
        font-size: 16px;
        font-weight: bold;
        opacity: 0.8;
        animation: floatBitcoin 4s ease-in-out infinite;
        text-shadow: 0 0 10px rgba(0, 255, 204, 0.8);
        z-index: 1;
      }
.floating-bitcoin:nth-child(1) {
        top: 10px;
        left: 20px;
        animation-delay: 0s;
      }
.floating-bitcoin:nth-child(2) {
        top: 20px;
        right: 15px;
        animation-delay: 1s;
        font-size: 14px;
      }
.floating-bitcoin:nth-child(3) {
        bottom: 15px;
        left: 15px;
        animation-delay: 2s;
        font-size: 18px;
      }
.floating-bitcoin:nth-child(4) {
        bottom: 10px;
        right: 25px;
        animation-delay: 3s;
        font-size: 12px;
      }
@keyframes floatBitcoin {
        0%, 100% {
          transform: translateY(0px) rotate(0deg);
          opacity: 0.8;
        }
        25% {
          transform: translateY(-8px) rotate(90deg);
          opacity: 1;
        }
        50% {
          transform: translateY(-15px) rotate(180deg);
          opacity: 0.6;
        }
        75% {
          transform: translateY(-8px) rotate(270deg);
          opacity: 1;
        }
      }
/* Floating Dots */
.floating-dot {
        position: absolute;
        width: 4px;
        height: 4px;
        background: linear-gradient(45deg, #00ffcc, #00d4aa);
        border-radius: 50%;
        animation: floatDot 3s ease-in-out infinite;
        box-shadow: 0 0 8px rgba(0, 255, 204, 0.8);
        z-index: 1;
      }
.floating-dot:nth-child(5) {
        top: 30px;
        left: 50px;
        animation-delay: 0.5s;
      }
.floating-dot:nth-child(6) {
        top: 50px;
        right: 40px;
        animation-delay: 1.5s;
        width: 6px;
        height: 6px;
      }
.floating-dot:nth-child(7) {
        bottom: 40px;
        left: 40px;
        animation-delay: 2.5s;
        width: 3px;
        height: 3px;
      }
.floating-dot:nth-child(8) {
        bottom: 30px;
        right: 50px;
        animation-delay: 3.5s;
        width: 5px;
        height: 5px;
      }
.floating-dot:nth-child(9) {
        top: 60px;
        left: 30px;
        animation-delay: 1s;
        width: 4px;
        height: 4px;
      }
.floating-dot:nth-child(10) {
        top: 40px;
        right: 60px;
        animation-delay: 2s;
        width: 3px;
        height: 3px;
      }
@keyframes floatDot {
        0%, 100% {
          transform: translateY(0px) scale(1);
          opacity: 0.7;
        }
        33% {
          transform: translateY(-12px) scale(1.2);
          opacity: 1;
        }
        66% {
          transform: translateY(-6px) scale(0.8);
          opacity: 0.5;
        }
      }
/* Glowing Effect Around Image */
.faucet-image-container::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(0, 255, 204, 0.3) 0%, transparent 70%);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        animation: pulse 2s ease-in-out infinite;
        z-index: 0;
      }
@keyframes pulse {
        0%, 100% {
          transform: translate(-50%, -50%) scale(1);
          opacity: 0.6;
        }
        50% {
          transform: translate(-50%, -50%) scale(1.2);
          opacity: 0.3;
        }
      }
.claim-header {
        margin-bottom: 20px;
      }
.claim-title {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 8px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
      }
.claim-icon {
        font-size: 24px;
      }
.claim-amount {
        font-size: 32px;
        font-weight: 800;
        color: #00ffcc;
        margin: 0 0 8px 0;
        text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
      }
.claim-description {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.5;
        margin-bottom: 20px;
      }
.claim-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 24px;
        border-radius: 12px;
        border: none;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
      }
.claim-btn.primary {
        background: linear-gradient(145deg, #00ffcc, #00d4aa);
        color: #000;
        box-shadow: 0 8px 24px rgba(0, 255, 204, 0.3);
      }
.claim-btn.disabled {
        background: linear-gradient(
          145deg,
          rgba(107, 114, 128, 0.3),
          rgba(107, 114, 128, 0.2)
        );
        color: rgba(255, 255, 255, 0.5);
        cursor: not-allowed;
        box-shadow: none;
      }
.claim-btn:hover:not(.disabled) {
        transform: translateY(-2px);
      }
.claim-btn.primary:hover:not(.disabled) {
        box-shadow: 0 12px 32px rgba(0, 255, 204, 0.4);
      }
.countdown-timer {
        font-size: 18px;
        font-weight: 700;
        color: #ffc107;
        margin-bottom: 16px;
      }
.next-claim-info {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 16px;
        padding: 12px;
        background: rgba(255, 193, 7, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(255, 193, 7, 0.3);
      }
/* Referral Section - Updated to match account.html */
/* Social Share Buttons */
.social-share {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        margin-top: 16px;
      }
.social-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        border-radius: 12px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid transparent;
        text-align: center;
        cursor: pointer;
        position: relative;
        overflow: hidden;
      }
.social-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.1),
          transparent
        );
        transition: left 0.3s;
      }
.social-btn:hover::before {
        left: 100%;
      }
.social-btn.twitter {
        background: linear-gradient(145deg, #1da1f2, #0d8bd9);
        color: #fff;
        box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
      }
.social-btn.telegram {
        background: linear-gradient(145deg, #0088cc, #006699);
        color: #fff;
        box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
      }
.social-btn.whatsapp {
        background: linear-gradient(145deg, #25d366, #1ebe57);
        color: #fff;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
      }
.social-btn.facebook {
        background: linear-gradient(145deg, #1877f2, #166fe5);
        color: #fff;
        box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
      }
.social-btn:hover {
        transform: translateY(-2px);
      }
.social-btn.twitter:hover {
        box-shadow: 0 8px 24px rgba(29, 161, 242, 0.4);
      }
.social-btn.telegram:hover {
        box-shadow: 0 8px 24px rgba(0, 136, 204, 0.4);
      }
.social-btn.whatsapp:hover {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
      }
.social-btn.facebook:hover {
        box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4);
      }

.crypto-columns-grid {
        display: flex;
        margin: 16px -24px 0 -24px; /* Negative margins to extend beyond stats-section padding */
        padding: 0;
        border-radius: 0 0 20px 20px; /* Only round bottom corners to match parent */
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        cursor: pointer;
      }
.crypto-column-item {
        flex: 1;
        padding: 12px 16px;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1),
          rgba(255, 255, 255, 0.05)
        );
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
      }
.crypto-column-item:first-child {
        border-right: none;
      }
.crypto-column-item:last-child {
        border-left: none;
      }
.crypto-column-item:hover {
        background: linear-gradient(
          145deg,
          rgba(0, 255, 204, 0.1),
          rgba(0, 255, 204, 0.05)
        );
        border-color: rgba(0, 255, 204, 0.3);
        transform: translateY(-1px);
        z-index: 1;
      }

