:root {
    --primary: #e04f16;
    --primary-dark: #c03a0d;
    --secondary: #1a3e6f;
    --accent: #f8b400;
    --light: #f5f7fa;
    --dark: #2d3436;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --gray: #b2bec3;
    --gray-light: #dfe6e9;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.mk-header__wrapper {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.mk-header__inner {
    width: 100%;
    max-width: 1710px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.mk-header__branding {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.mk-header__branding h1 {
    color: var(--primary);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

.mk-header__branding h1 i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.mk-header__branding p {
    display: none;
}

.mk-header__nav {
    margin-bottom: 1rem;
}

.mk-nav__list {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

.mk-nav__list li {
    margin: 0 0.5rem;
}

.mk-nav__list a {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}

.mk-nav__list a:hover {
    color: var(--primary);
}

.mk-nav__list i {
    margin-right: 0.3rem;
    font-size: 1.1rem;
}

.mk-header__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mk-header__warning {
    background-color: var(--gray-light);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.8rem;
    max-width: 500px;
}

.mk-header__warning i {
    color: var(--primary);
    margin-right: 0.3rem;
}

.mk-header__button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.mk-header__button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mk-header__button i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.mk-hero__section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../km-image/mk-bg-img-1.jpg') center/cover no-repeat;
    color: white;
    padding: 6rem 0 4rem;
    margin-top: 70px;
    text-align: center;
}

.mk-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.mk-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mk-hero__badge {
    display: inline-block;
    background-color: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.mk-hero__badge i {
    margin-right: 0.3rem;
}

.mk-hero__title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.mk-hero__title i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.mk-hero__prize {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1.5rem 0;
    animation: bounce 1.5s infinite;
}

.mk-hero__prize i {
    margin-right: 0.5rem;
}

.mk-hero__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mk-hero__description i {
    color: var(--accent);
}

.mk-hero__features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.mk-hero__features li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.7rem 1.2rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.mk-hero__features i {
    color: var(--accent);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.mk-hero__countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mk-countdown__item {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 5px;
    width: 100%;
    max-width: 110px;    
    text-align: center;
    backdrop-filter: blur(5px);
}

.mk-countdown__item span:first-child {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.mk-countdown__item span:last-child {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mk-hero__button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mk-hero__button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mk-hero__button i {
    margin-right: 0.7rem;
    font-size: 1.3rem;
}

.mk-hero__note {
    margin-top: 2rem;
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.9;
}

.mk-hero__note i {
    color: var(--accent);
    margin-right: 0.3rem;
}

.mk-benefits__section {
    padding: 5rem 0;
    background-color: white;
}

.mk-benefits__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mk-benefits__title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--secondary);
    position: relative;
}

.mk-benefits__title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 1rem auto 0;
}

.mk-benefits__title i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.mk-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
}

.mk-benefit__card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border: 1px solid var(--gray-light);
}

.mk-benefit__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mk-benefit__icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.mk-benefit__heading {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.mk-benefit__text {
    color: var(--dark);
    font-size: 0.95rem;
}

.mk-about__section {
    padding: 5rem 0;
    background-color: var(--light);
}

.mk-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.mk-about__title {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    position: relative;
}

.mk-about__title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 1rem auto;
}

.mk-about__title i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.mk-about__content {
    order: 2;
}

.mk-about__text {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.mk-about__text i {
    color: var(--primary);
    margin-right: 0.3rem;
}

.mk-about__button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
}

.mk-about__button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mk-about__button i {
    margin-right: 0.7rem;
    font-size: 1.2rem;
}

.mk-about__image {
    order: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mk-about__image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.mk-about__image:hover img {
    transform: scale(1.03);
}

.mk-winners__section {
    padding: 5rem 0;
    background-color: white;
}

.mk-winners__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mk-winners__title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--secondary);
    position: relative;
}

.mk-winners__title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 1rem auto 0;
}

.mk-winners__title i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.mk-winners__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
}

.mk-winner__card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border: 1px solid var(--gray-light);
}

.mk-winner__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mk-winner__date {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.mk-winner__numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
}

.mk-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.mk-winning {
    background-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 0 3px rgba(224, 79, 22, 0.3);
    animation: pulse 1.5s infinite;
}

.mk-checker__section {
    position: relative;
    background: linear-gradient(rgba(26, 62, 111, 0.9), rgba(26, 62, 111, 0.9)), url('../km-image/mk-bg-img-2.jpg') center/cover no-repeat;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.mk-checker__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.mk-checker__container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mk-checker__content {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mk-checker__title {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.mk-checker__title i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.mk-checker__text {
    color: var(--dark);
    margin-bottom: 2rem;
}

.mk-checker__form {
    text-align: left;
}

.mk-form__group {
    position: relative;
    margin-bottom: 1.5rem;
}

.mk-form__error {
    color: var(--danger);
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    min-height: 1rem;
}

.mk-form__group input,
.mk-form__group select,
.mk-form__group textarea {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 1px solid var(--gray-light);
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s;
}

.mk-form__group textarea {
    min-height: 120px;
    resize: vertical;
    padding: 1rem;
}

.mk-form__group input:focus,
.mk-form__group select:focus,
.mk-form__group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(224, 79, 22, 0.2);
}

.mk-form__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.mk-checkbox__group {
    margin: 2rem 0;
}

.mk-checkbox__item {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.mk-checkbox__item input {
    margin-right: 0.7rem;
    margin-top: 0.2rem;
}

.mk-checkbox__item label {
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.5;
}

.mk-checkbox__item a {
    color: var(--primary);
    text-decoration: underline;
}

.mk-checker__submit {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mk-checker__submit:hover {
    background-color: var(--primary-dark);
}

.mk-checker__submit i {
    margin-right: 0.7rem;
    font-size: 1.2rem;
}

.mk-checker__submit:disabled {
    background-color: var(--gray);
    cursor: not-allowed;
    opacity: 0.7;
}

.mk-checker__success {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.mk-checker__successcontent {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.5s;
}

.mk-checker__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}

.mk-checker__successicon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.mk-checker__successcontent h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.mk-checker__successcontent p {
    margin-bottom: 1rem;
    color: var(--dark);
}

.mk-testimonials__section {
  padding: 5rem 0;
  background-color: var(--light);
}

.mk-testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.mk-testimonials__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  position: relative;
}

.mk-testimonials__title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  margin: 1rem auto 2rem;
}

.mk-testimonials__title i {
  color: var(--accent);
  margin-right: 0.5rem;
}

.mk-testimonials__intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--dark);
}

.mk-testimonials__slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.mk-slider__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.mk-testimonial__card {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 15px;
  box-sizing: border-box;
}

.mk-testimonial__card-content {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-light);
  height: 100%;
}

.mk-testimonial__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  border: 5px solid var(--primary);
}

.mk-testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mk-testimonial__avatar i {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background-color: var(--accent);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.mk-testimonial__header {
  margin-bottom: 1rem;
}

.mk-testimonial__header h3 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.mk-testimonial__date {
  font-size: 0.8rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mk-testimonial__date i {
  margin-right: 0.3rem;
}

.mk-testimonial__text {
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.mk-testimonial__rating {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.mk-slider__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 20px;
}

.mk-slider__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  transition: all 0.3s;
}

.mk-slider__arrow:hover {
  background-color: var(--primary);
  color: white;
  transform: scale(1.1);
}

.mk-slider__dots {
  display: flex;
  gap: 10px;
}

.mk-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray-light);
  cursor: pointer;
  transition: all 0.3s;
}

.mk-slider__dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .mk-testimonials__section {
    padding: 3rem 0;
  }
  
  .mk-testimonial__card {
    padding: 0 10px;
  }
  
  .mk-testimonial__card-content {
    padding: 1.5rem;
  }
  
  .mk-testimonial__avatar {
    width: 80px;
    height: 80px;
  }
  
  .mk-slider__arrow {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}

.mk-contact__section {
    padding: 5rem 0;
    background-color: white;
}

.mk-contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.mk-contact__formarea {
    order: 1;
}

.mk-contact__title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary);
    position: relative;
}

.mk-contact__title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin-top: 1rem;
}

.mk-contact__title i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.mk-contact__form {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mk-contact__submit {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mk-contact__submit:hover {
    background-color: var(--primary-dark);
}

.mk-contact__submit i {
    margin-right: 0.7rem;
    font-size: 1.2rem;
}

.mk-contact__submit:disabled {
    background-color: var(--gray);
    cursor: not-allowed;
    opacity: 0.7;
}

.mk-responsible__area {
    order: 2;
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mk-responsible__title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary);
    position: relative;
}

.mk-responsible__title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin-top: 1rem;
}

.mk-responsible__title i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.mk-responsible__content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mk-responsible__list {
    list-style: none;
    margin: 2rem 0;
}

.mk-responsible__list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.mk-responsible__list i {
    color: var(--primary);
    margin-right: 0.7rem;
    margin-top: 0.2rem;
}

.mk-responsible__partners {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
    justify-content: center;
}

.mk-responsible__partners a {
    display: inline-block;
}

.mk-responsible__partners img {
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.mk-responsible__partners img:hover {
    opacity: 1;
}

.mk-age__badge {
    height: 70px;
}

.mk-contact__success {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.mk-contact__successbox {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.5s;
}

.mk-contact__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}

.mk-contact__icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.mk-contact__successbox h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.mk-contact__successbox p {
    margin-bottom: 1rem;
    color: var(--dark);
}

.mk-footer__section {
    position: relative;
    background: linear-gradient(rgba(26, 62, 111, 0.9), rgba(26, 62, 111, 0.9)), url('../km-image/mk-bg-img-3.jpg') center/cover no-repeat;
    color: white;
    padding: 4rem 0 2rem;
}

.mk-footer__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.mk-footer__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mk-footer__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.mk-footer__brand {
    margin-bottom: 2rem;
}

.mk-footer__brand h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mk-footer__brand h2 i {
    margin-right: 0.5rem;
    color: var(--accent);
}

.mk-footer__brand p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.mk-footer__nav {
    margin-bottom: 2rem;
}

.mk-footer__links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.mk-footer__links li a {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    transition: color 0.3s;
}

.mk-footer__links li a:hover {
    color: var(--accent);
}

.mk-footer__links i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.mk-footer__legal {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 2rem;
}

.mk-footer__legal p:first-child {
    margin-bottom: 0.5rem;
}

.mk-agegate__modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.94);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.mk-agegate__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mk-agegate__content {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.5s;
}

.mk-agegate__title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.mk-agegate__title i {
    color: var(--danger);
    margin-right: 0.5rem;
}

.mk-agegate__text {
    margin-bottom: 2rem;
    color: var(--dark);
    line-height: 1.7;
}

.mk-agegate__text p {
    margin-bottom: 1rem;
}

.mk-agegate__resources {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.mk-agegate__resources li {
    margin-bottom: 0.7rem;
}

.mk-agegate__resources a {
    color: var(--primary);
    text-decoration: underline;
}

.mk-agegate__buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.mk-agegate__confirm,
.mk-agegate__deny {
    flex: 1;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mk-agegate__confirm {
    background-color: var(--success);
    color: white;
    border: none;
}

.mk-agegate__confirm:hover {
    background-color: #219653;
}

.mk-agegate__deny {
    background-color: var(--danger);
    color: white;
    border: none;
}

.mk-agegate__deny:hover {
    background-color: #c0392b;
}

.mk-agegate__confirm i,
.mk-agegate__deny i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.mk-cookie__notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
    display: none;
}

.mk-cookie__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mk-cookie__message {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.mk-cookie__message a {
    color: var(--accent);
    text-decoration: underline;
}

.mk-cookie__accept {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.mk-cookie__accept:hover {
    background-color: var(--primary-dark);
}

.mk-cookie__accept i {
    margin-right: 0.5rem;
}

.mk-scroll__top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 25%;
    background-color: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.mk-scroll__top.active {
    opacity: 1;
    visibility: visible;
}

.mk-scroll__top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mk-register__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.mk-register__container {
    background-color: white;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    position: relative;
    animation: fadeInUp 0.5s;
}

.mk-register__brand {
    background-color: var(--secondary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.mk-register__brand h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mk-register__brand h2 i {
    margin-right: 0.5rem;
    color: var(--accent);
}

.mk-register__brand p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.mk-register__form {
    padding: 2rem;
    position: relative;
}

.mk-register__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}

.mk-register__form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    text-align: center;
}

.mk-register__submit {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.mk-register__submit:hover {
    background-color: var(--primary-dark);
}

.mk-register__submit i {
    margin-right: 0.7rem;
    font-size: 1.2rem;
}

.mk-register__submit:disabled {
    background-color: var(--gray);
    cursor: not-allowed;
    opacity: 0.7;
}

.mk-success__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.mk-success__container {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.5s;
}

.mk-success__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}

.mk-success__content i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.mk-success__content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.mk-success__content p {
    margin-bottom: 2rem;
    color: var(--dark);
}

.mk-success__button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.mk-success__button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mk-success__button i {
    margin-right: 0.7rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (min-width: 768px) {
    .mk-header__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
    }

    .mk-header__branding {
        margin-bottom: 0;
        justify-content: flex-start;
        flex: 1;
    }

    .mk-header__branding p {
        display: block;
        margin-left: 1rem;
        font-size: 0.9rem;
        opacity: 0.8;
        border-left: 1px solid var(--gray-light);
        padding-left: 1rem;
    }

    .mk-header__nav {
        margin-bottom: 0;
        flex: 2;
    }

    .mk-header__cta {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        flex: 1;
    }

    .mk-header__warning {
        margin-bottom: 0;
        margin-right: 1rem;
        text-align: right;
        font-size: 0.7rem;
        max-width: none;
    }

    .mk-header__button {
        padding: 0.5rem 1rem;
    }

    .mk-hero__title {
        font-size: 3rem;
    }

    .mk-hero__prize {
        font-size: 4rem;
    }

    .mk-about__container {
        grid-template-columns: 1fr 1fr;
    }

    .mk-about__content {
        order: 1;
    }

    .mk-about__image {
        order: 2;
    }

    .mk-contact__container {
        grid-template-columns: 1fr 1fr;
    }

    .mk-contact__formarea {
        order: 1;
    }

    .mk-responsible__area {
        order: 2;
    }

    .mk-footer__content {
        grid-template-columns: 1fr 2fr 1fr;
        text-align: left;
    }

    .mk-footer__brand {
        margin-bottom: 0;
    }

    .mk-footer__brand h2 {
        justify-content: flex-start;
    }

    .mk-footer__nav {
        margin-bottom: 0;
    }

    .mk-footer__links {
        justify-content: flex-start;
    }

    .mk-footer__legal {
        text-align: right;
    }

    .mk-cookie__container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .mk-cookie__message {
        margin-bottom: 0;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .mk-hero__title {
        font-size: 3.5rem;
    }

    .mk-hero__prize {
        font-size: 5rem;
    }

    .mk-testimonial__card {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }

    .mk-testimonial__avatar {
        margin-right: 2rem;
        margin-bottom: 0;
    }

    .mk-testimonial__date {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .mk-hero__section {
        padding-top: 320px;
    }
    .mk-hero__countdown {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .mk-countdown__item span:first-child,
    .mk-countdown__item span:last-child {
        font-size: 1rem !important;
        font-weight: 500;
    }
}

.mkpg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mkpg-hero {
    background: linear-gradient(135deg, #1e5799 0%, #207cca 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.mkpg-hero__title {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.mkpg-resp__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.mkpg-resp__card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mkpg-resp__card:hover {
    transform: translateY(-5px);
}

.mkpg-resp__card i {
    font-size: 2.5rem;
    color: #207cca;
    margin-bottom: 20px;
    display: block;
}

.mkpg-resp__card h3 {
    color: #1e5799;
    margin-top: 0;
    font-size: 1.5rem;
}

.mkpg-resp__card p {
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mkpg-hero {
        padding: 60px 0;
    }
    .mkpg-hero__title {
        font-size: 2rem;
    }
    .mkpg-resp__grid {
        grid-template-columns: 1fr;
    }
}

.mkpg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mkpg-terms-header {
    background: linear-gradient(135deg, #1a3a6a 0%, #2a5298 100%);
    color: white;
    padding: 90px 0;
    text-align: center;
}

.mkpg-main-title {
    font-size: 2.8rem;
    margin: 0;
    font-weight: 700;
}

.mkpg-terms-content {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.mkpg-terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.mkpg-terms-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.mkpg-terms-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.mkpg-terms-card i {
    font-size: 2.8rem;
    color: #2a5298;
    margin-bottom: 25px;
}

.mkpg-terms-card h3 {
    color: #1a3a6a;
    font-size: 1.6rem;
    margin: 0 0 15px 0;
}

.mkpg-terms-card p {
    color: #444;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

@media (max-width: 768px) {
    .mkpg-terms-header {
        padding: 70px 0;
    }
    .mkpg-main-title {
        font-size: 2.2rem;
    }
    .mkpg-terms-grid {
        grid-template-columns: 1fr;
    }
    .mkpg-terms-card {
        padding: 25px;
    }
}

.mkpg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mkpg-privacy-header {
    background: linear-gradient(135deg, #0d2b52 0%, #1a4b8c 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.mkpg-privacy-title {
    font-size: 3rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mkpg-privacy-content {
    padding: 70px 0;
    background-color: #f5f7fa;
}

.mkpg-privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mkpg-privacy-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 4px solid #1a4b8c;
}

.mkpg-privacy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mkpg-privacy-card i {
    font-size: 3rem;
    color: #1a4b8c;
    margin-bottom: 30px;
    display: inline-block;
}

.mkpg-privacy-card h3 {
    color: #0d2b52;
    font-size: 1.7rem;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.mkpg-privacy-card p {
    color: #444;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .mkpg-privacy-header {
        padding: 80px 0;
    }
    .mkpg-privacy-title {
        font-size: 2.4rem;
    }
    .mkpg-privacy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .mkpg-privacy-card {
        padding: 30px;
    }
}