body {
  font-family: 'Arial', 'Helvetica', sans-serif;
  max-width: 900px;
  margin: auto;
  padding: 20px;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0f1419;
}

h1, h2, h3 {
  color: #64b5f6;
  font-weight: 600;
}

h1 {
  font-size: 28px;
  border-bottom: 2px solid #64b5f6;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

a {
  color: #90caf9;
  text-decoration: none;
}

.highlight-box {
  background-color: rgba(100, 181, 246, 0.1);
  border-left: 4px solid #64b5f6;
  padding: 15px 20px;
  margin: 25px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  border-radius: 8px;
}

.feature-item {
  background-color: #1e2a3a;
  border: 1px solid #2e3a4a;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

footer {
  border-top: 1px solid #2e3a4a;
  color: #8bb9e8;
}

strong {
  color: #90caf9;
}

h2 {
  font-size: 22px;
  margin-top: 30px;
}

h3 {
  font-size: 18px;
  margin-top: 25px;
}

ul {
  padding-left: 20px;
  list-style: none;
}

ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

ul li:before {
  content: "•";
  color: #64b5f6;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 10px;
  color: #64b5f6;
}

.step-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.step-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #64b5f6;
  color: #0f1419;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  font-weight: bold;
}

.resource-nav {
  margin-top: 40px;
  padding-top: 10px;
  border-top: 1px solid #2e3a4a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.resource-nav a {
  color: #90caf9;
  text-decoration: none;
  padding: 8px 12px;
}

.resource-nav a:hover {
  text-decoration: underline;
}

.step-box {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  background-color: rgba(100, 181, 246, 0.1);
  border-left: 4px solid #64b5f6;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.cta-button {
  display: inline-block;
  background-color: #64b5f6;
  color: #0f1419;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  margin-top: 20px;
  transition: background-color 0.2s;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #42a5f5;
  text-decoration: none;
  color: #0f1419;
}

.problem-solution {
  display: flex;
  gap: 30px;
  margin: 40px 0;
}

.problem, .solution {
  flex: 1;
  padding: 25px;
  border-radius: 8px;
}

.problem {
  background-color: rgba(255, 100, 100, 0.1);
  border-left: 4px solid #ff6464;
}

.solution {
  background-color: rgba(100, 181, 246, 0.1);
  border-left: 4px solid #64b5f6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.feature-card {
  background-color: #1e2a3a;
  border: 1px solid #2e3a4a;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
}

.feature-card .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #64b5f6;
}

.feature-card p {
  color: #b3d4fc;
  line-height: 1.5;
}

.header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #64b5f6;
}

.subtitle {
  font-size: 1.2rem;
  color: #90caf9;
  margin: 10px 0;
  font-style: italic;
}

.nav-button {
  display: inline-block;
  background-color: #64b5f6;
  color: #0f1419;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  margin: 15px 0;
  font-weight: 500;
}

.nav-button:hover {
  background-color: #42a5f5;
}

.last-updated {
  font-size: 0.9rem;
  color: #8bb9e8;
  font-style: italic;
}

.platform-overview {
  display: flex;
  gap: 30px;
  margin: 40px 0;
}

.platform-card {
  flex: 1;
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #2e3a4a;
}

.platform-card.typography {
  background-color: rgba(100, 181, 246, 0.1);
  border-color: #64b5f6;
}

.platform-card.doodle {
  background-color: rgba(66, 165, 245, 0.1);
  border-color: #42a5f5;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.application-card {
  background-color: #1e2a3a;
  border: 1px solid #2e3a4a;
  border-radius: 12px;
  padding: 25px;
}

.application-card h4 {
  color: #64b5f6;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.google-recognition {
  background-color: rgba(144, 202, 249, 0.1);
  border: 2px solid #90caf9;
  border-radius: 12px;
  padding: 25px;
  margin: 40px 0;
  text-align: center;
}

.google-recognition h3 {
  color: #90caf9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.cta-button.typography {
  background-color: #64b5f6;
  color: #0f1419;
}

.cta-button.doodle {
  background-color: #42a5f5;
  color: #0f1419;
}

.cta-button.ecard {
  background-color: #90caf9;
  color: #0f1419;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.footer-links {
  text-align: center;
  margin: 40px 0 20px;
}

.footer-links a {
  color: #90caf9;
  text-decoration: none;
  margin: 0 15px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.choice-section {
  margin: 40px 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.choice-card {
  background-color: #1e2a3a;
  border: 2px solid #2e3a4a;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
}

.choice-card h3 {
  color: #64b5f6;
  margin-bottom: 15px;
}

.hero-box {
  background-color: rgba(100, 181, 246, 0.15);
  border: 2px solid #64b5f6;
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
  text-align: center;
}

.hero-box h2 {
  color: #64b5f6;
  margin-bottom: 15px;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.template-card {
  background-color: #1e2a3a;
  border: 1px solid #2e3a4a;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.template-card:hover {
  transform: translateY(-5px);
  border-color: #64b5f6;
  box-shadow: 0 8px 25px rgba(100, 181, 246, 0.2);
}

.template-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.template-card h3 {
  color: #64b5f6;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.template-card p {
  color: #b3d4fc;
  line-height: 1.5;
  font-size: 0.95rem;
}

.studios-promo {
  background-color: rgba(144, 202, 249, 0.1);
  border: 2px solid #90caf9;
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
}

.studios-promo h3 {
  color: #90caf9;
  margin-bottom: 20px;
}

.emoji {
  font-style: normal;
  font-size: 1.2em;
  margin-right: 8px;
}

.new-feature {
  background-color: rgba(100, 181, 246, 0.15);
  border: 2px solid #64b5f6;
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
}

.studio-section {
  background-color: rgba(66, 165, 245, 0.1);
  border-left: 4px solid #42a5f5;
  padding: 15px;
  margin: 20px 0;
  border-radius: 8px;
}

.product-section {
  background-color: rgba(100, 181, 246, 0.05);
  border-radius: 10px;
  padding: 20px;
  margin: 25px 0;
  border: 1px solid #2e3a4a;
}

/* Missing CSS classes for complete coverage */

/* Overview table styles */
.overview-table {
  border-collapse: collapse;
  margin: 40px 0;
}

.overview-cell-left {
  vertical-align: top;
  padding-right: 15px;
}

.overview-cell-right {
  vertical-align: top;
  padding-left: 15px;
}

.typography-overview-card {
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #64b5f6;
  background-color: rgba(100, 181, 246, 0.1);
}

.doodle-overview-card {
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #42a5f5;
  background-color: rgba(66, 165, 245, 0.1);
}

/* Section headings */
.doodle-section-heading {
  color: #42a5f5;
}

/* Applications table */
.applications-table {
  border-collapse: collapse;
  margin: 40px 0;
}

.applications-cell {
  vertical-align: top;
  padding: 0 10px;
}

/* CTA table */
.cta-table {
  border-collapse: collapse;
  margin: 40px 0;
}

.cta-cell {
  text-align: center;
  padding: 0 10px;
}

/* Ready text */
.ready-text {
  text-align: center;
  font-size: 1.1em;
  margin: 30px 0;
}

/* Responsive design */
@media (max-width: 768px) {
  .overview-table,
  .applications-table,
  .cta-table {
    display: block;
  }
  
  .overview-table tr,
  .applications-table tr,
  .cta-table tr {
    display: block;
    margin-bottom: 20px;
  }
  
  .overview-table td,
  .applications-table td,
  .cta-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
  
  .template-grid {
    grid-template-columns: 1fr;
  }
  
  .choice-grid {
    grid-template-columns: 1fr;
  }
  
  .platform-overview {
    flex-direction: column;
  }
}