* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 80px;
}

/* Header Styles */
.header {
    background: #000000;
    position: relative;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.apple-icon {
    font-size: 18px;
    color: #ffffff;
}

.brand-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #1a1a1a;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    z-index: 1000;
    margin-top: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.dropdown-content.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    padding: 12px 18px;
    color: #ffffff;
    text-decoration: none;
    display: block;
    font-size: 13px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

.main-header {
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.02);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.main-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.main-apple-icon {
    font-size: 40px;
    color: #ffffff;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
    50% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.6); }
}

.main-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
}

.button-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.button-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.primary-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 150px;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    background: #f0f0f0;
}

/* Dashboard Styles */
.dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}
/* Custom CSS Variables for Colors (define these in your global CSS or replace with direct values) */
:root {
  --recharge-yellow: #fff8e1;
  --withdraw-green: #e8f5e9;
  --recharge-accent: #ffd700; /* A slightly darker yellow for icons/buttons */
  --withdraw-accent: #8bc34a; /* A slightly darker green for icons/buttons */
  --text-color: #000000;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.05);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Container for the cards */
.container {
  display: flex;
  flex-direction: column; /* Stack vertically on small screens */
  gap: 1.5rem; /* Space between cards */
  width: 100%;
  max-width: 40rem; /* Max width for the container */
  padding: 1rem;
  box-sizing: border-box;
  margin: 0 auto; /* Centers the container horizontally on the page */
  align-items: center; /* Centers items horizontally when flex-direction is column */
  justify-content: center; /* Centers items horizontally when flex-direction is row (on larger screens) */
}

/* Card Styling */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 7rem; /* Fixed height for cards */
  width: 200px; /* Added width as per your previous input */
  border-radius: 0.75rem; /* Rounded corners */
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px var(--shadow-light), 0 4px 6px -2px var(--shadow-dark); /* Soft shadow */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-decoration: none; /* Remove underline from link */
  color: inherit; /* Inherit text color */
  overflow: hidden; /* Hide overflowing background icons */
}

.card:hover {
  transform: scale(1.02); /* Slight scale on hover */
  box-shadow: 0 20px 25px -5px var(--shadow-light), 0 8px 10px -6px var(--shadow-dark); /* Enhanced shadow on hover */
}

/* Specific Card Backgrounds */
.recharge-card {
  background-color: var(--recharge-yellow);
}

.withdraw-card {
  background-color: var(--withdraw-green);
}

/* Card Title */
.card-title {
  font-size: 1.5rem; /* 24px */
  font-weight: 600; /* Semi-bold */
  margin-top: 0;
  margin-bottom: 0;
  z-index: 1; /* Ensure title is above background icons */
      color: black;
}

/* Background Icons */
.background-icons {
  position: absolute;
  bottom: -1.5rem; /* Adjust to move slightly out of view */
  right: -1.5rem; /* Adjust to move slightly out of view */
  font-size: 8rem; /* Large icon size */
  opacity: 0.3; /* Semi-transparent */
  z-index: 0; /* Place behind text */
}

.recharge-card .card-icon {
  color: var(--recharge-accent);
}

.recharge-card .bolt-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6); /* Smaller and centered on card icon */
  color: var(--recharge-accent);
  font-size: 4rem; /* Adjust size relative to card icon */
}

.withdraw-card .arrow-icon {
  color: var(--withdraw-accent);
}

/* Action Button */
.action-button {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 2.5rem; /* 40px */
  height: 2.5rem; /* 40px */
  border-radius: 50%; /* Rounded button */
  background-color: #fff; /* White background */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px -1px var(--shadow-light), 0 2px 4px -1px var(--shadow-dark); /* Soft shadow for button */
  transition: background-color 0.2s ease-in-out;
  cursor: pointer;
  z-index: 1; /* Ensure button is above background icons */
}

.action-button i {
  font-size: 1.5rem; /* Icon size */
}

.recharge-card .action-button i {
  color: var(--recharge-accent);
}

.withdraw-card .action-button i {
  color: var(--withdraw-accent);
}

.action-button:hover {
  background-color: #f5f5f5; /* Slightly darker on hover */
}

/* Responsive Design */
@media (min-width: 768px) {
  .container {
    flex-direction: row; /* Side-by-side on larger screens */
    /* When flex-direction is row, justify-content centers horizontally */
    /* align-items will now control vertical alignment of the row, keep it center if needed */
  }
}

/* Top Section */
.top-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.top-box {
    background: linear-gradient(154deg, #f3b2b2, transparent);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.top-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.top-box-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: #ffffff;
}

.top-box-title {
    font-size: 16px;
    font-weight: 600;
    color: #cccccc;
    margin-bottom: 10px;
}

.top-box-value {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.middle-section {
    display: grid
;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: -99;
}
.feature-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff 0%, #cccccc 100%);
    border-radius: 15px 15px 0 0;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.feature-icon {
    font-size: 20px;
    color: #ffffff;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.feature-subtitle {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 15px;
}

.feature-price {
    font-size: 28px;
    font-weight: 800;
     color: #41c541;;
    margin-bottom: 10px;
}

.feature-profit {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.explore-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.explore-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.right-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.right-box {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    text-align: center;
}

.right-box-icon {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
}

.right-box-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.check-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
}

.check-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Bottom Section */
.bottom-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.service-box {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}
a{
    text-decoration: none;
}
/* Footer Menu */
.footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #cccccc;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 10px;
}

.footer-item:hover,
.footer-item.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.footer-icon {
    font-size: 20px;
    margin-bottom: 5px;
}

.footer-text {
    font-size: 12px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .middle-section {
        grid-template-columns: 1fr;
    }
    
    .right-boxes {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .top-section,
    .bottom-section {
        grid-template-columns: 1fr;
    }
    
    .right-boxes {
        flex-direction: column;
    }
    
    .dashboard {
        padding: 20px 15px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .main-header {
        padding: 20px 0;
    }
    
    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .primary-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .feature-card,
    .top-box,
    .service-box,
    .right-box {
        padding: 20px;
    }
    
    .footer-content {
        padding: 12px 15px;
    }
    
    .footer-icon {
        font-size: 18px;
    }
    
    .footer-text {
        font-size: 11px;
    }
    
    .main-apple-icon {
        font-size: 32px;
    }
    
    .main-title {
        font-size: 24px;
    }
}