:root {
  --primary: #ff4500; /* Reddit orange */
  --bg-color: #0b0f19;
  --card-bg: rgba(255, 255, 255, 0.05);
  --text-main: #ffffff;
  --text-muted: #a0aec0;
  --glass-border: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background effects */
.bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,69,0,0.15) 0%, rgba(11,15,25,0) 70%);
  z-index: -1;
  pointer-events: none;
}

header {
  text-align: center;
  padding: 6rem 2rem 3rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #a0aec0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.agencies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Glassmorphism Card */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 69, 0, 0.1);
  border-color: rgba(255, 69, 0, 0.3);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.card h2 {
  font-size: 1.8rem;
  color: var(--text-main);
}

.badge {
  background: rgba(255, 69, 0, 0.1);
  color: var(--primary);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 69, 0, 0.2);
}

.card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.features {
  list-style: none;
  margin-top: auto;
}

.features li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
}

.features li::before {
  content: '✓';
  color: var(--primary);
  margin-right: 0.8rem;
  font-weight: bold;
}

.action-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), #e03d00);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: opacity 0.3s ease;
}

.action-btn:hover {
  opacity: 0.9;
}

.tips-section {
  margin-top: 5rem;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.tips-section h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

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

.tip-card {
  padding: 1.5rem;
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.tip-card h4 {
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

footer {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 3rem;
  border-top: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  .agencies-grid {
    grid-template-columns: 1fr;
  }
}
