*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yql-primary: #2c3e50;
    --yql-secondary: #e74c3c;
    --yql-accent: #f39c12;
    --yql-light: #ecf0f1;
    --yql-dark: #1a252f;
    --yql-success: #27ae60;
    --yql-warning: #f1c40f;
    --yql-danger: #e74c3c;
    --yql-text: #333;
    --yql-text-light: #7f8c8d;
    --yql-overlay: rgba(0, 0, 0, 0.7);
    --yql-modal-bg: url('../yql-images/yql-bg-image-1.jpg');
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--yql-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.yql-mainheader {
    background-color: var(--yql-primary);
    color: white;
    padding: 1rem 0;
    position: relative;
    z-index: 100;
}

.yql-mainheader__topbar {
    max-width: 1616px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.yql-mainheader__logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--yql-accent);
}

.yql-mainheader__logo-icon {
    font-size: 2rem;
}

.yql-mainheader__actions {
    display: flex;
    gap: 1rem;
}

.yql-mainheader__authbtn,
.yql-mainheader__contactbtn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.yql-mainheader__authbtn {
    background-color: var(--yql-accent);
    color: var(--yql-dark);
}

.yql-mainheader__contactbtn {
    background-color: var(--yql-secondary);
    color: white;
}

.yql-mainheader__authbtn:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.yql-mainheader__contactbtn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.yql-mainheader__responsible {
    max-width: 1616px;
    margin: 1rem auto 0;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.yql-mainheader__responsible p {
    max-width: 800px;
    font-size: 0.9rem;
}

.yql-authmodal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--yql-overlay);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.yql-authmodal__overlay--active {
    opacity: 1;
    visibility: visible;
    padding-top: 120px;
    overflow-y: scroll;
}

.yql-authmodal__container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    position: relative;
    transform: translateY(-50px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background-image: var(--yql-modal-bg);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.9);
}

.yql-authmodal__overlay--active .yql-authmodal__container {
    transform: translateY(0) scale(1);
}

.yql-authmodal__closebtn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--yql-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
}

.yql-authmodal__closebtn:hover {
    color: var(--yql-danger);
    transform: rotate(90deg);
    background-color: rgba(0, 0, 0, 0.05);
}

.yql-authmodal__tabs {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
}

.yql-authmodal__tab {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: var(--yql-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.yql-authmodal__tab--active {
    color: var(--yql-primary);
    border-bottom-color: var(--yql-accent);
}

.yql-authmodal__form {
    display: none;
    animation: yql-fadeIn 0.5s ease;
}

.yql-authmodal__form--active {
    display: block;
}

@keyframes yql-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.yql-authmodal__formgroup {
    margin-bottom: 1.25rem;
}

.yql-authmodal__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--yql-text);
}

.yql-authmodal__input,
.yql-authmodal__select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.yql-authmodal__input:focus,
.yql-authmodal__select:focus {
    border-color: var(--yql-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.2);
}

.yql-authmodal__passwrapper {
    position: relative;
}

.yql-authmodal__passicon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--yql-text-light);
    transition: all 0.3s ease;
}

.yql-authmodal__passicon:hover {
    color: var(--yql-primary);
}

.yql-authmodal__error {
    color: var(--yql-danger);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    min-height: 1rem;
}

.yql-authmodal__checkgroup {
    margin: 1rem 0;
}

.yql-authmodal__checklabel {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    user-select: none;
    min-height: 25px;
}

.yql-authmodal__checkinput {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.yql-authmodal__checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.yql-authmodal__checklabel:hover .yql-authmodal__checkinput ~ .yql-authmodal__checkmark {
    border-color: var(--yql-accent);
}

.yql-authmodal__checkinput:checked ~ .yql-authmodal__checkmark {
    background-color: var(--yql-accent);
    border-color: var(--yql-accent);
    animation: yql-checkmarkBounce 0.5s ease;
}

.yql-authmodal__checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.yql-authmodal__checkinput:checked ~ .yql-authmodal__checkmark:after {
    display: block;
    animation: yql-checkmarkDraw 0.5s ease;
}

@keyframes yql-checkmarkBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes yql-checkmarkDraw {
    0% { height: 0; width: 0; opacity: 0; }
    50% { height: 0; width: 5px; opacity: 1; }
    100% { height: 10px; width: 5px; opacity: 1; }
}

.yql-authmodal__link {
    color: var(--yql-accent);
    text-decoration: none;
    font-weight: 500;
}

.yql-authmodal__submitbtn {
    width: 100%;
    padding: 1rem;
    background-color: var(--yql-accent);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.yql-authmodal__submitbtn:not(:disabled):hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.yql-authmodal__submitbtn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.yql-contactmodal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--yql-overlay);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.yql-contactmodal__overlay--active {
    opacity: 1;
    visibility: visible;
    padding-top: 120px;
}

.yql-contactmodal__container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    position: relative;
    transform: translateY(-50px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.yql-contactmodal__overlay--active .yql-contactmodal__container {
    transform: translateY(0) scale(1);
}

.yql-contactmodal__closebtn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--yql-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
}

.yql-contactmodal__closebtn:hover {
    color: var(--yql-danger);
    transform: rotate(90deg);
    background-color: rgba(0, 0, 0, 0.05);
}

.yql-contactmodal__title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--yql-primary);
    font-size: 1.8rem;
    position: relative;
}

.yql-contactmodal__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--yql-accent);
    margin: 0.5rem auto 0;
}

.yql-contactmodal__formgroup {
    margin-bottom: 1.25rem;
}

.yql-contactmodal__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--yql-text);
}

.yql-contactmodal__input,
.yql-contactmodal__select,
.yql-contactmodal__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.yql-contactmodal__textarea {
    min-height: 150px;
    resize: vertical;
}

.yql-contactmodal__input:focus,
.yql-contactmodal__select:focus,
.yql-contactmodal__textarea:focus {
    border-color: var(--yql-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.2);
}

.yql-contactmodal__error {
    color: var(--yql-danger);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    min-height: 1rem;
}

.yql-contactmodal__checkgroup {
    margin: 1.5rem 0;
}

.yql-contactmodal__checklabel {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    user-select: none;
    min-height: 25px;
}

.yql-contactmodal__checkinput {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.yql-contactmodal__checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.yql-contactmodal__checklabel:hover .yql-contactmodal__checkinput ~ .yql-contactmodal__checkmark {
    border-color: var(--yql-accent);
}

.yql-contactmodal__checkinput:checked ~ .yql-contactmodal__checkmark {
    background-color: var(--yql-accent);
    border-color: var(--yql-accent);
    animation: yql-checkmarkBounce 0.5s ease;
}

.yql-contactmodal__checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.yql-contactmodal__checkinput:checked ~ .yql-contactmodal__checkmark:after {
    display: block;
    animation: yql-checkmarkDraw 0.5s ease;
}

.yql-contactmodal__link {
    color: var(--yql-accent);
    text-decoration: none;
    font-weight: 500;
}

.yql-contactmodal__submitbtn {
    width: 100%;
    padding: 1rem;
    background-color: var(--yql-accent);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.yql-contactmodal__submitbtn:not(:disabled):hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.yql-contactmodal__submitbtn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.yql-successmodal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--yql-overlay);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.yql-successmodal__overlay--active {
    opacity: 1;
    visibility: visible;
}

.yql-successmodal__container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    text-align: center;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.yql-successmodal__overlay--active .yql-successmodal__container {
    transform: scale(1);
}

.yql-successmodal__icon {
    font-size: 3rem;
    color: var(--yql-success);
    margin-bottom: 1rem;
    animation: yql-iconBounce 0.8s ease;
}

@keyframes yql-iconBounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

.yql-successmodal__title {
    margin-bottom: 1rem;
    color: var(--yql-success);
    font-size: 1.5rem;
}

.yql-successmodal__message {
    margin-bottom: 1.5rem;
    color: var(--yql-text);
    line-height: 1.6;
}

.yql-successmodal__closebtn {
    padding: 0.75rem 1.5rem;
    background-color: var(--yql-success);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.yql-successmodal__closebtn:hover {
    background-color: #219653;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .yql-mainheader__topbar,
    .yql-mainheader__responsible {
        padding: 0 1.5rem;
    }
    
    .yql-mainheader__logo {
        font-size: 1.6rem;
    }
    
    .yql-mainheader__authbtn,
    .yql-mainheader__contactbtn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .yql-mainheader__topbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .yql-mainheader__actions {
        width: 100%;
        justify-content: center;
    }
    
    .yql-mainheader__responsible {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .yql-mainheader__responsible p {
        font-size: 0.85rem;
    }
    
    .yql-authmodal__overlay--active,
    .yql-contactmodal__overlay--active {
        padding-top: 80px;
    }
    
    .yql-authmodal__container,
    .yql-contactmodal__container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .yql-mainheader__logo {
        font-size: 1.4rem;
    }
    
    .yql-mainheader__logo-icon {
        font-size: 1.6rem;
    }
    
    .yql-mainheader__authbtn,
    .yql-mainheader__contactbtn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .yql-authmodal__overlay--active,
    .yql-contactmodal__overlay--active {
        padding-top: 60px;
    }
    
    .yql-authmodal__container,
    .yql-contactmodal__container {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .yql-authmodal__tabs {
        justify-content: center;
    }
    
    .yql-authmodal__tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .yql-mainheader__logo {
        font-size: 1.2rem;
    }
    
    .yql-mainheader__actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .yql-authmodal__container,
    .yql-contactmodal__container {
        margin: 0 0.5rem;
    }
}

.yql-welcome {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('../yql-images/yql-bg-image-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 0;
    overflow: hidden;
}

.yql-welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.85);
}

.yql-welcome__container {
    max-width: 1616px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.yql-welcome__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: yql-fadeInUp 1s ease;
}

.yql-welcome__title {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.yql-welcome__desc {
    color: var(--yql-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.yql-welcome__benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.yql-welcome__benefit {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    width: 220px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.yql-welcome__benefit:hover {
    transform: translateY(-10px);
    background-color: rgba(243, 156, 18, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.yql-welcome__benefit-icon {
    font-size: 2.5rem;
    color: var(--yql-accent);
    margin-bottom: 1rem;
}

.yql-welcome__benefit-text {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
}

.yql-welcome__authbtn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--yql-accent);
    color: var(--yql-dark);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.yql-welcome__authbtn:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@keyframes yql-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .yql-welcome__container {
        padding: 0 1.5rem;
    }
    
    .yql-welcome__title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .yql-welcome {
        min-height: 500px;
        padding: 3rem 0;
    }
    
    .yql-welcome__title {
        font-size: 2rem;
    }
    
    .yql-welcome__desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .yql-welcome__benefits {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .yql-welcome__benefit {
        width: 180px;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .yql-welcome {
        min-height: 450px;
        padding: 2rem 0;
    }
    
    .yql-welcome__container {
        padding: 0 1rem;
    }
    
    .yql-welcome__title {
        font-size: 1.8rem;
    }
    
    .yql-welcome__benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .yql-welcome__benefit {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 320px) {
    .yql-welcome__title {
        font-size: 1.6rem;
    }
    
    .yql-welcome__authbtn {
        width: 100%;
        justify-content: center;
    }
}

.yql-premiumtimer {
    background-color: var(--yql-dark);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.yql-premiumtimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(44, 62, 80, 0.9) 100%);
}

.yql-premiumtimer__container {
    max-width: 1616px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.yql-premiumtimer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.yql-premiumtimer__intro {
    margin-bottom: 3rem;
    max-width: 800px;
}

.yql-premiumtimer__title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--yql-accent);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: yql-fadeInDown 1s ease;
}

.yql-premiumtimer__desc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--yql-light);
}

.yql-premiumtimer__features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.yql-premiumtimer__feature {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    min-width: 180px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.yql-premiumtimer__feature:hover {
    transform: translateY(-5px);
    background-color: rgba(243, 156, 18, 0.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.yql-premiumtimer__feature-icon {
    font-size: 2.5rem;
    color: var(--yql-accent);
    margin-bottom: 0.5rem;
}

.yql-premiumtimer__feature-text {
    font-weight: 500;
    font-size: 1.1rem;
}

.yql-premiumtimer__nextgame {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 700px;
    width: 100%;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: yql-fadeInUp 1s ease;
}

.yql-premiumtimer__nexttitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.yql-premiumtimer__nextdesc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--yql-light);
}

.yql-premiumtimer__timerwrapper {
    margin-top: 2rem;
}

.yql-premiumtimer__timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.yql-premiumtimer__timeunit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.yql-premiumtimer__timevalue {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yql-accent);
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    min-width: 80px;
    text-align: center;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.yql-premiumtimer__timelabel {
    font-size: 0.9rem;
    color: var(--yql-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.yql-premiumtimer__authbtn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--yql-accent);
    color: var(--yql-dark);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.yql-premiumtimer__authbtn:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.yql-gamescollection {
    background-image: url('../yql-images/yql-bg-image-3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
    position: relative;
}

.yql-gamescollection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.9);
}

.yql-gamescollection__container {
    max-width: 1616px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.yql-gamescollection__content {
    text-align: center;
}

.yql-gamescollection__title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    position: relative;
    display: inline-block;
}

.yql-gamescollection__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--yql-accent);
}

.yql-gamescollection__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.yql-gamescollection__card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    width: calc(33.333% - 2rem);
    min-width: 280px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.yql-gamescollection__card:hover {
    transform: translateY(-10px);
    background-color: rgba(243, 156, 18, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.yql-gamescollection__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--yql-accent);
}

.yql-gamescollection__cardicon {
    font-size: 3rem;
    color: var(--yql-accent);
    margin-bottom: 1rem;
}

.yql-gamescollection__cardtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.yql-gamescollection__carddesc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--yql-light);
    min-height: 60px;
}

.yql-gamescollection__cardbtn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--yql-accent);
    color: var(--yql-dark);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yql-gamescollection__cardbtn:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@keyframes yql-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes yql-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .yql-premiumtimer__container,
    .yql-gamescollection__container {
        padding: 0 1.5rem;
    }
    
    .yql-premiumtimer__title {
        font-size: 2.4rem;
    }
    
    .yql-gamescollection__card {
        width: calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .yql-premiumtimer,
    .yql-gamescollection {
        padding: 3rem 0;
    }
    
    .yql-premiumtimer__title {
        font-size: 2rem;
    }
    
    .yql-premiumtimer__desc,
    .yql-premiumtimer__nextdesc {
        font-size: 1rem;
    }
    
    .yql-premiumtimer__feature {
        min-width: 150px;
        padding: 1rem;
    }
    
    .yql-gamescollection__title {
        font-size: 2rem;
    }
    
    .yql-gamescollection__card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .yql-premiumtimer__title {
        font-size: 1.8rem;
    }
    
    .yql-premiumtimer__features {
        flex-direction: column;
        align-items: center;
    }
    
    .yql-premiumtimer__feature {
        width: 100%;
        max-width: 250px;
    }
    
    .yql-premiumtimer__timeunit {
        min-width: 70px;
    }
    
    .yql-premiumtimer__timevalue {
        font-size: 2rem;
        min-width: 70px;
    }
    
    .yql-gamescollection__title {
        font-size: 1.8rem;
    }
}

@media (max-width: 320px) {
    .yql-premiumtimer__container,
    .yql-gamescollection__container {
        padding: 0 1rem;
    }
    
    .yql-premiumtimer__title {
        font-size: 1.6rem;
    }
    
    .yql-premiumtimer__timeunit {
        min-width: 60px;
    }
    
    .yql-premiumtimer__timevalue {
        font-size: 1.8rem;
        min-width: 60px;
    }
}

.yql-reviews {
    background-color: var(--yql-light);
    padding: 4rem 0;
}

.yql-reviews__container {
    max-width: 1616px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.yql-reviews__title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--yql-primary);
}

.yql-reviews__grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.yql-reviews__card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.yql-reviews__card:hover {
    transform: translateY(-5px);
}

.yql-reviews__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.yql-reviews__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--yql-text-light);
}

.yql-reviews__userinfo {
    text-align: left;
}

.yql-reviews__username {
    font-size: 1.2rem;
    color: var(--yql-primary);
}

.yql-reviews__date {
    color: var(--yql-text-light);
    font-size: 0.9rem;
}

.yql-reviews__rating {
    color: var(--yql-accent);
    display: flex;
    gap: 0.2rem;
}

.yql-reviews__text {
    text-align: left;
    line-height: 1.6;
    min-height: 80px;
}

.yql-reviews__morelink {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--yql-accent);
    color: var(--yql-dark);
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.yql-reviews__morelink:hover {
    background-color: var(--yql-warning);
}

.yql-responsible {
    background-color: var(--yql-dark);
    color: white;
    padding: 4rem 0;
}

.yql-responsible__container {
    max-width: 1616px;
    margin: 0 auto;
    padding: 0 2rem;
}

.yql-responsible__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.yql-responsible__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--yql-accent);
}

.yql-responsible__text {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.yql-responsible__partners {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.yql-responsible__partnerlink {
    transition: transform 0.3s ease;
}

.yql-responsible__partnerlink:hover {
    transform: scale(1.05);
}

.yql-responsible__partnerlogo {
    background-color: white;
    padding: 0.5rem;
    border-radius: 4px;
    object-fit: contain;
}

.yql-responsible__agewarning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.yql-responsible__ageicon {
    background-color: var(--yql-accent);
    border-radius: 50%;
}

.yql-faq {
    background-image: url('../yql-images/yql-bg-image-4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 0;
    position: relative;
}

.yql-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.9);
}

.yql-faq__container {
    max-width: 1616px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 17px;
    z-index: 1;
}

.yql-faq__title {
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.yql-faq__accordion {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.yql-faq__item {
    margin-bottom: 1rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.yql-faq__question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(243,156,18,0.2);
    border: none;
    color: white;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.yql-faq__question:hover {
    background-color: rgba(243,156,18,0.3);
}

.yql-faq__icon {
    transition: transform 0.3s ease;
}

.yql-faq__item.active .yql-faq__icon {
    transform: rotate(180deg);
}

.yql-faq__answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.yql-faq__item.active .yql-faq__answer {
    padding: 1.5rem;
    max-height: 300px;
}

.yql-faq__answer p {
    color: var(--yql-light);
    line-height: 1.6;
}

.yql-faq__morelink {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--yql-accent);
    color: var(--yql-dark);
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin: 0 auto;
    text-align: center;
}

.yql-faq__morelink:hover {
    background-color: var(--yql-warning);
}

@media (max-width: 1024px) {
    .yql-reviews__grid {
        flex-direction: column;
        align-items: center;
    }
    
    .yql-responsible__partners {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .yql-reviews__title,
    .yql-responsible__title,
    .yql-faq__title {
        font-size: 2rem;
    }
    
    .yql-responsible__partners {
        flex-direction: column;
        align-items: center;
    }
    
    .yql-faq__question {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .yql-reviews__header {
        flex-direction: column;
        text-align: center;
    }
    
    .yql-reviews__userinfo {
        text-align: center;
    }
    
    .yql-reviews__text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .yql-reviews__container,
    .yql-responsible__container,
    .yql-faq__container {
        padding: 0 0.2rem;
    }
}

.yql-footer {
    background-color: var(--yql-dark);
    color: var(--yql-light);
    padding: 3rem 0;
}

.yql-footer__container {
    max-width: 1616px;
    margin: 0 auto;
    padding: 0 2rem;
}

.yql-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.yql-footer__navlink {
    color: var(--yql-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.yql-footer__navlink:hover {
    color: var(--yql-accent);
}

.yql-footer__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.yql-footer__actionbtn {
    padding: 0.8rem 1.5rem;
    background-color: var(--yql-accent);
    color: var(--yql-dark);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.yql-footer__actionbtn:hover {
    background-color: var(--yql-warning);
}

.yql-footer__description {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    line-height: 1.6;
}

.yql-footer__copyright {
    text-align: center;
    color: var(--yql-text-light);
    font-size: 0.9rem;
}

.yql-agemodal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.99);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.yql-agemodal__content {
    background-color: var(--yql-dark);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.yql-agemodal__title {
    font-family: 'Playfair Display', serif;
    color: var(--yql-accent);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.yql-agemodal__text {
    color: #219653;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.yql-agemodal__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.yql-agemodal__confirmbtn {
    padding: 0.8rem 1.5rem;
    background-color: var(--yql-success);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.yql-agemodal__declinebtn {
    padding: 0.8rem 1.5rem;
    background-color: var(--yql-danger);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.yql-agemodal__confirmbtn:hover {
    background-color: #2ecc71;
}

.yql-agemodal__declinebtn:hover {
    background-color: #c0392b;
}

.yql-cookiesmodal__overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--yql-primary);
    padding: 1rem 0;
    z-index: 9998;
}

.yql-cookiesmodal__content {
    max-width: 1616px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.yql-cookiesmodal__textblock {
    flex: 1;
}

.yql-cookiesmodal__text {
    color: var(--yql-light);
    line-height: 1.6;
}

.yql-cookiesmodal__link {
    color: var(--yql-accent);
    text-decoration: none;
}

.yql-cookiesmodal__acceptbtn {
    padding: 0.6rem 1.2rem;
    background-color: var(--yql-accent);
    color: var(--yql-dark);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 1rem;
}

.yql-cookiesmodal__acceptbtn:hover {
    background-color: var(--yql-warning);
}

.yql-backtotop__btn {
    position: fixed;
    bottom: 8rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--yql-accent);
    color: var(--yql-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.yql-backtotop__btn.active {
    opacity: 1;
    visibility: visible;
}

.yql-backtotop__btn:hover {
    background-color: var(--yql-warning);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .yql-cookiesmodal__content {
        flex-direction: column;
        text-align: center;
    }
    
    .yql-cookiesmodal__acceptbtn {
        margin: 1rem 0 0;
    }
    
    .yql-agemodal__buttons {
        flex-direction: column;
    }
    
    .yql-backtotop__btn {
        width: 40px;
        height: 40px;
        bottom: 16rem;
        right: 1rem;
    }
}

@media (max-width: 330px) {
    .yql-authmodal__closebtn {
        top: 0;
        right: 0;
    }

}

.yqlpage-about {
    background-color: var(--yql-light);
    padding: 3rem 0;
}

.yqlpage-about__intro {
    max-width: 1616px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.yqlpage-about__title {
    font-size: 2.5rem;
    color: var(--yql-primary);
    margin-bottom: 2rem;
}

.yqlpage-about__content {
    max-width: 1616px;
    margin: 0 auto;
    padding: 0 2rem;
}

.yqlpage-about__story {
    background-color: white;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.yqlpage-about__icon {
    font-size: 3rem;
    color: var(--yql-accent);
    margin-bottom: 1rem;
}

.yqlpage-about__subtitle {
    font-size: 1.8rem;
    color: var(--yql-primary);
    margin-bottom: 1.5rem;
}

.yqlpage-about__text {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.yqlpage-about__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.yqlpage-about__statitem {
    min-width: 150px;
}

.yqlpage-about__statitem span {
    font-size: 2.5rem;
    color: var(--yql-accent);
}

.yqlpage-about__statitem h4 {
    font-size: 2rem;
    color: var(--yql-primary);
    margin: 0.5rem 0;
}

.yqlpage-about__statitem p {
    color: var(--yql-text-light);
}

.yqlpage-about__actionbtn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--yql-accent);
    color: var(--yql-dark);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.yqlpage-about__actionbtn:hover {
    background-color: var(--yql-warning);
}

@media (max-width: 768px) {
    .yqlpage-about__title {
        font-size: 2rem;
    }
    
    .yqlpage-about__story {
        padding: 2rem 1rem;
    }
    
    .yqlpage-about__stats {
        gap: 1.5rem;
    }
}

.yqlpage-responsible {
    background-color: var(--yql-dark);
    color: white;
    padding: 3rem 0;
}

.yqlpage-responsible__intro {
    max-width: 1616px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    text-align: center;
}

.yqlpage-responsible__title {
    font-size: 2.5rem;
    color: var(--yql-accent);
    margin-bottom: 1rem;
}

.yqlpage-responsible__content {
    max-width: 1616px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.yqlpage-responsible__item {
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 2rem;
    width: calc(33.333% - 2rem);
    min-width: 280px;
    transition: transform 0.3s ease;
}

.yqlpage-responsible__item:hover {
    transform: translateY(-5px);
    background-color: rgba(243,156,18,0.2);
}

.yqlpage-responsible__icon {
    font-size: 2.5rem;
    color: var(--yql-accent);
    margin-bottom: 1rem;
}

.yqlpage-responsible__itemtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.yqlpage-responsible__itemtext {
    line-height: 1.6;
    min-height: 120px;
}

.yqlpage-responsible__itemtext a {
    color: var(--yql-accent);
    text-decoration: none;
}

@media (max-width: 1024px) {
    .yqlpage-responsible__item {
        width: calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .yqlpage-responsible__title {
        font-size: 2rem;
    }
    
    .yqlpage-responsible__item {
        width: 100%;
        max-width: 500px;
    }
}

.yqlpage-cookies {
    background-color: var(--yql-light);
    padding: 3rem 0;
}

.yqlpage-cookies__intro {
    max-width: 1616px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    text-align: center;
}

.yqlpage-cookies__title {
    font-size: 2.5rem;
    color: var(--yql-primary);
    margin-bottom: 1rem;
}

.yqlpage-cookies__content {
    max-width: 1616px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.yqlpage-cookies__item {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    width: calc(33.333% - 2rem);
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.yqlpage-cookies__item:hover {
    transform: translateY(-5px);
}

.yqlpage-cookies__icon {
    font-size: 2.5rem;
    color: var(--yql-accent);
    margin-bottom: 1rem;
}

.yqlpage-cookies__itemtitle {
    font-size: 1.3rem;
    color: var(--yql-primary);
    margin-bottom: 1rem;
}

.yqlpage-cookies__itemtext {
    line-height: 1.6;
    min-height: 120px;
}

@media (max-width: 1024px) {
    .yqlpage-cookies__item {
        width: calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .yqlpage-cookies__title {
        font-size: 2rem;
    }
    
    .yqlpage-cookies__item {
        width: 100%;
        max-width: 500px;
    }
}

.yqlpage-privacy {
    background-color: var(--yql-light);
    padding: 3rem 0;
}

.yqlpage-privacy__intro {
    max-width: 1616px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    text-align: center;
}

.yqlpage-privacy__title {
    font-size: 2.5rem;
    color: var(--yql-primary);
    margin-bottom: 1rem;
}

.yqlpage-privacy__content {
    max-width: 1616px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.yqlpage-privacy__item {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    width: calc(33.333% - 2rem);
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.yqlpage-privacy__item:hover {
    transform: translateY(-5px);
}

.yqlpage-privacy__icon {
    font-size: 2.5rem;
    color: var(--yql-accent);
    margin-bottom: 1rem;
}

.yqlpage-privacy__itemtitle {
    font-size: 1.3rem;
    color: var(--yql-primary);
    margin-bottom: 1rem;
}

.yqlpage-privacy__itemtext {
    line-height: 1.6;
    min-height: 120px;
}

@media (max-width: 1024px) {
    .yqlpage-privacy__item {
        width: calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .yqlpage-privacy__title {
        font-size: 2rem;
    }
    
    .yqlpage-privacy__item {
        width: 100%;
        max-width: 500px;
    }
}

.yqlpage-faq {
    background-color: var(--yql-light);
    padding: 3rem 0;
}

.yqlpage-faq__intro {
    max-width: 1616px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    text-align: center;
}

.yqlpage-faq__title {
    font-size: 2.5rem;
    color: var(--yql-primary);
    margin-bottom: 1rem;
}

.yqlpage-faq__desc {
    color: var(--yql-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.yqlpage-faq__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.yqlpage-faq__accordion {
    margin-bottom: 3rem;
}

.yqlpage-faq__item {
    margin-bottom: 1rem;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.yqlpage-faq__question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--yql-primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.yqlpage-faq__question:hover {
    background-color: #34495e;
}

.yqlpage-faq__icon {
    transition: transform 0.3s ease;
}

.yqlpage-faq__item.active .yqlpage-faq__icon {
    transform: rotate(180deg);
}

.yqlpage-faq__answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.yqlpage-faq__item.active .yqlpage-faq__answer {
    padding: 1.5rem;
    max-height: 300px;
}

.yqlpage-faq__answer p {
    line-height: 1.6;
}

.yqlpage-faq__actionbtn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--yql-accent);
    color: var(--yql-dark);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 auto;
    display: block;
}

.yqlpage-faq__actionbtn:hover {
    background-color: var(--yql-warning);
}

@media (max-width: 768px) {
    .yqlpage-faq__title {
        font-size: 2rem;
    }
    
    .yqlpage-faq__question {
        padding: 1rem;
    }
}

.yqlpage-reviews {
    background-color: var(--yql-light);
    padding: 3rem 0;
}

.yqlpage-reviews__intro {
    max-width: 1616px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    text-align: center;
}

.yqlpage-reviews__title {
    font-size: 2.5rem;
    color: var(--yql-primary);
    margin-bottom: 1rem;
}

.yqlpage-reviews__desc {
    color: var(--yql-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.yqlpage-reviews__content {
    max-width: 1616px;
    margin: 0 auto;
    padding: 0 2rem;
}

.yqlpage-reviews__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.yqlpage-reviews__card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    width: calc(33.333% - 2rem);
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.yqlpage-reviews__card:hover {
    transform: translateY(-5px);
}

.yqlpage-reviews__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.yqlpage-reviews__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--yql-text-light);
}

.yqlpage-reviews__userinfo {
    text-align: left;
}

.yqlpage-reviews__username {
    font-size: 1.2rem;
    color: var(--yql-primary);
}

.yqlpage-reviews__date {
    color: var(--yql-text-light);
    font-size: 0.9rem;
}

.yqlpage-reviews__rating {
    color: var(--yql-accent);
    display: flex;
    gap: 0.2rem;
}

.yqlpage-reviews__text {
    text-align: left;
    line-height: 1.6;
    min-height: 80px;
}

.yqlpage-reviews__actionbtn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--yql-accent);
    color: var(--yql-dark);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 auto;
    display: block;
}

.yqlpage-reviews__actionbtn:hover {
    background-color: var(--yql-warning);
}

@media (max-width: 1024px) {
    .yqlpage-reviews__card {
        width: calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .yqlpage-reviews__title {
        font-size: 2rem;
    }
    
    .yqlpage-reviews__card {
        width: 100%;
        max-width: 500px;
    }
}