@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
  list-style: none;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
}

a img {
  border: none;
}

img {
  display: block;
  border: none;
}


* {
  font-family: "Noto Sans TC", sans-serif;
  line-height: 1.5;
}

.fixed_btn .signUp_btn,
.fixed_btn .vote_btn {
  width: 83px;
  height: 100px;
  background-size: contain;
  display: inline-block;
  background-repeat: no-repeat;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (max-width: 1440px) {
  .fixed_btn .signUp_btn,
  .fixed_btn .vote_btn {
    width: 70px;
    height: 84px;
  }
}
@media (max-width: 980px) {
  .fixed_btn .signUp_btn,
  .fixed_btn .vote_btn {
    width: 42.5vw;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 980px) {
  .fixed_btn .signUp_btn span,
  .fixed_btn .vote_btn span {
    position: relative;
  }
  .fixed_btn .signUp_btn span::before,
  .fixed_btn .vote_btn span::before {
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    transform: translateY(-50%);
  }
}

.signUp_btn {
  background-image: url(../images/signUp_btn.svg);
}
@media screen and (min-width: 981px) {
  .signUp_btn:hover {
    background-image: url(../images/signUp_btn_hover.svg);
  }
  .signUp_btn:active {
    background-image: url(../images/signup_active.svg);
  }
}
@media (max-width: 980px) {
  .signUp_btn {
    background-color: #ff8d00;
  }
}
@media (max-width: 980px) {
  .signUp_btn span {
    transform: translateX(20px);
  }
  .signUp_btn span::before {
    background-image: url(../images/camera_icon.svg);
    width: 30px;
    height: 28px;
    left: -40px;
  }
}

.vote_btn {
  background-image: url(../images/vote_btn.svg);
}
@media screen and (min-width: 981px) {
  .vote_btn:hover {
    background-image: url(../images/vote_btn_hover.svg);
  }
  .vote_btn:active {
    background-image: url(../images/vote_btn_active.svg);
  }
}
@media (max-width: 980px) {
  .vote_btn {
    background-color: #61c7d9;
  }
}
@media (max-width: 980px) {
  .vote_btn span {
    transform: translateX(20px);
  }
  .vote_btn span::before {
    background-image: url(../images/vote_icon.svg);
    width: 39px;
    height: 30px;
    left: -50px;
  }
}

.banner {
  width: 100%;
  position: relative;
}
.banner .m {
  display: none;
}
@media (max-width: 980px) {
  .banner .m {
    display: block;
    position: relative;
  }
}
@media (max-width: 980px) {
  .banner .pc {
    display: none;
  }
}
.banner img {
  width: 100%;
}

.sec {
  position: relative;
}
.sec::before, .sec:after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sec .title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 55px;
  letter-spacing: 3px;
}
@media (max-width: 980px) {
  .sec .title {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
.sec .title:before, .sec .title:after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 4px);
}
@media (max-width: 980px) {
  .sec .title:before, .sec .title:after {
    bottom: 100%;
    transform: scale(0.75) translateX(-70%);
  }
}
.sec .title:after {
  top: calc(100% + 6px);
  width: 60px;
  height: 10px;
}
@media (max-width: 980px) {
  .sec .title:after {
    transform: scale(0.75) translateX(-65%);
  }
}
.sec .container {
  max-width: 960px;
  width: 100%;
  margin: auto;
  font-family: "Noto Sans TC", sans-serif;
}
@media (max-width: 1440px) {
  .sec .container {
    max-width: 920px;
  }
}
@media (max-width: 980px) {
  .sec .container {
    padding: 0 20px;
  }
}

.intro {
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(125, 125, 125) 60%, rgb(255, 255, 255) 100%);
  position: relative;
}
.intro::before, .intro:after {
  z-index: 1;
}
@media (max-width: 980px) {
  .intro::before, .intro:after {
    transform: scale(1.6);
  }
}
.intro::before {
  background-image: url(../images/sydney_logo_square.svg);
  height: unset;
  width: 12.6041666667%;
  padding-bottom: 12.6041666667%;
  left: -1vw;
  top: 50px;
}
@media (max-width: 980px) {
  .intro::before {
    left: 0.4vw;
  }
}
.intro:after {
  background-image: url(../images/sydney_logo_round.svg);
  width: 10.6770833333%;
  padding-bottom: 10.6770833333%;
  right: 4vw;
  top: 102px;
}
@media (max-width: 980px) {
  .intro:after {
    right: -2vw;
  }
}
.intro .container {
  padding: 157px 20px 62px;
  text-align: center;
}
@media (max-width: 980px) {
  .intro .container {
    padding-top: 130px;
    padding-bottom: 30px;
  }
}
.intro_title {
  color: rgb(250, 235, 0);
}
.intro_title:before {
  width: 65px;
  height: 70px;
  background-image: url(../images/activity_intro_title_logo.svg);
}
@media (max-width: 980px) {
  .intro_title:before {
    transform: scale(0.75) translateX(-60%);
  }
}
.intro_title:after {
  background-image: url(../images/yellow_wave.png);
}
.intro .white {
  color: white;
  font-size: 20px;
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
}
@media (max-width: 980px) {
  .intro .white {
    font-size: 16px;
  }
}
.intro .yellow {
  color: rgb(250, 235, 0);
  font-size: 24px;
  font-weight: bold;
  display: block;
  letter-spacing: 1px;
  margin-bottom: 32px;
}
@media (max-width: 980px) {
  .intro .yellow {
    font-size: 18px;
  }
}
.intro .btn {
  background-color: #ff8d00;
  font-size: 24px;
  color: white;
  max-width: 300px;
  font-weight: 500;
  width: 100%;
  display: inline-block;
  padding: 10px;
  letter-spacing: 1px;
  border-radius: 29px;
  box-shadow: 1px 7px 0 #ba6700;
  transition: all 0.3s ease;
}
@media (max-width: 980px) {
  .intro .btn {
    max-width: 170px;
    font-size: 18px;
  }
}
.intro .btn:hover {
  background-color: #1b80de;
  box-shadow: 1px 7px 0 #2f6ca5;
}
.intro .btn:active {
  background-color: #e26c6c;
  box-shadow: none;
}

.score {
  padding-top: 150px;
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 980px) {
  .score {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
.score:before {
  background-image: url(../images/square_red_logo.svg);
  width: 13.125%;
  padding-bottom: 10.625%;
  left: -1vw;
  top: 50%;
}
@media (max-width: 980px) {
  .score:before {
    display: none;
  }
}
.score:after {
  background-image: url(../images/sydney_blue_logo.svg);
  width: 12.96875%;
  padding-bottom: 12.96875%;
  right: -32px;
  bottom: 85px;
}
@media (max-width: 980px) {
  .score:after {
    display: none;
  }
}
.score_title {
  color: #4f4431;
}
.score_title::before {
  background-image: url(../images/note_logo.svg);
  width: 99px;
  height: 70px;
}
.score_title:after {
  background-image: url(../images/brown_wave.png);
}
.score .container {
  position: relative;
}
.score .container::before, .score .container:after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1440px) {
  .score .container::before, .score .container:after {
    transform: scale(0.87);
  }
}
@media (max-width: 980px) {
  .score .container::before, .score .container:after {
    transform: scale(1.2);
  }
}
.score .container:before {
  background-image: url(../images/travel_ticket_logo.svg);
  width: 22.7083333333%;
  padding-bottom: 16.5625%;
  right: calc(100% - 5px);
  top: -200px;
}
@media (max-width: 1440px) {
  .score .container:before {
    right: calc(100% - 35px);
  }
}
@media (max-width: 980px) {
  .score .container:before {
    top: -110px;
    right: calc(100% - 50px);
  }
}
.score .container:after {
  background-image: url(../images/sydney_australia_logo_left.svg);
  width: 28.2291666667%;
  padding-bottom: 17.8125%;
  top: -80px;
  left: calc(100% - 25px);
}
@media (max-width: 1440px) {
  .score .container:after {
    left: calc(100% - 55px);
  }
}
.score .container > p {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 52px;
}
@media (max-width: 980px) {
  .score .container > p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.score .content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 980px) {
  .score .content {
    gap: 20px;
    flex-direction: column;
  }
}
.score .content_box {
  width: 50%;
}
@media (max-width: 980px) {
  .score .content_box {
    width: 100%;
  }
}
.score .content_img {
  display: flex;
  justify-content: center;
  max-width: 200px;
  width: 100%;
  margin: auto;
}
@media (max-width: 980px) {
  .score .content_img {
    max-width: 130px;
  }
}
.score .content_img img {
  width: 100%;
}
.score .content_text {
  margin: 13px auto 0;
  font-weight: 500;
}
.score .content_text .subtitle {
  color: #ef4b57;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 26px;
}
@media (max-width: 980px) {
  .score .content_text .subtitle {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.score .content .decimal {
  padding-left: 20px;
}
.score .content .decimal li {
  list-style: decimal;
  padding-left: 4px;
  line-height: 1.8;
}
@media (max-width: 980px) {
  .score .content .decimal li {
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
.score .content .percentage_list {
  margin-top: 12px;
}
.score .content .percentage_list li {
  display: flex;
  justify-content: space-between;
  height: 54px;
  margin-bottom: 8px;
  border-radius: 10px;
  overflow: hidden;
}
.score .content .percentage_list li p {
  background-color: rgb(248, 248, 248);
  display: flex;
  align-items: center;
  padding: 16px;
  width: 100%;
}
@media (max-width: 980px) {
  .score .content .percentage_list li p {
    padding: 4px 10px;
  }
}
.score .content .percentage_list li span {
  background-color: #ffe3d1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(141, 19, 28);
  font-size: 22px;
  font-weight: 900;
  font-family: "Inter", sans-serif;
  letter-spacing: 1.5px;
  padding-left: 5px;
}
@media (max-width: 980px) {
  .score .content .percentage_list li span {
    font-size: 16px;
    min-width: 48px;
  }
}
.score .content .percentage_list li .thirty {
  min-width: 30.7%;
}
.score .content .percentage_list li .forty {
  min-width: 41%;
}
.score .content .percentage_list li .fifteen {
  min-width: 15.2%;
}

.step {
  background-color: rgb(48, 80, 155);
  color: white;
  position: relative;
  padding-top: 168px;
  padding-bottom: 91px;
}
@media (max-width: 980px) {
  .step {
    padding-top: 130px;
    padding-bottom: 70px;
  }
}
.step::before, .step:after {
  background-image: url(../images/envelope_line.svg);
  width: 103%;
  padding-bottom: 0.46875%;
  background-size: cover;
  z-index: 2;
  left: 49%;
  transform: translateX(-50%);
}
.step:before {
  top: -1px;
}
.step:after {
  top: 100%;
}
.step .firework {
  position: absolute;
  width: 24.1145833333%;
  padding-bottom: 25.8333333333%;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 980px) {
  .step .firework {
    max-width: 300px;
    width: 47.2448979592%;
    padding-bottom: 50.612244898%;
  }
}
.step .firework_r {
  background-image: url(../images/firework_right.png);
  right: 0;
  top: 0;
}
.step .firework_l {
  background-image: url(../images/firework_left.png);
  left: 0;
  top: 0;
}
.step .container {
  max-width: 1080px;
}
@media (max-width: 1440px) {
  .step .container {
    max-width: 1010px;
  }
}
@media (max-width: 980px) {
  .step .container {
    padding: 0 15px;
  }
}
.step_title {
  margin-bottom: 40px;
}
.step_title::before {
  background-image: url(../images/process_map_icon.svg);
  width: 76px;
  height: 70px;
}
.step_title:after {
  background-image: url(../images/white_wave.png);
}
.step_content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 65px;
}
@media (max-width: 980px) {
  .step_content {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
  }
}
.step_box {
  max-width: 290px;
  width: 100%;
  text-align: center;
  position: relative;
}
@media (max-width: 980px) {
  .step_box {
    margin-top: 10px;
  }
}
.step_box:after {
  background-size: contain;
  background-repeat: no-repeat;
  top: 51.5%;
  transform: translateY(-50%);
}
@media (max-width: 1440px) {
  .step_box:after {
    transform: scale(0.8) translateY(-50%);
  }
}
@media (max-width: 980px) {
  .step_box:after {
    display: none;
  }
}
.step_box p {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 980px) {
  .step_box p {
    font-size: 18px;
  }
}
.step_box span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
@media (max-width: 980px) {
  .step_box span {
    line-height: 1.5;
    font-size: 16px;
  }
}
.step_box .step_img {
  margin: 0 auto 16px;
}
.step_box .step_img img {
  width: 100%;
}
.step_box:nth-child(1):after {
  content: "";
  position: absolute;
  background-image: url(../images/line_arr1.svg);
  width: 86px;
  height: 28px;
  left: calc(100% + 10px);
}
@media (max-width: 1440px) {
  .step_box:nth-child(1):after {
    left: calc(100% - 14px);
  }
}
.step_box:nth-child(1) .step_img {
  max-width: 200px;
  width: 100%;
}
@media (max-width: 980px) {
  .step_box:nth-child(1) .step_img {
    width: 120px;
  }
}
.step_box:nth-child(2) .step_img {
  max-width: 190px;
  width: 100%;
}
@media (max-width: 980px) {
  .step_box:nth-child(2) .step_img {
    width: 114px;
  }
}
.step_box:nth-child(2) {
  margin-top: 95px;
}
@media (max-width: 980px) {
  .step_box:nth-child(2) {
    margin: unset;
  }
}
.step_box:nth-child(3):after {
  content: "";
  position: absolute;
  background-image: url(../images/line_arr2.svg);
  width: 85px;
  height: 28px;
  right: calc(100% + 10px);
}
@media (max-width: 1440px) {
  .step_box:nth-child(3):after {
    right: calc(100% - 13px);
  }
}
.step_box:nth-child(3) .step_img {
  max-width: 155px;
  width: 100%;
}
@media (max-width: 980px) {
  .step_box:nth-child(3) .step_img {
    width: 93px;
  }
}
.step .table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 5px;
}
.step .table th,
.step .table td {
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 980px) {
  .step .table th,
  .step .table td {
    font-size: 14px;
  }
}
.step .table th {
  text-align: center;
  background-color: #ef4b57;
  height: 60px;
}
@media (max-width: 980px) {
  .step .table th {
    height: 45px;
  }
}
.step .table th:nth-child(1) {
  width: 22%;
}
@media (max-width: 980px) {
  .step .table th:nth-child(1) {
    width: 18%;
  }
}
.step .table th:nth-child(2) {
  width: 15%;
}
@media (max-width: 980px) {
  .step .table th:nth-child(2) {
    min-width: 85px;
  }
}
.step .table th:nth-child(3) {
  width: 63.2%;
}
.step .table td {
  padding: 16.5px 5px;
  text-align: center;
  background-color: #fff;
  color: black;
}
@media (max-width: 980px) {
  .step .table td {
    padding: 16.5px 7px;
  }
}

.mission {
  background-color: #fffee9;
  padding-top: 168px;
  padding-bottom: 145px;
  position: relative;
}
@media (max-width: 980px) {
  .mission {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.mission:before {
  background-image: url(../images/stamp_wave.svg);
  width: 17.8645833333%;
  padding-bottom: 13.75%;
  left: 3vw;
  top: 97px;
}
@media (max-width: 980px) {
  .mission:before {
    display: none;
  }
}
.mission:after {
  background-image: url(../images/wave_right.svg);
  width: 16.40625%;
  padding-bottom: 12.7083333333%;
  right: 0;
  top: 172px;
}
@media (max-width: 980px) {
  .mission:after {
    display: none;
  }
}
.mission .container {
  max-width: 850px;
  margin: auto;
}
.mission_title {
  color: #4f4431;
}
.mission_title::before {
  background-image: url(../images/rocket.svg);
  width: 70px;
  height: 81px;
}
.mission_title:after {
  background-image: url(../images/brown_wave.png);
}
.mission ul {
  padding-left: 20px;
}
.mission ul li {
  list-style: decimal;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.9;
}
@media (max-width: 980px) {
  .mission ul li {
    line-height: 1.5;
    margin-bottom: 10px;
    font-size: 16px;
  }
}

.prize {
  background-color: #fffee9;
  padding-bottom: 80px;
  position: relative;
}
@media (max-width: 980px) {
  .prize {
    padding-bottom: 60px;
  }
}
.prize::before {
  background-image: url(../images/envelope_line.svg);
  width: 103%;
  height: 9px;
  height: unset;
  padding-bottom: 0.46875%;
  background-size: cover;
  bottom: 0;
  left: 49%;
  transform: translateX(-50%);
  background-repeat: repeat-x;
}
.prize:after {
  background-image: url(../images/sydney_australia_logo_right.svg);
  width: 14.0625%;
  padding-bottom: 8.8541666667%;
  bottom: calc(100% - 30px);
  right: 12vw;
}
@media (max-width: 980px) {
  .prize:after {
    display: none;
  }
}
.prize .wave {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/wave_left_complete.svg);
  width: 15.5729166667%;
  padding-bottom: 10.2604166667%;
  left: 55px;
  bottom: 135px;
}
@media (max-width: 980px) {
  .prize .wave {
    display: none;
  }
}
.prize .container {
  max-width: 850px;
  margin: auto;
  text-align: center;
}
.prize_title {
  color: #4f4431;
}
.prize_title::before {
  background-image: url(../images/presentBox_icon.svg);
  width: 59px;
  height: 78px;
}
.prize_title:after {
  background-image: url(../images/brown_wave.png);
}
.prize_text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: 30px;
}
@media (max-width: 980px) {
  .prize_text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.prize_text span {
  color: #ef4b57;
  font-weight: bold;
}
.prize_content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 96px;
}
@media (max-width: 980px) {
  .prize_content {
    gap: 30px;
  }
}
.prize_img {
  max-width: 200px;
  width: 100%;
  margin: 0 auto 18px;
}
@media (max-width: 980px) {
  .prize_img {
    max-width: 140px;
  }
}
.prize_img img {
  width: 100%;
}
.prize_box {
  font-weight: 500;
}
.prize_box p {
  color: #ef4b57;
  font-size: 24px;
  margin-bottom: 5px;
}
@media (max-width: 980px) {
  .prize_box p {
    font-size: 18px;
  }
}
.prize_box span {
  font-size: 18px;
}
@media (max-width: 980px) {
  .prize_box span {
    font-size: 16px;
  }
}

.rule {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 980px) {
  .rule {
    padding-top: 50px;
  }
}
.rule::before {
  background-image: url(../images/wave_left_half.svg);
  width: 11.9270833333%;
  padding-bottom: 10.2604166667%;
  bottom: 20.2vw;
}
.rule:after {
  background-image: url(../images/wave_right.svg);
  width: 16.40625%;
  padding-bottom: 12.7083333333%;
  right: 0;
  top: 172px;
}
.rule .container {
  position: relative;
  z-index: 2;
}
.rule_title {
  color: #4f4431;
  margin-bottom: 50px;
}
.rule_title:after {
  background-image: url(../images/brown_wave.png);
}
.rule ul {
  padding-left: 25px;
}
.rule ul li {
  list-style: decimal;
  line-height: 1.9;
}
@media (max-width: 980px) {
  .rule ul li {
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
.rule ul li a {
  color: black;
  word-break: break-all;
}

.winner {
  background-color: #fffee9;
  padding: 160px 0 50px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 980px) {
  .winner {
    padding: 100px 0;
  }
}
.winner .winner_wave {
  position: absolute;
  background-image: url(../images/sydney_australia_logo_left.svg);
  width: 14.1145833333%;
  padding-bottom: 8.90625%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 0;
  top: 43%;
}
@media (max-width: 980px) {
  .winner .winner_wave {
    display: none;
  }
}
.winner:before {
  content: "";
  position: absolute;
  background-image: url(../images/stamp_wave.svg);
  width: 17.8645833333%;
  padding-bottom: 13.75%;
  left: 3vw;
  top: 97px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 980px) {
  .winner:before {
    display: none;
  }
}
.winner:after {
  content: "";
  position: absolute;
  background-image: url(../images/envelope_line.svg);
  width: 103%;
  height: 9px;
  height: unset;
  padding-bottom: 0.46875%;
  background-size: cover;
  top: 0;
  left: 49%;
  transform: translateX(-50%);
  background-repeat: repeat-x;
}
.winner_title {
  color: #4f4431;
  margin-bottom: 20px;
}
@media (max-width: 980px) {
  .winner_title {
    margin-bottom: 15px;
  }
}
.winner_title:after {
  background-image: url(../images/brown_wave.png);
}
.winner .winner_intro {
  text-align: center;
  font-size: 18px;
  color: #000000;
  letter-spacing: 0.3px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: 50px;
}
@media (max-width: 980px) {
  .winner .winner_intro {
    font-size: 16px;
    margin-bottom: 35px;
  }
}
.winner .main_winner_card {
  background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
  border-radius: 16px;
  padding: 45px 45px 30px;
  margin-bottom: 70px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.059);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.winner .main_winner_card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(239, 75, 86, 0.7450980392) 0%, rgba(250, 233, 0, 0.7882352941) 33%, rgba(97, 199, 217, 0.8549019608) 100%);
}
@media (max-width: 980px) {
  .winner .main_winner_card {
    padding: 28px 10px;
    margin-bottom: 40px;
    border-radius: 16px;
  }
}
.winner .main_winner_card .winner_subtitle {
  font-size: 26px;
  font-weight: 700;
  color: #4f4431;
  margin-bottom: 15px;
  padding-bottom: 25px;
  padding-left: 50px;
  border-bottom: 2px dashed rgba(232, 232, 232, 0.8);
  letter-spacing: 1px;
  position: relative;
}
.winner .main_winner_card .winner_subtitle:before {
  content: "";
  position: absolute;
  background-image: url(../images/medal.svg);
  filter: drop-shadow(2px 3px 10px rgba(117, 117, 117, 0.308));
  width: 24.96px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
  left: 12px;
  top: -5px;
}
@media (max-width: 980px) {
  .winner .main_winner_card .winner_subtitle:before {
    width: 21.84px;
    height: 42px;
    top: -6px;
    left: 12px;
  }
}
@media (max-width: 980px) {
  .winner .main_winner_card .winner_subtitle {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 20px;
  }
}
.winner .main_winner_card .main_winner_content {
  padding-left: 10px;
}
.winner .main_winner_card .main_winner_content .winner_info {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 20px 0 20px;
  margin-bottom: 10px;
  background: linear-gradient(to right, rgba(255, 250, 240, 0.6) 0%, transparent 100%);
}
@media (max-width: 980px) {
  .winner .main_winner_card .main_winner_content .winner_info {
    flex-direction: column;
    gap: 10px;
    padding: 16px 0 10px 15px;
    margin-bottom: 0;
  }
}
.winner .main_winner_card .main_winner_content .winner_info:last-child {
  margin-bottom: 0;
}
.winner .main_winner_card .main_winner_content .winner_info .info_label {
  font-size: 20px;
  font-weight: 700;
  color: #4f4431;
  min-width: 110px;
  flex-shrink: 0;
  position: relative;
  padding-left: 40px;
  display: inline-block;
}
@media (max-width: 980px) {
  .winner .main_winner_card .main_winner_content .winner_info .info_label {
    font-size: 16px;
    padding-left: 25px;
  }
}
.winner .main_winner_card .main_winner_content .winner_info .info_label_winner:before {
  content: "";
  position: absolute;
  background-image: url(../images/crown1.png);
  width: 24.8px;
  height: 26.8px;
  background-size: contain;
  background-repeat: no-repeat;
  left: 1px;
  top: 50%;
  transform: translateY(-50%);
  filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 0.1));
}
@media (max-width: 980px) {
  .winner .main_winner_card .main_winner_content .winner_info .info_label_winner:before {
    left: -14px;
    top: 45%;
  }
}
.winner .main_winner_card .main_winner_content .winner_info .info_label_camera:before {
  content: "🎞️";
  position: absolute;
  font-size: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 980px) {
  .winner .main_winner_card .main_winner_content .winner_info .info_label_camera:before {
    left: -15px;
    font-size: 20px;
  }
}
.winner .main_winner_card .main_winner_content .winner_info .info_value {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  line-height: 1.65;
}
@media (max-width: 980px) {
  .winner .main_winner_card .main_winner_content .winner_info .info_value {
    font-size: 16px;
    padding-left: 25px;
  }
}

.vote_winners .vote_winner_title {
  font-size: 28px;
  font-weight: 700;
  color: #4f4431;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.vote_winners .vote_winner_title::before, .vote_winners .vote_winner_title:after {
  content: "🎁";
  font-size: 32px;
  vertical-align: middle;
  position: relative;
  top: -5px;
}
.vote_winners .vote_winner_title::before {
  margin-right: 12px;
}
.vote_winners .vote_winner_title::after {
  margin-left: 12px;
}
@media (max-width: 980px) {
  .vote_winners .vote_winner_title {
    font-size: 20px;
    margin-bottom: 5px;
    padding: 18px 0;
  }
  .vote_winners .vote_winner_title::before, .vote_winners .vote_winner_title::after {
    font-size: 26px;
    margin: 0 8px;
  }
}
.vote_winners .vote_winner_section {
  background: linear-gradient(to bottom, #ffffff 0%, #fefefe 100%);
  border-radius: 16px;
  padding: 38px;
  margin-bottom: 60px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid #f3f3f3;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.vote_winners .vote_winner_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(239, 75, 86, 0.7450980392) 0%, rgba(250, 233, 0, 0.7882352941) 33%, rgba(97, 199, 217, 0.8549019608) 100%);
}
@media (max-width: 980px) {
  .vote_winners .vote_winner_section {
    padding: 28px 20px;
    margin-bottom: 40px;
    border-radius: 14px;
  }
}
.vote_winners .vote_winner_section .vote_winner_header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 2px dashed rgba(232, 232, 232, 0.8);
}
@media (max-width: 980px) {
  .vote_winners .vote_winner_section .vote_winner_header {
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
  }
}
.vote_winners .vote_winner_section .vote_winner_header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
@media (max-width: 980px) {
  .vote_winners .vote_winner_section .vote_winner_header img {
    width: 44px;
    height: 44px;
  }
}
.vote_winners .vote_winner_section .vote_winner_header h4 {
  font-size: 22px;
  font-weight: 700;
  color: #4f4431;
  letter-spacing: 0.5px;
}
@media (max-width: 980px) {
  .vote_winners .vote_winner_section .vote_winner_header h4 {
    font-size: 18px;
  }
}
.vote_winners .vote_winner_section .winner_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px 20px;
  padding: 0 10px;
}
@media (max-width: 980px) {
  .vote_winners .vote_winner_section .winner_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 15px;
    padding: 0;
  }
}
.vote_winners .vote_winner_section .winner_list li {
  display: flex;
  align-items: start;
  align-items: center;
  gap: 14px 10px;
  padding: 8px 0;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: default;
  letter-spacing: 2px;
  word-break: break-all;
}
@media (max-width: 980px) {
  .vote_winners .vote_winner_section .winner_list li {
    font-size: 15px;
    padding: 12px 0 12px 0;
  }
}
.vote_winners .vote_winner_section .winner_list li .winner_number {
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #f1a446 0%, rgba(255, 164, 52, 0.9529411765) 100%);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(79, 68, 49, 0.3);
}
@media (max-width: 980px) {
  .vote_winners .vote_winner_section .winner_list li .winner_number {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .footer {
    transform: translateY(-50px);
  }
}