/* Main CSS */
:root {
    --background: #0d1a1f;
    --foreground: #ffffff;
    --primary: #7cda24;
    --primary-hover: #6bc21e;
    --secondary: #0c7d9e;
    --secondary-hover: #0a6a87;
    --accent: #ffcc00;
    --accent-hover: #e6b800;
    --destructive: #ff3366;
    --destructive-hover: #e62e5c;
    --muted: #1a2a30;
    --muted-foreground: #a0aec0;
    --card: #0c2a3a;
    --card-foreground: #ffffff;
    --border: #1a2a30;
    --input: #1a2a30;
    --radius: 0.5rem;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  }
  
  body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  main {
    flex-grow: 1;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0.5rem 1rem;
    border: none;
    font-size: 0.875rem;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    pointer-events: none;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  }
  
  .btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  }
  
  .btn-green {
    background: linear-gradient(to bottom, #8ced33, #5da21b);
    color: white;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  }
  
  .btn-green:hover {
    background: linear-gradient(to bottom, #9df547, #6ab521);
  }
  
  .btn-blue {
    background: linear-gradient(to bottom, #1e9cd7, #0a6a87);
    color: white;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  }
  
  .btn-blue:hover {
    background: linear-gradient(to bottom, #30aee9, #0c7a9b);
  }
  
  .btn-yellow {
    background: linear-gradient(to bottom, #ffdd33, #e6b800);
    color: #0d1a1f;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
  }
  
  .btn-yellow:hover {
    background: linear-gradient(to bottom, #ffe54d, #f5c700);
  }
  
  .btn-pink {
    background: linear-gradient(to bottom, #ff5c85, #e62e5c);
    color: white;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  }
  
  .btn-pink:hover {
    background: linear-gradient(to bottom, #ff7a9d, #f53e6c);
  }
  
  .btn-white {
    background: linear-gradient(to bottom, #ffffff, #e6e6e6);
    color: var(--card);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
  }
  
  .btn-white:hover {
    background: linear-gradient(to bottom, #ffffff, #f0f0f0);
  }
  
  .btn-gray {
    background: linear-gradient(to bottom, #4d4d4d, #333333);
    color: white;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  }
  
  .btn-gray:hover {
    background: linear-gradient(to bottom, #5a5a5a, #404040);
  }
  
  .btn-outline {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid var(--border);
    color: white;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  }
  
  .btn-outline:hover {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07));
  }
  
  .btn-account {
    background: linear-gradient(to bottom, #4d4d4d, #333333);
    color: white;
    padding: 0.25rem;
    border-radius: var(--radius);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  }
  
  .btn-large {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 0.75rem;
  }
  
  .btn-small {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 0.375rem;
  }
  
  .btn-full {
    width: 100%;
  }
  
  /* Utilities */
  .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
  }
  
  .section-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .highlight {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
  }
  
  .inline-link {
    color: var(--primary);
    text-decoration: none;
  }
  
  .inline-link:hover {
    text-decoration: underline;
  }
  
  .back-link {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    transition: color 0.2s;
  }
  
  .back-link:hover {
    color: white;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .section-title {
      font-size: 1.25rem;
    }
  
    .btn-large {
      padding: 0.5rem 1.5rem;
    }
  }
  