    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background-color: #fefefe;
    }

    .container {
      max-width: 500px;
      margin: 0 auto;
    }

    header {
      background: linear-gradient(90deg, #FE3A62 0%, #F2B057 100%);
      color: white;
      padding: 2.5rem 1.5rem;
      text-align: center;
      border-radius: 0 0 30px 30px;
      margin-bottom: 1em;
    }

    header h1 img {
      width: 100%;
    }

    header h3 {
      color: #F9FA1F;
      padding: 1em 0 0.5em;
      font-size: 1.5em;
    }

    header p {
      font-size: 1rem;
    }

    .theme-section {
      padding: 2.5rem 1.5rem;
      border-radius: 30px;
      margin-bottom: 1em;
      color: #fff;
    }

    .theme-1 {
      background: linear-gradient(90deg, #86DED4 0%, #4A97F0 100%);
    }

    .theme-2 {
      background: linear-gradient(90deg, #A9B4E3 0%, #7091BF 100%);
    }

    .theme-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 1.5rem;
      font-weight: 900;
      color: #FFF;
      line-height: 1.3;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem 0.75rem;
      justify-content: center;
    }

    .card {
      flex: 1;
      display: flex;
      flex-direction: column;
      border-radius: 12px;
      overflow: hidden;
    }

    .card img {
      width: 100%;
      display: block;
    }

    .card-content {
      padding-top: 0.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .card-title {
      font-size: 1.125rem;
      font-weight: bold;
    }

    .author {
      margin: 0.25rem 0;
      font-size: 0.875rem;
      opacity: 50%;
    }

    .card-desc {
      font-size: 0.875rem;
      margin-bottom: 1rem;
      height: 80px;
      overflow-y: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      max-height: 80px;
    }

    .buttons {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .btn {
      padding: 1rem 0;
      font-size: 1rem;
      font-weight: bold;
      border: none;
      border-radius: 40px;
      cursor: pointer;
      width: 100%;
    }

    .btn-read {
      background-color: #FF4D4F;
      color: white;
    }

    .btn-vote {
        background-color: #FFE600;
        color: #353F50;
    }

    .buttons {
      flex-direction: column;
    }

    .btn {
      width: 100%;
    }

    .theme-prompt {
      background: rgba(42, 103, 186, 0.2);
      border-radius: 16px;
      padding: 1rem;
      margin-top: 2rem;
    }

    .theme-prompt h3 {
      font-size: 1rem;
      margin-bottom: 1rem;
    }

    .theme-desc {
      display: flex;
      flex-direction: row;
      font-size: 12px;
      gap: 0.5rem;
    }

    .theme-desc img {
      width: 140px;
      height: 140px;
      border-radius: 10px;
    }

    .prizes-section,
    .faq-section {
      padding: 2.5rem 1.5rem;
      border-radius: 30px;
      margin-bottom: 1em;
    }

    .prizes-section {
      background: linear-gradient(90deg, #90CE1A 0%, #2DBA69 100%);
      color: white;
    }

    .faq-section {
      background: #586179;
    }

    .section-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 1.5rem;
      font-weight: 900;
      color: #fff;
    }

    .prizes-section {
      background: linear-gradient(90deg, #90CE1A 0%, #2DBA69 100%);
      padding: 2.5rem 1.5rem;
      border-radius: 30px;
      margin-bottom: 1em;
    }

    .prizes-section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 1.5rem;
      font-weight: 900;
      color: #fff;
    }

    .prize-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      margin-bottom: 1rem;
    }


    .prize-body {
      display: flex;
      align-items: center;
      padding: 1rem 1.5rem;
    }

    .prize-body img {
      width: 60px;
      height: 60px;
      margin-right: 1rem;
      flex-shrink: 0;
    }

    .prize-description {
      font-size: 1rem;
      font-weight: 700;
      color: #353F50;
      text-align: left;
    }

    .prize-amount {
      background: linear-gradient(180deg, #FFD600 0%, #FFB800 100%);
      width: 100%;
      padding: 0.5rem;
      font-size: 1.8rem;
      font-weight: 900;
      color: #353F50;
      text-align: center;
      border-radius: 0 0 20px 20px;
      line-height: 1.4;
    }

    .how-to-vote {
      margin: 2rem 0 0.5rem !important;
    }

    .howto-list {
      list-style: none;
      padding: 1rem 1.5em;
      font-size: 0.9rem;
      max-width: 500px;
      background: rgba(52, 165, 71, 0.5);
      border-radius: 12px;
    }

    .howto-list li {
      margin-bottom: 0.5rem;
    }

    .period {
      padding: 1rem 1.5em;
      font-size: 0.9rem;
      max-width: 500px;
      background: rgba(52, 165, 71, 0.5);
      border-radius: 42px;
      text-align: center;
      font-weight: 600;
    }

    .faq-box {
      max-width: 600px;
      margin: 0 auto;
    }

    .faq-box details {
      margin-bottom: 1rem;
      background: #fff;
      border-radius: 8px;
      padding: 1rem 1.5rem;
      font-size: 1.1rem;
    }

    .faq-box summary {
      font-weight: bold;
      cursor: pointer;
      color: #353F50;
    }

    details p {
      margin-top: 1rem;
      font-size: 0.875rem;
      color: #353F50;
    }

    details ul {
      color: #353F50;
    }

    details li {
      color: #353F50;
    }

    @media (prefers-color-scheme: dark) {      
      .faq-box summary {
        color: #353F50;
      }
      
      details p {
        color: #353F50;
      }
      
      details ul {
        color: #353F50;
      }
      
      details li {
        color: #353F50;
      }
    }

    #signin {
      background: #353F50;
      color: #fff;
      padding: 0.5rem 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-size: 0.875rem;
    }

    .votes {
      background: #fff;
      padding: 5px 16px;
      color: #353F50;
      border-radius: 16px;
      display: flex;
      align-items: center;
    }

    .votes img {
      width: 17.7px;
      height: 16px;
      margin-right: 4px
    }

    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .modal {
      background: #fff;
      border-radius: 16px;
      padding: 2rem 1.5rem;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      margin: 1.4rem;
    }

    .modal h2 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #353F50;
    }

    .modal p {
      font-size: 0.85rem;
      margin-bottom: 1.5rem;
      line-height: 1.4;
    }

    .btn-modal {
      width: 100%;
      padding: 1.3rem 0;
      border-radius: 999px;
      font-size: 1rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      margin-bottom: 1rem;
    }

    .btn-create {
      background: linear-gradient(90deg, #3D73FE 0%, #9A73FF 100%);
      color: white;
    }

    .btn-signin {
      background: white;
      color: #3D73FE;
      border: 2px solid #3D73FE;
      padding: 1.1rem 0;
    }

    .modal-note {
      background: #EDF2FF;
      font-size: 0.85rem;
      padding: 1rem 0.75rem;
      border-radius: 12px;
    }

    .modal-input {
      width: 100%;
      padding: 1rem 1.5rem;
      border-radius: 999px;
      border: none;
      margin-bottom: 1rem;
      font-size: 1rem;
      background: #f3f3f3;
    }

    .modal-buttons-row {
      display: flex;
      gap: 0.75rem;
      justify-content: space-between;
    }

    .btn-outline {
      background: white;
      color: #3D73FE;
      border: 2px solid #3D73FE;
    }

    .btn-filled {
      background: linear-gradient(90deg, #3D73FE 0%, #9A73FF 100%);
      color: white;
    }

    .modal-link {
      font-size: 0.85rem;
      color: #3D73FE;
      border: none;
      text-decoration: none;
      margin-top: 0.5rem;
      display: inline-block;
      font-weight: 600;
    }

    .modal-confirmed-email {
      background: #f1f3fc;
      padding: 1rem 1.5rem;
      border-radius: 12px;
      font-size: 0.9rem;
      color: #353F50;
      width: fit-content;
      margin: auto;
      max-width: 100%;
      text-overflow: ellipsis;
      margin-bottom: 0.25rem !important;
    }

    .email-icon {
      width: 120px;
      display: block;
      margin: 0 auto 1.5rem;
    }

    /* judging-section */
    .judging-section {
      background: #EFEFEF;
      border-radius: 30px;
      padding: 2.5rem 1.5rem;
      margin: 1.5rem 0;
      text-align: center;
    }
    .judging-section img {
      width: 170px;
      height: auto;
      margin-bottom: 1.25rem;
      margin: auto;
    }
    .judging-section h2 {
      font-size: 1.75rem;
      font-weight: 700;
      color: #353F50;
      margin: 0 0 0.5rem;
    }
    .judging-section p {
      font-size: 0.875rem;
      color: #353F50;
      margin: 0.25rem 0;
      line-height: 1.4;
    }

    /* winners-section */
    .grand-winners-section {
      background: linear-gradient(90deg, #90CE1A 0%, #2DBA69 100%);
      border-radius: 30px;
      padding: 2rem 1.5rem;
      margin: 2rem 0;
    }
    .grand-winners-section h2 {
      color: #fff;
      text-align: center;
      font-size: 1.8rem;
      font-weight: 700;
      margin: 0 0 1.5rem;
    }
    .most-voted-card {
      background: #fff;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      text-align: center;
      margin: 1rem 0;
    }
    .most-voted-header {
      display: flex;
      align-items: center;
      padding: 1.5rem 1.5rem 1rem;
      gap: 1rem;
    }
    .most-voted-header img {
      width: 50px;
      height: 50px;
      flex-shrink: 0;
    }
    .most-voted-header h3 {
      margin: 0;
      font-size: 1.25rem;
      font-weight: 700;
      color: #353F50;
      text-align: left;
    }
    .most-voted-amount {
      background: #FFEFB9;
      padding: 0.5rem 1rem;
      font-size: 1.5rem;
      font-weight: 900;
      color: #353F50;
      font-style: italic;
    }
    .most-voted-cover {
      width: 60%;
      display: block;
      margin: 1.5rem auto 1rem;
      max-width: 300px;
    }
    .most-voted-content {
      padding: 0 1.5rem 2rem;
    }
    .most-voted-content h4 {
      margin: 0 0 0.5rem;
      font-size: 1.25rem;
      font-weight: 700;
      color: #353F50;
    }
    .most-voted-content .author {
      margin: 0 0 1rem;
      font-size: 0.875rem;
      color: #A0A0A0;
    }
    .most-voted-button {
      display: inline-block;
      background: linear-gradient(90deg, #FFD600 0%, #FFB800 100%);
      color: #353F50;
      border-radius: 40px;
      padding: 1rem 2rem;
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      width: 100%;
    }
    .most-voted-button img {
      vertical-align: middle;
      margin-right: 0.5rem;
      width: 20px;
      height: auto;
    }
    .most-voted-button {
      cursor: pointer;
    }