/* main.css */

/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* Base Styles */
body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
}

/* Cards */
.card {
  background-color: #1e1e2f;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.card-header h2 {
  font-size: 1.5rem;
  margin: 0;
  color: #ffffff;
}

.card-icon {
  width: 30px;
  height: 30px;
  color: #6c63ff;
  margin-right: 0.5rem;
}

.premium-badge {
  background: linear-gradient(45deg, #ff6ec4, #7873f5);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  margin-left: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 110, 196, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 110, 196, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 110, 196, 0);
  }
}

/* Buttons */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6c63ff;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.btn:hover {
  background: #5753d9;
  transform: translateY(-2px);
}

.btn:active {
  background: #4a43b8;
  transform: translateY(0);
}

.button-icon {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

/* Golden Username */
.golden-username {
  color: #ffd700;
  font-weight: 700;
  text-shadow: 0 0 5px #ffd700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .dashboard {
    flex-direction: column;
    align-items: center;
  }
}
