*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter Tight', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding-top: 120px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sriracha', cursive;
}

.tya-header_main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.tya-header_container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 20px;
}

.tya-header_topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.tya-header_logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tya-header_logo h1 {
    font-size: 24px;
    color: #e63946;
}

.tya-header_logo i {
    font-size: 28px;
    color: #457b9d;
}

.tya-header_buttons {
    display: flex;
    gap: 15px;
}

.tya-header_authbtn, .tya-header_contactbtn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.tya-header_authbtn {
    background-color: #457b9d;
    color: white;
}

.tya-header_contactbtn {
    background-color: #a8dadc;
    color: #1d3557;
}

.tya-header_authbtn:hover {
    background-color: #1d3557;
    transform: translateY(-2px);
}

.tya-header_contactbtn:hover {
    background-color: #8ecae6;
    transform: translateY(-2px);
}

.tya-header_responsible {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.tya-header_responsible i {
    font-size: 24px;
    color: #e63946;
}

.tya-header_responsible p {
    font-size: 14px;
    color: #1d3557;
}

.tya-header_responsible_toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 0;
    background-color: #f8f9fa;
    border: none;
    border-radius: 4px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    color: #1d3557;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tya-header_responsible_toggle i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.tya-header_responsible_toggle:hover {
    background-color: #e9ecef;
}

.tya-auth_modal, .tya-contact_modal, .tya-success_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 2000;
    overflow-y: scroll;
}

.tya-auth_overlay, .tya-contact_overlay, .tya-success_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.tya-auth_content {
    position: relative;
    width: 100%;
    background-image: linear-gradient(rgba(29, 53, 87, 0.9), rgba(29, 53, 87, 0.9)), url('../tya-image/tya-bg-image-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 30px;
    margin-top: 120px;
    animation: tya-slideDown 0.5s ease-out;
}

.tya-contact_content {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 120px auto 0;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    animation: tya-slideDown 0.5s ease-out;
}

.tya-success_content {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 120px auto 0;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    animation: tya-slideDown 0.5s ease-out;
}

@keyframes tya-slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.tya-auth_close, .tya-contact_close, .tya-success_close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tya-contact_close, .tya-success_close {
    color: #333;
}

.tya-auth_close:hover, .tya-contact_close:hover, .tya-success_close:hover {
    transform: rotate(90deg);
}

.tya-auth_tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tya-auth_tab {
    padding: 12px 25px;
    border-radius: 30px;
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tya-auth_tab.active {
    background-color: #e63946;
    border-color: #e63946;
}

.tya-auth_tab:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.1);
}

.tya-contact_title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1d3557;
    margin-bottom: 20px;
    font-size: 24px;
}

.tya-contact_title i {
    color: #457b9d;
}

.tya-auth_form, .tya-contact_form {
    max-width: 500px;
    margin: 0 auto;
    display: none;
}

.tya-auth_form.active, .tya-contact_form.active {
    display: block;
}

.tya-form_group {
    margin-bottom: 20px;
}

.tya-form_group label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    margin-bottom: 8px;
    font-weight: 500;
}

.tya-contact_form .tya-form_group label {
    color: #1d3557;
}

.tya-form_group input, .tya-form_group select, .tya-form_group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.tya-contact_form .tya-form_group input,
.tya-contact_form .tya-form_group select,
.tya-contact_form .tya-form_group textarea {
    border-color: #ddd;
    background-color: white;
    color: #333;
}

.tya-form_group textarea {
    resize: vertical;
    min-height: 100px;
}

.tya-form_group input:focus, .tya-form_group select:focus, .tya-form_group textarea:focus {
    outline: none;
    border-color: #a8dadc;
}

.tya-password_wrap {
    position: relative;
}

.tya-password_toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    cursor: pointer;
}

.tya-contact_form .tya-password_toggle {
    color: #333;
}

.tya-form_error {
    color: #ffbe0b;
    font-size: 14px;
    margin-top: 5px;
    min-height: 18px;
}

.tya-contact_form .tya-form_error {
    color: #e63946;
}

.tya-form_checkgroup {
    margin: 20px 0;
}

.tya-custom_checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    min-height: 24px;
}

.tya-custom_checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    z-index: 2; 
}

.tya-checkbox_mark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 1;
}

.tya-contact_form .tya-checkbox_mark {
    border-color: #ddd;
}

.tya-custom_checkbox:hover .tya-checkbox_mark {
    border-color: #a8dadc;
}

.tya-custom_checkbox input:checked ~ .tya-checkbox_mark {
    background-color: #e63946;
    border-color: #e63946;
}

.tya-checkbox_mark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.tya-custom_checkbox input:checked ~ .tya-checkbox_mark::after {
    display: block;
}

.tya-custom_checkbox label {
    margin: 0;
    color: white;
    font-weight: 400;
    cursor: pointer;
}

.tya-contact_form .tya-custom_checkbox label {
    color: #333;
}

.tya-custom_checkbox a {
    color: #a8dadc;
    text-decoration: none;
}

.tya-contact_form .tya-custom_checkbox a {
    color: #457b9d;
}

.tya-custom_checkbox a:hover {
    text-decoration: underline;
}

.tya-form_submit {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    background-color: #e63946;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tya-form_submit:disabled {
    background-color: rgba(230, 57, 70, 0.5);
    cursor: not-allowed;
}

.tya-form_submit:not(:disabled):hover {
    background-color: #c1121f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tya-success_icon i {
    font-size: 60px;
    color: #4bb543;
    margin-bottom: 20px;
}

.tya-success_title {
    color: #1d3557;
    font-size: 28px;
    margin-bottom: 15px;
}

.tya-success_message {
    color: #333;
    margin-bottom: 25px;
    font-size: 16px;
}

.tya-success_btn {
    padding: 12px 25px;
    border-radius: 30px;
    background-color: #457b9d;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tya-success_btn:hover {
    background-color: #1d3557;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .tya-header_logo h1 {
        font-size: 22px;
    }
    
    .tya-header_authbtn, .tya-header_contactbtn {
        padding: 8px 16px;
    }
    
    .tya-header_responsible p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 140px;
    }
    
    .tya-header_topbar {
        flex-direction: column;
        gap: 15px;
        padding-bottom: 20px;
    }

    .tya-header_responsible {
        display: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
    }
    
    .tya-header_responsible.active {
        display: flex;
        max-height: 500px;
        opacity: 1;
        padding: 15px 0;
    }
    
    .tya-header_responsible_toggle {
        display: flex;
    }
    
    .tya-header_responsible_toggle.active i {
        transform: rotate(180deg);
    }
    
    .tya-header_buttons {
        width: 100%;
        justify-content: center;
    }
    
    .tya-header_responsible {
        flex-direction: column;
        text-align: center;
    }
    
    .tya-auth_content, .tya-contact_content, .tya-success_content {
        margin-top: 140px;
        padding: 20px;
    }
    
    .tya-auth_tabs {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .tya-header_logo h1 {
        font-size: 20px;
    }
    
    .tya-header_buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .tya-header_authbtn, .tya-header_contactbtn {
        width: 100%;
        justify-content: center;
    }
    
    .tya-auth_tab {
        width: 100%;
        justify-content: center;
    }
    
    .tya-contact_content, .tya-success_content {
        margin: 140px 15px 0;
        width: auto;
    }
}

@media (max-width: 320px) {
    .tya-header_container {
        padding: 0 10px;
    }
    
    .tya-header_logo h1 {
        font-size: 18px;
    }

    .tya-header_responsible p {
        font-size: 12px;
    }
    
    .tya-auth_content, .tya-contact_content, .tya-success_content {
        padding: 15px;
    }
}

.tya-lottery_section {
    position: relative;
    padding: 80px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../tya-image/tya-bg-image-2.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

.tya-lottery_container {
    max-width: 1450px;
    margin: 0 auto;
}

.tya-lottery_content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.tya-lottery_left {
    flex: 1;
    min-width: 300px;
}

.tya-lottery_right {
    flex: 1;
    min-width: 300px;
}

.tya-lottery_title {
    font-family: 'Sriracha', cursive;
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffd700;
    animation: tya-glow 2s infinite alternate;
}

@keyframes tya-glow {
    from {
        text-shadow: 0 0 5px #ffd700;
    }
    to {
        text-shadow: 0 0 15px #ffd700, 0 0 20px #ffd700;
    }
}

.tya-lottery_desc {
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px;
    margin-bottom: 30px;
    min-height: 60px;
}

.tya-lottery_benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.tya-benefit_card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.tya-benefit_card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 215, 0, 0.2);
}

.tya-benefit_card i {
    font-size: 24px;
    color: #ffd700;
}

.tya-nextdraw_title {
    font-family: 'Sriracha', cursive;
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.tya-nextdraw_desc {
    font-family: 'Inter Tight', sans-serif;
    margin-bottom: 25px;
    min-height: 60px;
}

.tya-jackpot_amount {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    margin-bottom: 30px;
    color: #ffd700;
    animation: tya-pulse 1.5s infinite;
}

@keyframes tya-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.tya-jackpot_amount i {
    font-size: 32px;
}

.tya-timer_wrap {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tya-timer_block {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 100px;
    border: 1px solid #ffd700;
}

.tya-timer_days,
.tya-timer_hours,
.tya-timer_minutes,
.tya-timer_seconds {
    display: block;
    font-family: 'Sriracha', cursive;
    font-size: 36px;
    color: #ffd700;
}

.tya-timer_label {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tya-lottery_authbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    margin: 0 auto;
    background-color: #e63946;
    color: white;
    border: none;
    border-radius: 30px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tya-lottery_authbtn:hover {
    background-color: #c1121f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .tya-lottery_title {
        font-size: 36px;
    }
    
    .tya-timer_block {
        min-width: 80px;
    }
    
    .tya-timer_days,
    .tya-timer_hours,
    .tya-timer_minutes,
    .tya-timer_seconds {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .tya-lottery_content {
        flex-direction: column;
    }

    .tya-lottery_left,
    .tya-lottery_right {
      margin: 0 auto;
        text-align: center;
    }
    
    .tya-lottery_title {
        font-size: 32px;
    }
    
    .tya-nextdraw_title {
        font-size: 28px;
    }
    
    .tya-jackpot_amount {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .tya-lottery_section {
        padding: 230px 5px;
    }

    .tya-lottery_left,
    .tya-lottery_right {
      width: 100%;
      max-width: 300px;
    }

    .tya-lottery_lef {
      padding: 5px 10px;
    }
    
    .tya-timer_wrap {
        justify-content: center;
    }

    .tya-lottery_benefits {
      justify-content: center;
      align-items: center;
    }
    
    .tya-timer_block {
        min-width: 70px;
        padding: 10px 15px;
    }
    
    .tya-timer_days,
    .tya-timer_hours,
    .tya-timer_minutes,
    .tya-timer_seconds {
        font-size: 24px;
    }
}

@media (max-width: 320px) {
    .tya-timer_block {
        min-width: 60px;
    }
    
    .tya-lottery_title {
        font-size: 25px;
    }

    .tya-lottery_desc {
        font-size: 15px;
        padding: 5px 10px;
    }
    
    .tya-benefit_card {
        padding: 10px 15px;
    }
}

.tya-aboutplay_section {
    position: relative;
    padding: 80px 20px;
    background-image: linear-gradient(rgba(29, 53, 87, 0.85), rgba(29, 53, 87, 0.85)), url('../tya-image/tya-bg-image-3.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.tya-aboutplay_container {
    max-width: 1450px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.tya-aboutplay_left {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tya-aboutus_block {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    animation: tya-fadeIn 1s ease-out;
}

@keyframes tya-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tya-aboutus_title {
    font-family: 'Sriracha', cursive;
    font-size: 32px;
    color: #ffd700;
    margin-bottom: 20px;
    position: relative;
}

.tya-aboutus_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ffd700;
}

.tya-aboutus_content {
    font-family: 'Inter Tight', sans-serif;
}

.tya-aboutus_content p {
    margin-bottom: 15px;
    min-height: 60px;
    line-height: 1.6;
}

.tya-aboutplay_image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.tya-aboutplay_image:hover {
    transform: scale(1.02);
}

.tya-aboutplay_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tya-howtoplay_block {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    height: 800px;
    display: flex;
    flex-direction: column;
}

.tya-howtoplay_title {
    font-family: 'Sriracha', cursive;
    font-size: 32px;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
}

.tya-steps_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex: 1;
}

.tya-step_card {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    animation: tya-cardEntrance 0.8s ease-out;
    animation-fill-mode: backwards;
}

@keyframes tya-cardEntrance {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.tya-step_card:nth-child(1) { animation-delay: 0.1s; }
.tya-step_card:nth-child(2) { animation-delay: 0.2s; }
.tya-step_card:nth-child(3) { animation-delay: 0.3s; }
.tya-step_card:nth-child(4) { animation-delay: 0.4s; }

.tya-step_card:hover {
    background-color: rgba(230, 57, 70, 0.2);
    border-color: #e63946;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tya-step_card i {
    font-size: 40px;
    color: #ffd700;
    margin-bottom: 15px;
}

.tya-step_card h3 {
    font-family: 'Sriracha', cursive;
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.tya-step_card p {
    font-family: 'Inter Tight', sans-serif;
    margin-bottom: 20px;
    flex: 1;
    min-height: 80px;
}

.tya-step_btn {
    padding: 10px 20px;
    background-color: #e63946;
    color: white;
    border: none;
    border-radius: 30px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tya-step_btn:hover {
    background-color: #c1121f;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .tya-aboutplay_container {
        flex-direction: column;
    }
    
    .tya-aboutplay_left {
        width: 100%;
    }
    
    .tya-howtoplay_block {
        height: auto;
    }
    
    .tya-steps_container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tya-aboutplay_section {
        padding: 50px 15px;
    }
    
    .tya-aboutus_title, .tya-howtoplay_title {
        font-size: 28px;
    }
    
    .tya-step_card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .tya-aboutus_block, .tya-howtoplay_block {
        padding: 20px;
    }
    
    .tya-step_card i {
        font-size: 32px;
    }
}

@media (max-width: 320px) {
    .tya-aboutplay_section {
        padding: 30px 10px;
    }
    
    .tya-aboutus_title, .tya-howtoplay_title {
        font-size: 24px;
    }
    
    .tya-step_card {
        padding: 15px;
    }
}

.tya-ticketverify_section {
    position: relative;
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.tya-ticketverify_container {
    max-width: 1450px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.tya-ticketverify_formblock {
    width: 50%;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tya-ticketverify_heading {
    font-family: 'Sriracha', cursive;
    font-size: 32px;
    color: #1d3557;
    margin-bottom: 15px;
}

.tya-ticketverify_description {
    font-family: 'Inter Tight', sans-serif;
    margin-bottom: 30px;
    min-height: 60px;
    color: #457b9d;
}

.tya-ticketverify_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tya-ticketverify_inputgroup label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1d3557;
}

.tya-ticketverify_inputgroup input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.tya-ticketverify_inputgroup input:focus {
    outline: none;
    border-color: #a8dadc;
}

.tya-ticketverify_errormsg {
    color: #e63946;
    font-size: 14px;
    margin-top: 5px;
    min-height: 18px;
}

.tya-ticketverify_checkgroup {
    margin-top: 20px;
}

.tya-ticketverify_checkbox {
    display: inline-flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    min-height: 24px;
    user-select: none;
}

.tya-ticketverify_checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 24px;
    width: 24px;
    left: 0;
    top: 0;
    margin: 0;
    z-index: 2;
}

.tya-ticketverify_checkicon {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    background-color: white;
    transition: all 0.2s ease;
}

.tya-ticketverify_checkbox:hover input ~ .tya-ticketverify_checkicon {
    border-color: #a8dadc;
}

.tya-ticketverify_checkbox input:checked ~ .tya-ticketverify_checkicon {
    background-color: #e63946;
    border-color: #e63946;
}

.tya-ticketverify_checkicon::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.tya-ticketverify_checkbox input:checked ~ .tya-ticketverify_checkicon::after {
    display: block;
}

.tya-ticketverify_checkbox label {
    margin-left: 5px;
    color: #1d3557;
    font-family: 'Inter Tight', sans-serif;
    line-height: 1.4;
}

.tya-ticketverify_checkbox a {
    color: #457b9d;
    text-decoration: none;
}

.tya-ticketverify_checkbox a:hover {
    text-decoration: underline;
}

.tya-ticketverify_submitbtn {
    padding: 15px;
    background-color: #e63946;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tya-ticketverify_submitbtn:disabled {
    background-color: rgba(230, 57, 70, 0.5);
    cursor: not-allowed;
}

.tya-ticketverify_submitbtn:not(:disabled):hover {
    background-color: #c1121f;
    transform: translateY(-2px);
}

.tya-ticketverify_resultsblock {
    width: 50%;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tya-ticketverify_resultstitle {
    font-family: 'Sriracha', cursive;
    font-size: 32px;
    color: #1d3557;
    margin-bottom: 30px;
}

.tya-ticketverify_resultscontainer {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tya-ticketverify_resultitem {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.tya-ticketverify_resultitem h4 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1d3557;
}

.tya-ticketverify_numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tya-ticketverify_number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #457b9d;
    color: white;
    border-radius: 50%;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.tya-ticketverify_winner {
    background-color: #e63946;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
}

.tya-ticketverify_successmodal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 3000;
}

.tya-ticketverify_modaloverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.tya-ticketverify_modalcontent {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 100px auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    animation: tya-ticketverify_fadein 0.5s ease-out;
}

@keyframes tya-ticketverify_fadein {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.tya-ticketverify_closebtn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.tya-ticketverify_successicon i {
    font-size: 60px;
    color: #4bb543;
    margin-bottom: 20px;
}

.tya-ticketverify_successtext {
    font-family: 'Sriracha', cursive;
    font-size: 28px;
    color: #1d3557;
    margin-bottom: 15px;
}

.tya-ticketverify_successinfo {
    font-family: 'Inter Tight', sans-serif;
    margin-bottom: 25px;
    color: #333;
}

.tya-ticketverify_confirmbtn {
    padding: 12px 25px;
    background-color: #457b9d;
    color: white;
    border: none;
    border-radius: 30px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tya-ticketverify_confirmbtn:hover {
    background-color: #1d3557;
}

@media (max-width: 1024px) {
    .tya-ticketverify_container {
        flex-direction: column;
    }
    
    .tya-ticketverify_formblock,
    .tya-ticketverify_resultsblock {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .tya-ticketverify_section {
        padding: 50px 15px;
    }
    
    .tya-ticketverify_heading,
    .tya-ticketverify_resultstitle {
        font-size: 28px;
    }
    
    .tya-ticketverify_number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .tya-ticketverify_formblock,
    .tya-ticketverify_resultsblock {
        padding: 20px;
    }
    
    .tya-ticketverify_numbers {
        justify-content: center;
    }
    
    .tya-ticketverify_modalcontent {
        padding: 30px 20px;
        margin: 50px auto;
    }
}

@media (max-width: 320px) {
    .tya-ticketverify_section {
        padding: 30px 10px;
    }
    
    .tya-ticketverify_heading,
    .tya-ticketverify_resultstitle {
        font-size: 24px;
    }
    
    .tya-ticketverify_number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

.tya-testimonials_section {
    padding: 80px 20px;
    background-color: #1d3557;
    color: white;
}

.tya-testimonials_container {
    max-width: 1450px;
    margin: 0 auto;
    text-align: center;
}

.tya-testimonials_heading {
    font-size: 42px;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.tya-testimonials_heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #e63946;
    border-radius: 2px;
}

.tya-testimonials_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.tya-testimonials_card {
    width: 350px;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    color: #333;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tya-testimonials_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.tya-testimonials_rating {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 15px;
}

.tya-testimonials_header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.tya-testimonials_avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e63946;
    margin-right: 15px;
}

.tya-testimonials_userinfo {
    flex-grow: 1;
}

.tya-testimonials_username {
    font-size: 18px;
    margin-bottom: 5px;
    color: #1d3557;
}

.tya-testimonials_date {
    font-size: 14px;
    color: #457b9d;
}

.tya-testimonials_header i {
    font-size: 24px;
    color: #e63946;
    margin-left: 10px;
}

.tya-testimonials_text {
    min-height: 120px;
    line-height: 1.7;
    position: relative;
    padding-top: 15px;
}

.tya-testimonials_text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #a8dadc;
}

@media (max-width: 1024px) {
    .tya-testimonials_card {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .tya-testimonials_heading {
        font-size: 36px;
    }
    
    .tya-testimonials_grid {
        gap: 20px;
    }
    
    .tya-testimonials_card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .tya-testimonials_section {
        padding: 60px 15px;
    }
    
    .tya-testimonials_heading {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .tya-testimonials_card {
        padding: 20px;
    }
}

@media (max-width: 320px) {
    .tya-testimonials_heading {
        font-size: 28px;
    }
    
    .tya-testimonials_header {
        flex-direction: column;
        text-align: center;
    }
    
    .tya-testimonials_avatar {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .tya-testimonials_header i {
        position: absolute;
        right: 20px;
        top: 20px;
    }
}

.tya-responsibility_section {
    padding: 80px 20px;
    background-color: #f1faee;
    color: #1d3557;
}

.tya-responsibility_container {
    max-width: 1450px;
    margin: 0 auto;
}

.tya-responsibility_heading {
    font-size: 38px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.tya-responsibility_heading i {
    color: #e63946;
    font-size: 42px;
}

.tya-responsibility_content {
    margin-bottom: 50px;
}

.tya-responsibility_paragraph {
    margin-bottom: 25px;
    min-height: 80px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tya-responsibility_paragraph i {
    font-size: 24px;
    color: #457b9d;
    margin-top: 3px;
    flex-shrink: 0;
}

.tya-responsibility_paragraph a {
    color: #e63946;
    text-decoration: none;
    font-weight: 600;
}

.tya-responsibility_paragraph a:hover {
    text-decoration: underline;
}

.tya-responsibility_partners {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.tya-responsibility_partnerlink {
    transition: transform 0.3s ease;
}

.tya-responsibility_partnerlink:hover {
    transform: translateY(-5px);
}

.tya-responsibility_partnerlogo {
    border-radius: 8px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.tya-responsibility_partnerlink:hover .tya-responsibility_partnerlogo {
    filter: grayscale(0%);
}

.tya-responsibility_actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.tya-responsibility_button {
    padding: 15px 30px;
    background-color: #457b9d;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(69, 123, 157, 0.3);
}

.tya-responsibility_button:hover {
    background-color: #1d3557;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(69, 123, 157, 0.4);
}

.tya-responsibility_legal {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    width: 100%;
    justify-content: center;
}

.tya-responsibility_ageicon {
    border-radius: 50%;
    border: 3px solid #e63946;
}

.tya-responsibility_partnerswrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
    .tya-responsibility_heading {
        font-size: 34px;
    }
    
    .tya-responsibility_paragraph {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .tya-responsibility_section {
        padding: 60px 15px;
    }
    
    .tya-responsibility_heading {
        font-size: 30px;
        flex-direction: column;
        gap: 10px;
    }
    
    .tya-responsibility_paragraph {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .tya-responsibility_paragraph i {
        margin-bottom: 10px;
    }
    
    .tya-responsibility_legal {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tya-responsibility_heading {
        font-size: 26px;
    }
    
    .tya-responsibility_partners {
        gap: 20px;
    }
    
    .tya-responsibility_partnerlogo {
        width: 120px;
        height: auto;
    }
    
    .tya-responsibility_button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .tya-responsibility_heading {
        font-size: 24px;
    }
    
    .tya-responsibility_partnerswrap {
        gap: 15px;
        padding: 15px;
    }
    
    .tya-responsibility_partnerlogo {
        width: 100px;
    }
}

.tya-faq_section {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.tya-faq_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('#');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.tya-faq_container {
    max-width: 1450px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tya-faq_heading {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #1d3557;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.tya-faq_heading i {
    font-size: 48px;
    color: #e63946;
}

.tya-faq_columns {
    display: flex;
    gap: 40px;
}

.tya-faq_category {
    flex: 1;
}

.tya-faq_subheading {
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #a8dadc;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #457b9d;
}

.tya-faq_item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.tya-faq_question {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.tya-faq_question:hover {
    background-color: #e9ecef;
}

.tya-faq_question i:first-child {
    font-size: 22px;
    color: #e63946;
    flex-shrink: 0;
}

.tya-faq_question span {
    flex-grow: 1;
    font-weight: 600;
    color: #1d3557;
}

.tya-faq_arrow {
    font-size: 24px;
    color: #457b9d;
    transition: transform 0.3s ease;
}

.tya-faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    background-color: white;
}

.tya-faq_answer p {
    padding: 0 20px;
    margin-bottom: 20px;
    min-height: 60px;
    line-height: 1.7;
    color: #333;
}

.tya-faq_item.active .tya-faq_answer {
    max-height: 500px;
    padding-top: 15px;
}

.tya-faq_item.active .tya-faq_arrow {
    transform: rotate(180deg);
}

.tya-faq_authbtn {
    width: 100%;
    padding: 15px;
    margin-top: 30px;
    background-color: #457b9d;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tya-faq_authbtn:hover {
    background-color: #1d3557;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(69, 123, 157, 0.3);
}

@media (max-width: 1024px) {
    .tya-faq_columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .tya-faq_container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .tya-faq_section {
        padding: 80px 15px;
    }
    
    .tya-faq_heading {
        font-size: 36px;
    }
    
    .tya-faq_subheading {
        font-size: 24px;
    }
    
    .tya-faqauth_content {
        padding: 30px 20px;
        margin: 30px auto;
    }
}

@media (max-width: 480px) {
    .tya-faq_container {
        padding: 30px 20px;
    }
    
    .tya-faq_heading {
        font-size: 30px;
        flex-direction: column;
        gap: 10px;
    }
    
    .tya-faq_question {
        padding: 15px;
        gap: 10px;
    }
    
    .tya-faqauth_tab {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 320px) {
    .tya-faq_heading {
        font-size: 26px;
    }
    
    .tya-faq_subheading {
        font-size: 22px;
    }
    
    .tya-faq_question span {
        font-size: 15px;
    }
}

.tya-footer_main {
    background-color: #1d3557;
    color: white;
    padding: 50px 20px 30px;
    text-align: center;
}

.tya-footer_links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tya-footer_link {
    color: #a8dadc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.tya-footer_link:hover {
    color: white;
}

.tya-footer_actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tya-footer_authbtn, .tya-footer_contactbtn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.tya-footer_authbtn {
    background-color: #e63946;
    color: white;
}

.tya-footer_contactbtn {
    background-color: #457b9d;
    color: white;
}

.tya-footer_authbtn:hover {
    background-color: #c1121f;
    transform: translateY(-3px);
}

.tya-footer_contactbtn:hover {
    background-color: #1d3557;
    transform: translateY(-3px);
}

.tya-footer_about {
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.tya-footer_copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .tya-footer_links {
        gap: 20px;
    }
    
    .tya-footer_actions {
        flex-direction: column;
        align-items: center;
    }
    
    .tya-footer_authbtn, .tya-footer_contactbtn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .tya-footer_links {
        flex-direction: column;
        gap: 15px;
    }
}

.tya-ageverification_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tya-ageverification_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.99);
}

.tya-ageverification_content {
    position: relative;
    background-color: #1d3557;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    color: white;
    animation: tya-ageverification_pop 0.5s ease-out;
}

@keyframes tya-ageverification_pop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.tya-ageverification_title {
    font-size: 28px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tya-ageverification_title i {
    font-size: 32px;
    color: #e63946;
}

.tya-ageverification_text {
    margin-bottom: 30px;
    line-height: 1.7;
}

.tya-ageverification_buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.tya-ageverification_confirm, .tya-ageverification_deny {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.tya-ageverification_confirm {
    background-color: #4bb543;
    color: white;
}

.tya-ageverification_deny {
    background-color: #e63946;
    color: white;
}

.tya-ageverification_confirm:hover {
    background-color: #3a8d33;
    transform: translateY(-3px);
}

.tya-ageverification_deny:hover {
    background-color: #c1121f;
    transform: translateY(-3px);
}

@media (max-width: 480px) {
    .tya-ageverification_content {
        padding: 30px 20px;
    }
    
    .tya-ageverification_buttons {
        flex-direction: column;
    }
    
    .tya-ageverification_confirm, .tya-ageverification_deny {
        width: 100%;
    }
}

.tya-cookies_modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(29, 53, 87, 0.95);
    color: white;
    z-index: 9998;
    padding: 20px 0;
    display: none;
}

.tya-cookies_container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.tya-cookies_textwrap {
    flex: 1;
}

.tya-cookies_message {
    line-height: 1.7;
}

.tya-cookies_message i {
    font-size: 24px;
    color: #a8dadc;
    flex-shrink: 0;
}

.tya-cookies_policylink {
    color: #a8dadc;
    text-decoration: none;
    font-weight: 600;
}

.tya-cookies_policylink:hover {
    text-decoration: underline;
}

.tya-cookies_accept {
    padding: 10px 25px;
    background-color: #e63946;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tya-cookies_accept:hover {
    background-color: #c1121f;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .tya-cookies_container {
        flex-direction: column;
        text-align: center;
    }
    
    .tya-cookies_message {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .tya-cookies_accept {
        width: 100%;
        max-width: 250px;
    }
}

.tyapage-privacy_main {
    max-width: 1450px;
    margin: 0 auto;
    padding: 50px 20px;
}

.tyapage-privacy_intro {
    text-align: center;
    margin-bottom: 60px;
}

.tyapage-privacy_title {
    font-size: 38px;
    color: #1d3557;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tyapage-privacy_overview {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    min-height: 80px;
}

.tyapage-privacy_content {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.tyapage-privacy_item {
    margin-bottom: 40px;
    min-height: 120px;
}

.tyapage-privacy_subtitle {
    font-size: 22px;
    color: #457b9d;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.tyapage-privacy_item p {
    line-height: 1.8;
    padding-left: 38px;
}

.tyapage-privacy_homebtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: #e63946;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.tyapage-privacy_homebtn:hover {
    background-color: #c1121f;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .tyapage-privacy_title {
        font-size: 30px;
        flex-direction: column;
    }
    
    .tyapage-privacy_content {
        padding: 30px 20px;
    }
    
    .tyapage-privacy_subtitle {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .tyapage-privacy_title {
        font-size: 26px;
    }
    
    .tyapage-privacy_item p {
        padding-left: 0;
    }
}

.tyapage-cookie_main {
    max-width: 1450px;
    margin: 0 auto;
    padding: 50px 20px;
    background-color: #f1faee;
}

.tyapage-cookie_header {
    text-align: center;
    margin-bottom: 50px;
}

.tyapage-cookie_title {
    font-size: 36px;
    color: #1d3557;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tyapage-cookie_intro {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    min-height: 80px;
}

.tyapage-cookie_list {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tyapage-cookie_item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px dashed #a8dadc;
    min-height: 100px;
}

.tyapage-cookie_item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tyapage-cookie_subtitle {
    font-size: 22px;
    color: #457b9d;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.tyapage-cookie_item p {
    line-height: 1.8;
    padding-left: 38px;
}

.tyapage-cookie_homebtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: #e63946;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.tyapage-cookie_homebtn:hover {
    background-color: #c1121f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

@media (max-width: 1024px) {
    .tyapage-cookie_title {
        font-size: 32px;
    }
    
    .tyapage-cookie_list {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .tyapage-cookie_title {
        font-size: 28px;
        flex-direction: column;
    }
    
    .tyapage-cookie_item {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    
    .tyapage-cookie_subtitle {
        font-size: 20px;
    }
    
    .tyapage-cookie_item p {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .tyapage-cookie_main {
        padding: 40px 15px;
    }
    
    .tyapage-cookie_title {
        font-size: 24px;
    }
    
    .tyapage-cookie_list {
        padding: 20px 15px;
    }
    
    .tyapage-cookie_subtitle {
        font-size: 18px;
    }
}

.tyapage-responsibility_main {
    max-width: 1450px;
    margin: 0 auto;
    padding: 50px 20px;
    background-color: #f8f9fa;
}

.tyapage-responsibility_header {
    text-align: center;
    margin-bottom: 50px;
}

.tyapage-responsibility_title {
    font-size: 38px;
    color: #1d3557;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tyapage-responsibility_intro {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    min-height: 80px;
}

.tyapage-responsibility_content {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tyapage-responsibility_item {
    min-height: 180px;
    padding: 20px;
    border-radius: 10px;
    background-color: #f1faee;
    transition: all 0.3s ease;
}

.tyapage-responsibility_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.tyapage-responsibility_subtitle {
    font-size: 20px;
    color: #e63946;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.tyapage-responsibility_item p {
    line-height: 1.7;
    margin-left: 34px;
}

.tyapage-responsibility_link {
    color: #457b9d;
    text-decoration: none;
    font-weight: 600;
}

.tyapage-responsibility_link:hover {
    text-decoration: underline;
}

.tyapage-responsibility_homebtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: #457b9d;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 40px;
    grid-column: 1/-1;
    justify-self: center;
    transition: all 0.3s ease;
}

.tyapage-responsibility_homebtn:hover {
    background-color: #1d3557;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(69, 123, 157, 0.3);
}

@media (max-width: 1024px) {
    .tyapage-responsibility_content {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .tyapage-responsibility_title {
        font-size: 30px;
        flex-direction: column;
    }
    
    .tyapage-responsibility_content {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .tyapage-responsibility_item {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .tyapage-responsibility_main {
        padding: 40px 15px;
    }
    
    .tyapage-responsibility_title {
        font-size: 26px;
    }
    
    .tyapage-responsibility_content {
        padding: 20px 15px;
    }
    
    .tyapage-responsibility_subtitle {
        font-size: 18px;
    }
    
    .tyapage-responsibility_item p {
        margin-left: 0;
    }
}