/* Mobile-first design */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

.draw-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 15px;
  background-color: white;
  min-height: 100vh;
}

/* Header styles */
.draw-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #7c87df;
}

.draw-header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 10px;
  line-height: 1.2;
}

.draw-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4a7c3e;
  margin-bottom: 8px;
}

.draw-date {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

/* Notice styles */
.draw-notice {
  border: 1px solid #7c87df;
  border-radius: 8px;
  padding: 5px;
  margin-bottom: 25px;
  text-align: center;
}

.notice-text {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

/* Image container */
.draw-image-container {
  text-align: center;
  margin-bottom: 30px;
}

.draw-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #ddd;
}

/* Footer styles */
.draw-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #deecde;
  margin-top: 40px;
  color: #666;
  font-size: 0.9rem;
}

.draw-footer p {
  margin-bottom: 5px;
}

/* Tablet styles */
@media (min-width: 768px) {
  .draw-container {
    max-width: 900px;
    padding: 30px 40px;
  }
  
  .draw-header h1 {
    font-size: 2.2rem;
  }
  
  .draw-header h2 {
    font-size: 1.8rem;
  }
  
  .draw-date {
    font-size: 1.2rem;
  }
  
  .notice-text {
    font-size: 1.1rem;
  }
  
  .draw-footer {
    font-size: 1rem;
  }
}

/* Desktop styles */
@media (min-width: 1024px) {
  .draw-container {
    max-width: 1200px;
    padding: 40px 60px;
  }
  
  .draw-header h1 {
    font-size: 2.5rem;
  }
  
  .draw-header h2 {
    font-size: 2rem;
  }
  
  .draw-date {
    font-size: 1.3rem;
  }
  
  .draw-notice {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .notice-text {
    font-size: 1.2rem;
  }
}

/* Large desktop styles */
@media (min-width: 1440px) {
  .draw-container {
    max-width: 1400px;
  }
  
  .draw-header h1 {
    font-size: 2.8rem;
  }
  
  .draw-header h2 {
    font-size: 2.2rem;
  }
}

/* Print styles */
@media print {
  body {
    background-color: white;
  }
  
  .draw-container {
    box-shadow: none;
    border: none;
    padding: 20px;
  }
  
  .draw-image {
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  .draw-footer {
    page-break-inside: avoid;
  }
}
