
/* Base */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    line-height: 1.6;

    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;

    color: #333333;
    background: #FFFFFF;
    margin: 0;
    padding: 0;
}

.brand-hero {
    display: block;
    margin: 0 auto;
    max-width: 280px;
    height: auto;
    max-height: 50px;
    margin: 60px auto 50px;
}

.pre-brand-hero {
    display: block;
    margin: 0 auto;
    max-width: 180px;
    height: auto;
    max-height: 35px;
    margin: 35px auto 25px;
}

.about-hero {
  display: block;
  width: 100%;
  max-width: 350px;
  height: auto;
  margin: 0 auto;
}

.author-hero {
  display: block;
  width: 100%;
  max-width: 80px;
  height: auto;
  margin: 40px auto 22px auto;
}


/* Text */
h1 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #042F00;
    margin: 0;
}

h2 {
    font-size: 21px;
    font-weight: 600;
    margin: 32px 0 18px 0;
}

h3, h4 {
    font-size: 19px;
    font-weight: 600;
    margin: 32px 0 18px 0;
}

p {
    margin: 0 0 12px 0;
}

a {
    color: #333333;
    text-decoration: underline;
}

ul {
    margin: 0 0 20px 25px;
    padding: 0;
}

li {
    margin: 0 0 12px 0;
}

b {
    color: #646464;
    font-weight: bolder;
}

br {
    display: block;
    margin-bottom: 12px;
    content: " ";
}


/* Layout */
header {
    background-color: #FFFFFF;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1001;
}

footer {
    background-color: #FFFFFF;
    width: 100%;
    margin: 0 auto;
    padding: 35px 20px 35px 20px;
}

article, section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.content {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.divider {
    background-color: #D8D8D8;
    width: 100%;
    height: 1px;
    margin: 0;
    padding: 0;
}

.divider--bottom {
    margin-bottom: 40px;
}

.spacer {
    padding-bottom: 36px;
}

.spacer--1 {
    padding-bottom: 36px;
}

.spacer--2 {
    padding-bottom: 39px;
}

.spacer--3 {
    padding-bottom: 50px;
}

.spacer--4 {
    padding-bottom: 30px;
}

.spacer--5 {
    padding-bottom: 60px;
}


/* Header */
.header-section {
    min-height: var(--header-h);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.header-section a {
    text-decoration: none;
}

.logo {
    color: #111111;
    font-weight: bold;
}

.headline {
    padding-right: 20px;
    line-height: 1.2;
    color: #042F00;
}

:root { --header-h: 58px; }

#nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.burger {
    margin-left: auto;
    width: 18px;
    height: 18px;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    z-index: 1002;
}

.burger span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #333333;
    transition: transform .3s ease, opacity .3s ease, top .3s ease;
    pointer-events: none;
    z-index: 1000;
}

#nav-toggle:checked ~ header {
    padding: 0;
    background: transparent;
    cursor: default;
    pointer-events: none;
    box-shadow: none;
}

.burger span:nth-child(1) { top: 3px; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 15px; }

#nav-toggle:checked ~ header .burger {
    visibility: visible; 
    pointer-events: auto; 
    z-index: 1003; 
}

#nav-toggle:checked ~ header .burger span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
#nav-toggle:checked ~ header .burger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#nav-toggle:checked ~ header .burger span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

#nav-toggle:checked ~ header .header-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: transparent;
    z-index: 1001;
    padding: 0 20px;
    box-sizing: border-box;
}

#nav-toggle:checked ~ header::after {
    content: "";
    display: block;
    height: var(--header-h);
}

.drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    max-width: 500px;
    background: #FFFFFF;
    transform: translateX(-100%);
    transition: transform .3s ease;
    padding: var(--header-h) 15px 0 15px;
    z-index: 1000;
}

#nav-toggle:checked ~ .drawer {
    transform: translateX(0);
}

.menu li {
    margin-bottom: 0;
}

.drawer .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #D8D8D8;
}

.drawer .menu a {
    display: block;
    padding: 22px 5px;
    font-size: 15px;
    text-decoration: none;
    color: #333333;
    border-bottom: 1px solid #D8D8D8;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 999;
}

#nav-toggle:checked ~ .drawer-overlay {
    opacity: 0.7;
    pointer-events: auto;
}


/* Footer */
.footer-logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 0 0 23px 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
}

.footer-links a {
    color: #333333;
}

.footer-language {
    color: #042F00;
    font-size: 14px;
    display: inline-flex; 
    align-items: center;
}

.sr-only {
    position: absolute!important; width: 1px!important; height: 1px!important;
    padding: 0!important; margin: -1px!important; overflow: hidden!important;
    clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important;
}

.select-pill { 
    position: relative; 
    display: inline-block; 
}

.select-pill select {
    appearance:none; -webkit-appearance:none; -moz-appearance:none;
    font: inherit;
    text-transform: uppercase;
    font-weight: bold;
    color: #042F00;
    background: transparent;
    border: 1px solid #D8D8D8;
    border-radius: 9999px;
    padding: 3px 22px 3px 10px;
    margin-left: 8px;
    line-height: 1.2;
    cursor: pointer;
    outline: none;
}

.select-pill select::-ms-expand { 
    display:none; 
}

.select-pill::after {
    content: "";
    position: absolute; right: 7px; top: 50%; transform: translateY(-50%);
    width: 14px; height: 14px; pointer-events: none;
    background-repeat: no-repeat; background-size: 14px 14px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 20 20" fill="%23042F00"><path d="M5.5 7.5L10 12l4.5-4.5"/></svg>');
    opacity: .9;
}


/* Homepage */
.home-container {
    background-color: #F6FFF4;
}


/* Article */
.article-section {
    margin: 50px auto;
}

.article-section p {
    line-height: 1.7;
    margin-bottom: 25px;
}

.article-section b {
    line-height: 1.6;
    display: inline-block;
    margin-bottom: 10px;
}

.article-section li {
    line-height: 1.7;
}

.article-section ul {
    line-height: 1.6;
    margin-bottom: 30px
}

.article-title {
    font-size: 19px;
    font-weight: bold;
    line-height: 1.5;
    text-decoration: underline;
}

.article-desc {
    font-size: 17px;
    line-height: 1.5;
    padding: 15px 0 35px;
}

.article-data {
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0 10px 0
}

.article-headline {
    background-color: #FFFFFF;
    color: #042F00;
    border: 1px solid #D8D8D8;
    padding: 1px 6px;
    border-radius: 4px;
}

.article-load {
    font-weight: bold;
    text-align: center;
    text-decoration: underline;
    cursor: pointer;
}

.related-container {
    background-color: #FFFFFF;
}


/* Form */
.form-container {
    background-color: #FFFFFF;
    border: 1px solid #D8D8D8;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}


/* Apps */
.app-container {
    background-color: #F6FFF4;
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.app-buttons img {
    width: 190px;
}


/* Content */
.content-container {
    background-color: #FFFFFF;
}

.content-section {
    width: 100%;
    max-width: 870px;
    text-align: center;
    padding: 0;
    margin: 0 auto;
}

.content-visual {
    box-sizing: border-box;
    width: 100%;
    max-width: 870px;
    text-align: center;
    margin: 0 auto;
    line-height: 0;
    font-size: 0;
}

.content-visual .adsbygoogle {
    display: block;
    width: 100%;
    margin: 0 auto;
    line-height: 0;
    height: auto !important;
    overflow: hidden;
}

.heading-main {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #042F00;
    margin: 0;
}

.title {
    line-height: 1.4;
    padding: 0;
}

.desc {
    font-size: 17px;
    line-height: 1.6;
    text-align: center;
    padding: 23px 0 0 0;
}

.desc--contentbox {
    padding: 8px 0 0 0;
}

.desc--smallbox {
    padding: 0;
}

.remain {
    font-size: 12px;
    text-align: center;
    color: #999999;
    margin: 0;
    padding-top: 15px;
}

.sponsored {
    font-size: 12px;
    text-align: center;
    color: #999999;
    margin: 0;
    padding: 4px 0 4px 0;
}

.interactive-form {
    padding: 12px 20px;
    text-align: center;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid #D8D8D8;
    border-bottom: none;
}

.interactive-content {
    padding: 12px 0;
    text-align: center;
    box-sizing: border-box;
}

.interactive-reward {
    padding: 25px 0 35px 0;
    text-align: center;
    box-sizing: border-box;
}

.interactive-reward .indicator-line {
    font-weight: normal;
}


/* Indicator */
.indicator-line {
  display: inline;
  font-size: 14px;
  font-weight: bold;
  color: #333333;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.3;
  transition: opacity .25s ease;
  opacity: 1;
}

.indicator-line::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px 7px 0 0;
  vertical-align: text-top;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: dot-pulse 1.6s infinite;
}

.indicator-line.is-fading { 
    opacity: 0; 
    pointer-events: none; 
}

@media (max-width: 480px) {
    .indicator-line { white-space: normal; }

}

@keyframes dot-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .indicator-line { transition: none; }
    .indicator-line::before { animation: none; }
}


/* GAM */
#div-gpt-ad-top-anchor,
#div-gpt-ad-bottom-anchor{
    position: fixed !important;
    left: 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background: transparent;
    z-index: 999999;
    display: block;
}

#div-gpt-ad-top-anchor{ top: 0; }
#div-gpt-ad-bottom-anchor{ bottom: 0; }

body.has-bottom-anchor{
    padding-bottom: calc(var(--bottom-anchor-h, 50px) + env(safe-area-inset-bottom));
}

#div-gpt-ad-pre-static,
#div-gpt-ad-main-static,
#div-gpt-ad-thanx-static,
#div-gpt-ad-post-static,
div[id^="div-gpt-ad-pre-dynamic-"],
div[id^="div-gpt-ad-main-dynamic-"] {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    background: transparent;
    line-height: 0;
    z-index: 99999;
}

#div-gpt-ad-interstitial,
#div-gpt-ad-rewarded {
    width: 100%;
    text-align: center;
}


/* Buttons */
.line-container {
    width: 100%;
    max-width: 870px;
    margin: 0 auto;
}

.line-button {
    font-size: 16px;
    font-weight: bold;
}

.line-button a {
    background-color: #FFFFFF;
    color: #111111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.line-button--dark a {
    background-color: #111111;
    color: #FFFFFF;
}

.bubble-container {
    width: 100%;
    max-width: 900px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 20px;
}

.bubble-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
}

.bubble-button {
    flex: 1 1 calc(50% - 7.5px);
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.bubble-button a {
    background-color: #FFFFFF;
    color: #111111;
    border: 1px solid #D8D8D8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 16px 20px;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.bubble-button--dark a {
    background-color: #111111;
    color: #FFFFFF;
    border-color: #111111;
}

.arrow-icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}


/* Loader */
#page-loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: all;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 6px solid #cccccc;
    border-top: 6px solid #111111;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#page-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}


/* Responsive */
@media (max-width: 767px) {
    .article-section {
        margin: 40px auto;
    }

    .article-desc {
        font-size: 17px;
   }

   .article-data {
        font-size: 14px;
    }

    .header-section {
        font-size: 15px;
    }
    
    h1 {
        font-size: 22px;
    }

    .title--reward h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 19px;
    }

    h3, h4 {
        font-size: 17px;
    }

    .heading-main {
        font-size: 22px;
    }

    .desc {
        font-size: 16px;
    }

    .line-button {
        font-size: 16px;
    }

    .line-button a {
        padding: 25px 20px;
    }

    .bubble-button {
        font-size: 16px;
        flex: 1 1 100%;
    }

    .arrow-icon {
        width: 16px;
        height: 16px;
    }
}