:root {
  --primary-bg: #e2f9e6;
  --panel-bg: #fffbee;
  --accent: #76c7b7;
  --text-main: #444;
  --link-bright: #f18ca6;
  --link-hover: #60c2cb;
}
body {
  background: radial-gradient(circle at 60% 40%, #e2f9e6 60%, #e6d9ff 100%);
  margin: 0;
  font-family: 'Quicksand', Arial, sans-serif;
  color: var(--text-main);
  min-height: 100vh;
}
.container {
  max-width: 420px;
  margin: 60px auto;
  background: var(--panel-bg);
  box-shadow: 0 8px 32px 0 rgba(60,100,100,0.2);
  border-radius: 32px;
  text-align: center;
  padding: 40px 30px 36px 30px;
  position: relative;
}
.coming-soon {
  font-family: 'Fredoka One', cursive;
  color: var(--accent);
  font-size: 2.7em;
  letter-spacing: 2px;
  background: linear-gradient(90deg,#76c7b7,#f18ca6 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.profile-img {
  width: 128px;
  height: 128px;
  border-radius: 22px;
  object-fit: cover;
  border: 4px solid var(--accent);
  background: #fffbee;
  margin-bottom: 24px;
  filter: drop-shadow(0 2px 10px #76c7b788);
  transition: box-shadow 0.2s;
}
.desc {
  font-size: 1.16em;
  font-weight: 600;
  margin-bottom: 22px;
}
.fun-link {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #f18ca6 0%, #76c7b7 100%);
  border-radius: 18px;
  padding: 12px 28px 12px 20px;
  font-size: 1.23em;
  font-family: 'Fredoka One', cursive;
  margin-top: 10px;
  position: relative;
  transition: color 0.2s, background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(118, 199, 183, 0.3);
  animation: waggle 2s infinite alternate;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.fun-link span {
  margin-left: 12px;
  font-size: 1.4em;
  vertical-align: middle;
  animation: bounce-icon 1.2s infinite;
}
@keyframes waggle {
  0% { transform: rotate(-2deg);}
  100% {transform: rotate(2deg);}
}
@keyframes bounce-icon {
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-5px);}
}
.fun-link:hover {
  background: linear-gradient(135deg, #60c2cb 0%, #f18ca6 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(118, 199, 183, 0.4);
  letter-spacing: 1px;
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
/* Subtle sparkles */
.sparkle {
  position: absolute;
  width: 22px;
  height: 22px;
  left: 45%;
  top: 12%;
  animation: twinkle 2.5s infinite ease-in-out alternate;
  opacity: 0.7;
}
@keyframes twinkle {
  0% { opacity: 0.3; transform: scale(1);}
  100% { opacity: 1; transform: scale(1.5);}
}

/* Page-specific styles */
.page-title {
  font-family: 'Fredoka One', cursive;
  color: var(--accent);
  font-size: 2.2em;
  letter-spacing: 1px;
  background: linear-gradient(90deg,#76c7b7,#f18ca6 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

.commission-container {
  max-width: 800px;
  padding: 40px 30px;
}

/* Content sections */
.content-section {
  margin-bottom: 30px;
  text-align: left;
}

.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4em;
  margin-bottom: 15px;
  padding: 10px 15px;
  border-radius: 12px;
  text-align: center;
}

.section-title.will-draw {
  background: linear-gradient(135deg, #76c7b7, #60c2cb);
  color: white;
}

.section-title.wont-draw {
  background: linear-gradient(135deg, #f18ca6, #e67e9f);
  color: white;
}

.draw-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.draw-list li {
  background: var(--panel-bg);
  margin: 3px 0;
  padding: 5px 10px;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-info {
  background: rgba(118, 199, 183, 0.1);
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
  text-align: center;
}

.contact-info p {
  margin: 0;
  font-size: 0.95em;
}

/* Button groups */
.button-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.back-link {
  color: var(--link-bright);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--link-hover);
}

.fun-link.secondary {
  background: linear-gradient(135deg, #60c2cb 0%, #76c7b7 100%);
  font-size: 1.1em;
  padding: 10px 24px 10px 16px;
}

/* Form styles */
.commission-form {
  text-align: left;
  margin-top: 20px;
}

.form-section {
  margin-bottom: 30px;
}

.section-description {
  background: rgba(118, 199, 183, 0.1);
  padding: 15px;
  border-radius: 8px;
  margin: 10px 0 20px 0;
  font-size: 0.95em;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-group label.required::after {
  content: " *";
  color: #e74c3c;
}

input[type="text"], 
input[type="email"], 
textarea, 
select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1em;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

input[type="text"]:focus, 
input[type="email"]:focus, 
textarea:focus, 
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(118, 199, 183, 0.2);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

input[type="file"] {
  width: 100%;
  padding: 8px;
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  background: #f9f9f9;
  cursor: pointer;
}

.form-help {
  display: block;
  font-size: 0.85em;
  color: #666;
  margin-top: 5px;
}

/* Radio and checkbox groups */
.radio-group, .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option, .checkbox-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.radio-option:hover, .checkbox-option:hover {
  background: rgba(118, 199, 183, 0.1);
}

.radio-option input[type="radio"], 
.checkbox-option input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  transform: scale(1.2);
}

.radio-text, .checkbox-text {
  font-weight: 500;
}

/* Commission options */
.commission-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.commission-option {
  position: relative;
}

.commission-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.commission-label {
  display: block;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--panel-bg);
}

.commission-option input[type="radio"]:checked + .commission-label {
  border-color: var(--accent);
  background: rgba(118, 199, 183, 0.1);
  box-shadow: 0 4px 12px rgba(118, 199, 183, 0.3);
}

.commission-label:hover {
  border-color: var(--link-hover);
  transform: translateY(-2px);
}

.commission-image {
  text-align: center;
  margin-bottom: 10px;
}

.example-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
}

.commission-details {
  text-align: center;
}

.commission-name {
  font-weight: 600;
  font-size: 1.1em;
  color: var(--text-main);
  margin-bottom: 5px;
}

.commission-status {
  font-size: 0.9em;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.commission-status.available {
  background: #d4edda;
  color: #155724;
}

/* Submit button */
.submit-btn {
  background: linear-gradient(135deg, #f18ca6 0%, #76c7b7 100%);
  border: none;
  cursor: pointer;
  font-family: 'Fredoka One', cursive;
  font-size: 1.2em;
  padding: 15px 30px;
  border-radius: 18px;
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(118, 199, 183, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.submit-btn:hover {
  background: linear-gradient(135deg, #60c2cb 0%, #f18ca6 100%);
  box-shadow: 0 8px 24px rgba(118, 199, 183, 0.4);
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
  .commission-container {
    max-width: 100%;
    margin: 20px;
    padding: 30px 20px;
  }
  
  .commission-options {
    grid-template-columns: 1fr;
  }
  
  .button-group {
    gap: 10px;
  }
  
  .fun-link, .submit-btn {
    font-size: 1.1em;
    padding: 12px 24px;
  }
}
