* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #5e5e5e;
    background: url('../content/bgs.jpg') right bottom fixed;
    background-size: 1000px;
    line-height: 1.6;
}

h1,h2,h3{
    line-height: 1.24;
    font-weight: 500!important;
}

.kin-wrapper {
    background: #2b2a27;
    max-width: 1400px;
    margin: 14px auto;
    position: relative;
}

.kin-wrapper-inner {
    background: #a72f33;
    padding: 1px;
}

.kin-header {
    background: url('../content/menu_background.webp');
    padding: 15px 30px;
    position: relative;
}



.kin-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kin-logo img {
    height: 32px;
}

.kin-logo a{
    line-height: 0;
}

.kin-menu-toggle {
    display: none;
    background: #a72f33;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
}

.kin-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.kin-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.kin-nav a:hover {
    opacity: 0.8;
}

.kin-btn-primary {
    background: #a72f33;
    color: white;
    border: none;
    padding: 12px 28px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.kin-btn-primary:hover {
    background: #8c2529;
}

.kin-btn-secondary {
    background: white;
    color: #a72f33;
    border: none;
    padding: 12px 28px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.kin-btn-secondary:hover {
    background: #f0f0f0;
}

.kin-hero {
    background: url('../content/hero_bg.png') right bottom/cover no-repeat;
    background-size: cover;
    padding: 100px 30px;
    text-align: center;
    position: relative;
}

.kin-hero:after {
    content: '';
    background: url('../content/border1.webp') repeat-x;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.kin-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.kin-hero-title {
    font-family: 'Bevan', serif;
    font-size: 4rem;
    color: white;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.kin-hero-title span {
    color: #202020;
}

.kin-hero-text {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.kin-price-badge {
    display: inline-block;
    background: #202020;
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    padding: 4px 40px 3px 40px;
}

.kin-deadline {
    color: white;
    font-size: 1.5rem;
    margin: 30px 0;
}

.kin-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.kin-countdown-item {
    background: #202020;
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.kin-countdown-value {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.kin-countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.kin-section {
    padding: 80px 30px;
}

.kin-section-title {
    font-family: 'Bevan', serif;
    color: white;
    text-transform: uppercase;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.kin-tickets {
    background: #2b2a27;
}

.kin-ticket-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.kin-ticket-card {
    background: #202020;
    padding: 40px 25px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
}

.kin-ticket-card:hover {
    transform: translateY(-10px);
}

.kin-ticket-price {
    color: #a72f33;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.kin-ticket-count {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.kin-membership {
    background: #a72f33;
    text-align: center;
    padding-top: 0;
}

.kin-membership-image {
    max-width: 700px;
    margin: 0 auto 0px;
}

.kin-membership-image img {
    width: 100%;
    border-radius: 10px;
}

.kin-membership-text {
    color: white;
    max-width: 1200px;
    margin: 30px auto;
    font-size: 15px;
}

.kin-faq-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
}

.kin-slider-section {
    background: #2b2a27;
}

.kin-slider-container {
    max-width: 1000px;
    margin: 0 auto 50px;
}

.kin-slide-item {
    padding: 10px;
}

.kin-slide-item img {
    width: 100%;
    border-radius: 8px;
}

.kin-slider-text {
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.kin-winner-section {
    background: #202020;
}

.kin-winner-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.kin-winner-item {
    background: #2b2a27;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.kin-winner-label {
    color: #a72f33;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.kin-winner-value {
    color: white;
    font-size: 1.2rem;
}

.kin-calendar-section {
    background: #a72f27;
    padding: 80px 30px;
    text-align: center;
}

.kin-calendar-section img{
    max-width: 100%;
    width: auto;
}

.kin-calendar-image {
    max-width: 900px;
    margin: 0 auto 50px;
}

.kin-calendar-image img {
    width: 100%;
}



.kin-help-slider {
    max-width: 1300px;
    margin: 50px auto;
}

.kin-help-slide {
    padding: 10px;
    background: #fff;
}

.kin-help-slide img {
    width: 100%;
    border-radius: 8px;
}

.kin-all-winners {
    background: #2b2a27;
}

.kin-winners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.kin-winner-card {
    background: #202020;
    padding: 25px;
    border-radius: 10px;
}

.kin-winner-card-item {
    margin-bottom: 15px;
}

.kin-footer {
    background: #202020;
    padding: 60px 30px 30px;
    text-align: center;
}

.kin-license {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.kin-footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 40px auto;
    flex-wrap: wrap;
    gap: 20px;
}

.kin-social-icons {
    display: flex;
    gap: 20px;
}

.kin-social-icons a {
    color: white;
    font-size: 1.5rem;
}

.kin-payment-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.kin-payment-icons img {
    height: 50px;
}

.kin-help-services {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.kin-help-services a{
    line-height: 0;
}

.kin-help-services img{
    height: 50px;
    filter: brightness(0) invert(1);
}

.kin-copyright {
    color: #888;
    margin-top: 40px;
    font-size: 0.9rem;
}

.kin-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.kin-popup {
    background: #2b2a27;
    padding: 50px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.kin-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.kin-popup-title {
    font-family: 'Bevan', serif;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.kin-popup-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid #a72f33;
}

.kin-tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: white;
    padding: 15px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.kin-tab-btn.active {
    background: #a72f33;
}

.kin-tab-content {
    display: none;
}

.kin-tab-content.active {
    display: block;
}

.kin-form-group {
    margin-bottom: 25px;
}

.kin-form-input {
    width: 100%;
    padding: 15px;
    background: #202020;
    border: 1px solid #444;
    border-radius: 6px;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

.kin-form-checkbox {
    display: flex;
    align-items: center;
    color: white;
    gap: 10px;
}

.kin-error-message {
    color: #ff6b6b;
    margin-top: 10px;
    display: none;
    margin-bottom: 10px;
}

.kin-success-message {
    color: #4CAF50;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
    display: none;
}

@media (max-width: 1024px) {
    .kin-ticket-cards,
    .kin-winner-info,
    .kin-winners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kin-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .kin-menu-toggle {
        display: block;
    }

    .kin-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #2b2a27;
        padding: 20px;
        z-index: 1000;
    }

    .kin-nav.active {
        display: flex;
    }

    .kin-countdown {
        flex-wrap: wrap;
    }

    .kin-countdown-item {
        width: 100px;
        height: 100px;
    }

    .kin-footer-links {
        flex-direction: column;
    }

    .kin-ticket-cards,
    .kin-winner-info,
    .kin-winners-grid {
        grid-template-columns: 1fr;
    }
    .kin-section-title{
        font-size: 24px;
    }
}

@media(max-width: 499px){
    .kin-hero{
        padding: 40px 20px;
    }
    .kin-hero-title{
        font-size: 26px;
    }
    .kin-hero{
        background: transparent;
    }
    .kin-popup{
        padding: 40px 20px;
    }
    .kin-popup-title{
        font-size: 24px;
    }
}