/* Base Styles & Variables */
:root {
  --bg-primary: #1e293b; /* Adjust to match your dark blue background */
  --card-bg: rgba(255, 255, 255, 0.05); /* Glassmorphism effect */
  --card-border: rgba(255, 255, 255, 0.1);
  --card-hover: rgba(0, 206, 209, 0.1);
  --accent-color: #00ced1; /* Cyan color from your original buttons */
  --text-main: #ffffff;
  --text-muted: #94a3b8;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Connect Button Wrapper */
.connect-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

/* Grid Layout */
.action-grid-box {
  display: grid;
  /* Automatically creates columns based on screen width. Mobile = 1 col, PC = 3 or 4 cols */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Individual Card Styling */
.action-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-5px);
  background: var(--card-hover);
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Icon Styling */
.card-icon {
  font-size: 1.8rem;
  background: var(--accent-color);
  color: var(--bg-primary);
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

/* Text Content Styling */
.card-content {
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  margin: 0 0 0.5rem 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: var(--accent-color);
}

.card-content p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
  body {
    padding: 1rem;
  }
  .action-grid-box {
    grid-template-columns: 1fr; /* Forces a single column on small screens */
  }
  .connect-btn {
    padding: 8px 12px;
    font-size: 1rem;
  }
}

a {
  text-decoration: none;
}
.connect-btn {
  color: rgb(0, 0, 0);
  padding: 10px 15px;
  border: 2px solid yellowgreen;
  background: yellow;
  border-radius: 50px;
  font-weight: bold;
}

@media (min-width: 1024px) {
  .connect-btn {
    padding: 12px 20px;
    margin-top: 20px;
    font-size: 1.5625rem;
  }

  body h1{
    font-size: 3.5rem;
  }
}

*{
    font-family: 'Courier New', Courier, monospace;
}

body h1{
    font-family: 'Georgia', 'Times New Roman', Times, serif;
}

.connect-wrapper a{
    font-family: 'Georgia', 'Times New Roman', Times, serif;
}

.connect-btn:hover{
    background: yellowgreen;
    border-color: rgb(0, 0, 0);
}