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

/* Body Layout - Christmas gradient background */
body {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  background: linear-gradient(135deg, #dc2626 0%, #ec4899 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Main Container - White card with shadow */
.container {
  position: relative;
  z-index: 10; /* Above snowflakes (z-index: 0) */
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Typography */
h1 {
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 14px;
}

/* Sections */
.section {
  margin-bottom: 30px;
}

.section h2 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  border-bottom: 2px solid #c41e3a;
  padding-bottom: 8px;
}

/* Info Grid Layout */
.info-grid {
  display: grid;
  gap: 15px;
}

.info-item {
  background: #f7f7f7;
  padding: 15px;
  border-radius: 8px;
}

.info-item strong {
  color: #c41e3a;
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.info-item p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* Access Badge */
.access-badge {
  display: inline-block;
  background: #ec4899;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Code styling */
code {
  background: #f0f0f0;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
}

/* Links */
a {
  color: #c41e3a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
