*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rozha One', serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.pok-header_container {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pok-header_wrapper {
    max-width: 1330px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 1rem;
}

.pok-header_logo-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pok-header_home-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.pok-header_home-link:hover {
    transform: scale(1.05);
}

.pok-header_logo-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.pok-header_auth-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Rozha One', serif;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pok-header_auth-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.pok-header_auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.pok-header_auth-btn:hover::before {
    left: 100%;
}

.pok-header_responsible-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pok-header_responsible-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pok-header_responsible-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.pok-modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pok-modal_overlay.active {
    opacity: 1;
    visibility: visible;
}

.pok-modal_container {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.pok-modal_overlay.active .pok-modal_container {
    transform: translateY(0);
    opacity: 1;
}

.pok-modal_close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.pok-modal_close-btn:hover {
    color: #333;
}

.pok-modal_tabs {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.pok-modal_tab {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Reem Kufi Ink', sans-serif;
    color: #666;
    position: relative;
    transition: all 0.3s ease;
}

.pok-modal_tab.active {
    color: #1a2a6c;
    font-weight: bold;
}

.pok-modal_tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1a2a6c;
}

.pok-modal_form {
    display: none;
}

.pok-modal_form.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.pok-modal_container {
    position: relative;
    min-height: 400px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pok-form_group {
    margin-bottom: 1.25rem;
}

.pok-form_group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #444;
}

.pok-form_group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Rozha One', serif;
    transition: border 0.3s ease;
}

.pok-form_group input:focus {
    border-color: #1a2a6c;
    outline: none;
}

.pok-password_wrapper {
    position: relative;
}

.pok-password_toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

.pok-form_error {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
    min-height: 1rem;
}

.pok-form_checkbox-group {
    margin: 1.25rem 0;
    position: relative;
}

.pok-custom_checkbox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    user-select: none;
}

.pok-custom_checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.pok-checkbox_checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pok-custom_checkbox:hover .pok-checkbox_checkmark {
    background-color: #ccc;
}

.pok-custom_checkbox input:checked ~ .pok-checkbox_checkmark {
    background-color: #1a2a6c;
}

.pok-checkbox_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);
}

.pok-custom_checkbox input:checked ~ .pok-checkbox_checkmark::after {
    display: block;
    animation: checkmark 0.3s ease;
}

@keyframes checkmark {
    from { transform: scale(0) rotate(45deg); }
    to { transform: scale(1) rotate(45deg); }
}

.pok-form_submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    opacity: 0.5;
    pointer-events: none;
}

.pok-form_submit-btn.active {
    opacity: 1;
    pointer-events: all;
}

.pok-form_submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pok-success_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pok-success_overlay.active {
    opacity: 1;
    visibility: visible;
}

.pok-success_container {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.pok-success_overlay.active .pok-success_container {
    transform: scale(1);
    opacity: 1;
}

.pok-success_close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.pok-success_close-btn:hover {
    color: #333;
}

.pok-success_icon {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 1rem;
    animation: bounce 1s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.pok-success_title {
    font-family: 'Reem Kufi Ink', sans-serif;
    color: #1a2a6c;
    margin-bottom: 1rem;
}

.pok-success_text {
    margin-bottom: 1.5rem;
    color: #555;
}

.pok-success_email {
    font-weight: bold;
    color: #1a2a6c;
}

.pok-success_close-main {
    padding: 0.75rem 1.5rem;
    background: #1a2a6c;
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Reem Kufi Ink', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pok-success_close-main:hover {
    background: #b21f1f;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .pok-header_wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pok-header_responsible-block {
        text-align: center;
    }
    
    .pok-header_responsible-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pok-header_title {
        font-size: 1.25rem;
    }
    
    .pok-header_auth-btn {
        padding: 0.5rem 1rem;
    }
    
    .pok-modal_container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pok-header_auth-btn span {
        display: none;
    }
    
    .pok-header_auth-btn {
        padding: 0.5rem;
        border-radius: 50%;
    }
    .pok-header_home-link {
        font-size: 1.1rem;
    }
    
    .pok-header_logo-icon {
        font-size: 1.5rem;
    }
    
    .pok-modal_tabs {
        justify-content: space-between;
    }
    
    .pok-modal_tab {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .pok-header_title {
        display: none;
    }   

}

.pok-lottery_timer-section {
    position: relative;
    padding: 4rem 1rem;
    overflow: hidden;
    color: white;
}

.pok-lottery_background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../pok-image/pok-img-background-1.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.9;
}

.pok-lottery_background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.8), rgba(178, 31, 31, 0.7));
}

.pok-lottery_content-wrapper {
    max-width: 1330px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.pok-lottery_main-title {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    animation: pokTitleFadeIn 1s ease;
}

@keyframes pokTitleFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.pok-lottery_description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: pokDescFadeIn 1s ease 0.3s both;
}

@keyframes pokDescFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pok-lottery_benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    animation: pokBenefitsFadeIn 1s ease 0.6s both;
}

@keyframes pokBenefitsFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.pok-lottery_benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pok-lottery_benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pok-lottery_benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fdbb2d;
}

.pok-lottery_benefit-title {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.2rem;
}

.pok-lottery_timer-block {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: pokTimerBlockFadeIn 1s ease 0.9s both;
}

@keyframes pokTimerBlockFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.pok-lottery_timer-title {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fdbb2d;
}

.pok-lottery_timer-description {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.pok-lottery_jackpot-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 2.5rem;
    color: #fdbb2d;
    animation: pokJackpotPulse 2s infinite;
}

@keyframes pokJackpotPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pok-lottery_jackpot-number {
    margin-left: 0.5rem;
}

.pok-lottery_countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.pok-lottery_time-unit {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pok-lottery_time-unit:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.pok-lottery_time-number {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 2rem;
    display: block;
    font-weight: bold;
}

.pok-lottery_time-label {
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
    margin-top: 0.5rem;
}

.pok-lottery_auth-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #fdbb2d, #b21f1f);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pok-lottery_auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .pok-lottery_content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pok-lottery_main-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .pok-lottery_benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pok-lottery_timer-title {
        font-size: 1.5rem;
    }
    
    .pok-lottery_jackpot-amount {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .pok-lottery_countdown-timer {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pok-lottery_main-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 320px) {
    .pok-lottery_time-number {
        font-size: 1.5rem;
    }
    
    .pok-lottery_auth-btn {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

.pok-about_play-section {
    background-color: #f9f9f9;
    padding: 4rem 1rem;
    position: relative;
}

.pok-about_container {
    max-width: 1330px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.pok-about_info-block {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    animation: pokAboutFadeIn 0.8s ease;
}

@keyframes pokAboutFadeIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.pok-about_main-heading {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 2.2rem;
    color: #1a2a6c;
    margin-bottom: 1.5rem;
    position: relative;
}

.pok-about_main-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #fdbb2d;
    border-radius: 2px;
}

.pok-about_text-content {
    margin-bottom: 2rem;
}

.pok-about_text-content p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    min-height: 1.7em;
}

.pok-about_auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.pok-about_auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(26, 42, 108, 0.2);
}

.pok-about_visual-block {
    width: 100%;
    max-width: 1330px;
    display: grid;
    grid-column-start: 1;
    grid-column-end: 3;
    gap: 2rem;
    animation: pokVisualFadeIn 0.8s ease 0.2s both;
}

@keyframes pokVisualFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.pok-about_main-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.pok-about_main-image:hover {
    transform: scale(1.02);
}

.pok-about_how-to-play {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.pok-about_play-heading {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.8rem;
    color: #1a2a6c;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pok-about_steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pok-about_step-card {
    background: #f5f7fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid #fdbb2d;
}

.pok-about_step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: white;
}

.pok-about_step-icon {
    font-size: 2rem;
    color: #b21f1f;
    margin-bottom: 1rem;
}

.pok-about_step-title {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.2rem;
    color: #1a2a6c;
    margin-bottom: 0.5rem;
}

.pok-about_step-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 4.8em;
}

.pok-about_step-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: #1a2a6c;
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.pok-about_step-btn:hover {
    color: #b21f1f;
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .pok-about_container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pok-about_text-content p {
        font-size: 1rem;
    }
    
    .pok-about_steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .pok-about_info-block,
    .pok-about_how-to-play {
        padding: 1.5rem;
    }
    
    .pok-about_main-heading {
        font-size: 1.8rem;
    }
    
    .pok-about_play-heading {
        font-size: 1.5rem;
    }

    .pok-about_container {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .pok-about_steps-grid {
        grid-template-columns: 1fr;
    }
    
    .pok-about_step-desc {
        min-height: auto;
    }
    
    .pok-about_auth-btn {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

@media (max-width: 320px) {
    .pok-about_info-block,
    .pok-about_how-to-play {
        padding: 1rem;
    }
    
    .pok-about_main-heading {
        font-size: 1.5rem;
    }
    
    .pok-about_step-title {
        font-size: 1.1rem;
    }
}

.pok-lottery_results-section {
    position: relative;
    padding: 4rem 1rem;
    overflow: hidden;
    color: #333;
}

.pok-lottery_results-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../pok-image/pok-img-background-2.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.pok-lottery_results-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.85), rgba(178, 31, 31, 0.8));
    z-index: -1;
}

.pok-lottery_results-container {
    max-width: 1330px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
}

.pok-lottery_previous-wins {
    width: 100%;
    max-width: 641px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.pok-lottery_wins-heading {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 2rem;
    color: #1a2a6c;
    margin-bottom: 1.5rem;
    position: relative;
}

.pok-lottery_wins-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #fdbb2d;
}

.pok-lottery_wins-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.pok-lottery_win-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.pok-lottery_win-card:hover {
    transform: translateY(-5px);
}

.pok-lottery_win-date {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.1rem;
    color: #b21f1f;
    margin-bottom: 1rem;
}

.pok-lottery_win-numbers {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.pok-lottery_number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a2a6c;
    color: white;
    border-radius: 50%;
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
}

.pok-lottery_winner {
    background: #fdbb2d;
    color: #1a2a6c;
    transform: scale(1.1);
    box-shadow: 0 0 0 3px rgba(253, 187, 45, 0.3);
}

.pok-lottery_check-ticket {
    width: 100%;
    max-width: 641px;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    border-radius: 12px;
    padding: 2rem;
    color: white;
    box-shadow: 0 5px 20px rgba(26, 42, 108, 0.2);
}

.pok-lottery_check-heading {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pok-lottery_check-desc {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pok-lottery_check-form {
    display: grid;
    gap: 1.5rem;
}

.pok-lottery_form-group {
    display: grid;
    gap: 0.5rem;
}

.pok-lottery_form-group label {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1rem;
}

.pok-lottery_form-group input {
    padding: 0.8rem 1rem;
    border-radius: 6px;
    border: none;
    font-family: 'Rozha One', serif;
    font-size: 1rem;
}

.pok-lottery_form-error {
    color: #fdbb2d;
    font-size: 0.85rem;
    min-height: 1.2rem;
}

.pok-lottery_checkbox-group {
    margin-top: 1rem;
}

.pok-lottery_custom-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
}

.pok-lottery_custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.pok-lottery_checkbox-mark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background: white;
    border-radius: 4px;
}

.pok-lottery_custom-checkbox:hover .pok-lottery_checkbox-mark {
    background: #f5f5f5;
}

.pok-lottery_custom-checkbox input:checked ~ .pok-lottery_checkbox-mark {
    background: #fdbb2d;
}

.pok-lottery_checkbox-mark::after {
    content: '';
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #1a2a6c;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pok-lottery_custom-checkbox input:checked ~ .pok-lottery_checkbox-mark::after {
    display: block;
    animation: pokLotteryCheckboxCheck 0.3s ease;
}

@keyframes pokLotteryCheckboxCheck {
    from { transform: scale(0) rotate(45deg); }
    to { transform: scale(1) rotate(45deg); }
}

.pok-lottery_check-submit {
    width: 100%;
    padding: 1rem;
    background: #fdbb2d;
    color: #1a2a6c;
    border: none;
    border-radius: 6px;
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    opacity: 0.7;
    pointer-events: none;
}

.pok-lottery_check-submit.active {
    opacity: 1;
    pointer-events: all;
}

.pok-lottery_check-submit:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pok-lottery_check-success {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pok-lottery_check-success.active {
    opacity: 1;
    visibility: visible;
}

.pok-lottery_success-container {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.pok-lottery_check-success.active .pok-lottery_success-container {
    transform: scale(1);
}

.pok-lottery_success-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.pok-lottery_success-content {
    text-align: center;
}

.pok-lottery_success-icon {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 1.5rem;
    animation: pokLotterySuccessBounce 1s ease;
}

@keyframes pokLotterySuccessBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.pok-lottery_success-title {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.8rem;
    color: #1a2a6c;
    margin-bottom: 1rem;
}

.pok-lottery_success-text {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pok-lottery_success-email {
    font-weight: bold;
    color: #1a2a6c;
}

.pok-lottery_success-btn {
    padding: 0.8rem 2rem;
    background: #1a2a6c;
    color: white;
    border: none;
    border-radius: 6px;
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pok-lottery_success-btn:hover {
    background: #b21f1f;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .pok-lottery_results-container {
        grid-template-columns: 1fr;
    }
    
    .pok-lottery_win-numbers {
        gap: 0.6rem;
    }
    
    .pok-lottery_number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .pok-lottery_wins-heading {
        font-size: 1.8rem;
    }
    
    .pok-lottery_check-heading {
        font-size: 1.6rem;
    }
    
    .pok-lottery_check-desc {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pok-lottery_results-section {
        padding: 2rem 1rem;
    }
    
    .pok-lottery_previous-wins,
    .pok-lottery_check-ticket {
        padding: .5rem;
    }
    
    .pok-lottery_number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .pok-lottery_success-container {
        padding: 1.5rem;
    }
}

@media (max-width: 320px) {
    .pok-lottery_number {
        width: 35px;
        height: 35px;
    }
    
    .pok-lottery_check-submit {
        font-size: 1rem;
        padding: 0.8rem;
    }
}
.pok-testimonials_reviews-section {
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.05), rgba(178, 31, 31, 0.05));
    padding: 5rem 1rem;
    position: relative;
}

.pok-testimonials_container {
    max-width: 1330px;
    margin: 0 auto;
}

.pok-testimonials_main-heading {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 2.5rem;
    color: #1a2a6c;
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pok-testimonials_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pok-testimonials_review-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pok-testimonials_review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pok-testimonials_review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.pok-testimonials_avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fdbb2d;
}

.pok-testimonials_player-info {
    flex: 1;
}

.pok-testimonials_player-name {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.1rem;
    color: #1a2a6c;
    margin-bottom: 0.3rem;
}

.pok-testimonials_review-date {
    font-size: 0.85rem;
    color: #666;
}

.pok-testimonials_rating {
    color: #fdbb2d;
    font-size: 1.2rem;
}

.pok-testimonials_review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    min-height: 4.5em;
}

.pok-testimonials_quote-icon {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: rgba(253, 187, 45, 0.2);
}

@media (max-width: 1024px) {
    .pok-testimonials_grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pok-testimonials_main-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .pok-testimonials_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pok-testimonials_review-text {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .pok-testimonials_grid {
        grid-template-columns: 1fr;
    }
    
    .pok-testimonials_main-heading {
        font-size: 1.8rem;
    }
    
    .pok-testimonials_review-card {
        padding: 1.5rem;
    }
}

@media (max-width: 320px) {
    .pok-testimonials_reviews-section {
        padding: 3rem 1rem;
    }
    
    .pok-testimonials_main-heading {
        font-size: 1.6rem;
    }
    
    .pok-testimonials_avatar {
        width: 50px;
        height: 50px;
    }
}

.pok-responsible_gaming-section {
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.03), rgba(253, 187, 45, 0.03));
    padding: 4rem 1rem;
}

.pok-responsible_container {
    max-width: 1330px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.pok-responsible_content-block {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.pok-responsible_main-heading {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 2.2rem;
    color: #1a2a6c;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pok-responsible_text-content {
    display: grid;
    gap: 1.5rem;
}

.pok-responsible_paragraph {
    font-size: 1.1rem;
    line-height: 1.7;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pok-responsible_paragraph i {
    color: #b21f1f;
    font-size: 1.3rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.pok-responsible_partners-block {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pok-responsible_partners-heading {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.8rem;
    color: #1a2a6c;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pok-responsible_partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.pok-responsible_partner-link {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pok-responsible_partner-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pok-responsible_partner-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.pok-responsible_age-restriction {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: span 2;
}

.pok-responsible_age-image {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .pok-responsible_container {
        grid-template-columns: 1fr;
    }
    
    .pok-responsible_main-heading {
        font-size: 2rem;
    }
    
    .pok-responsible_partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pok-responsible_age-restriction {
        grid-column: span 4;
    }
}

@media (max-width: 768px) {
    .pok-responsible_content-block,
    .pok-responsible_partners-block {
        padding: 1.5rem;
    }
    
    .pok-responsible_main-heading {
        font-size: 1.8rem;
    }
    
    .pok-responsible_partners-heading {
        font-size: 1.5rem;
    }
    
    .pok-responsible_partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pok-responsible_age-restriction {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .pok-responsible_gaming-section {
        padding: 2rem 1rem;
    }
    
    .pok-responsible_paragraph {
        font-size: 1rem;
    }
    
    .pok-responsible_partners-grid {
        grid-template-columns: 1fr;
    }
    
    .pok-responsible_age-restriction {
        grid-column: span 1;
    }
}

@media (max-width: 320px) {
    .pok-responsible_main-heading {
        font-size: 1.6rem;
    }
    
    .pok-responsible_partners-heading {
        font-size: 1.3rem;
    }
}

.pok-faq_questions-section {
    position: relative;
    padding: 5rem 1rem;
    overflow: hidden;
    color: #333;
}

.pok-faq_background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../pok-image/pok-img-background-3.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    opacity: 0.15;
}

.pok-faq_content-wrapper {
    max-width: 1330px;
    margin: 0 auto;
    position: relative;
}

.pok-faq_main-heading {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 2.5rem;
    color: #1a2a6c;
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pok-faq_accordion {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.pok-faq_question-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pok-faq_question-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.pok-faq_question-btn {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.1rem;
    color: #1a2a6c;
    cursor: pointer;
    text-align: left;
}

.pok-faq_question-btn i:first-child {
    color: #b21f1f;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pok-faq_question-btn span {
    flex: 1;
}

.pok-faq_question-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.pok-faq_question-item.active .pok-faq_question-icon {
    transform: rotate(45deg);
}

.pok-faq_answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.pok-faq_question-item.active .pok-faq_answer-content {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.pok-faq_answer-content p {
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 2.3rem;
}

.pok-faq_question-item.shake {
    animation: pokFaqShake 0.5s ease;
}

@keyframes pokFaqShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

@media (max-width: 1024px) {
    .pok-faq_main-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .pok-faq_questions-section {
        padding: 3rem 1rem;
    }
    
    .pok-faq_main-heading {
        font-size: 1.8rem;
    }
    
    .pok-faq_question-btn {
        padding: 1.2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pok-faq_main-heading {
        font-size: 1.6rem;
    }
    
    .pok-faq_question-btn i:first-child {
        font-size: 1.1rem;
    }
    
    .pok-faq_answer-content p {
        padding-left: 0;
    }
}

@media (max-width: 320px) {
    .pok-faq_main-heading {
        font-size: 1.4rem;
    }
    
    .pok-faq_question-btn {
        padding: 1rem;
    }
}

.pok-footer_main-container {
    background: linear-gradient(135deg, #1a2a6c, #0d1533);
    color: white;
    padding: 2rem 1rem;
    margin-top: 3rem;
}

.pok-footer_links-container {
    max-width: 1330px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pok-footer_nav-link {
    color: white;
    text-decoration: none;
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pok-footer_nav-link:hover {
    color: #fdbb2d;
}

.pok-footer_copyright-container {
    max-width: 1330px;
    margin: 1.5rem auto 0;
    text-align: center;
}

.pok-footer_copyright-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pok-ageverification_modal-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.99);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.pok-ageverification_content-box {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    border-radius: 12px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pok-ageverification_heading {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pok-ageverification_description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.pok-ageverification_buttons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.pok-ageverification_confirm-btn {
    background: #fdbb2d;
    color: #1a2a6c;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pok-ageverification_confirm-btn:hover {
    background: white;
    transform: translateY(-3px);
}

.pok-ageverification_decline-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pok-ageverification_decline-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.pok-cookiesconsent_bar-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 42, 108, 0.95);
    z-index: 9998;
    padding: 1rem;
}

.pok-cookiesconsent_content-wrapper {
    max-width: 1330px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.pok-cookiesconsent_text {
    color: white;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 250px;
}

.pok-cookiesconsent_policy-link {
    color: #fdbb2d;
    text-decoration: none;
    margin-left: 0.3rem;
}

.pok-cookiesconsent_accept-btn {
    background: #fdbb2d;
    color: #1a2a6c;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-family: 'Reem Kufi Ink', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pok-cookiesconsent_accept-btn:hover {
    background: white;
    transform: translateY(-3px);
}

.pok-backtotop_button-container {
    position: fixed;
    left: 30px;
    bottom: 100px;
    z-index: 9997;
}

.pok-backtotop_arrow-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.pok-backtotop_arrow-btn.visible {
    opacity: 1;
    visibility: visible;
}

.pok-backtotop_arrow-btn:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, #b21f1f, #1a2a6c);
}

@media (max-width: 1024px) {
    .pok-ageverification_content-box {
        padding: 2rem;
    }
    
    .pok-ageverification_heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .pok-footer_links-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .pok-ageverification_buttons-container {
        grid-template-columns: 1fr;
    }
    
    .pok-cookiesconsent_content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .pok-cookiesconsent_text {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .pok-backtotop_button-container {
        left: 20px;
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .pok-ageverification_content-box {
        padding: 1.5rem;
    }
    
    .pok-ageverification_heading {
        font-size: 1.5rem;
    }
    
    .pok-backtotop_button-container {
        left: 15px;
         bottom: 290px;
    }
    
    .pok-backtotop_arrow-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 320px) {
    .pok-ageverification_content-box {
        padding: 1rem;
    }
    
    .pok-ageverification_heading {
        font-size: 1.3rem;
    }
    
    .pok-footer_copyright-text {
        font-size: 0.8rem;
    }
}

.pokpg-privacy_main-container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.pokpg-privacy_header-section {
    text-align: center;
    margin-bottom: 3rem;
}

.pokpg-privacy_main-heading {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 2.5rem;
    color: #1a2a6c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pokpg-privacy_content-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.pokpg-privacy_point-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.pokpg-privacy_point-item:hover {
    transform: translateY(-5px);
}

.pokpg-privacy_point-item i {
    font-size: 2rem;
    color: #b21f1f;
    margin-bottom: 1rem;
}

.pokpg-privacy_point-title {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.3rem;
    color: #1a2a6c;
    margin-bottom: 1rem;
}

.pokpg-privacy_point-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .pokpg-privacy_content-section {
        grid-template-columns: 1fr;
    }
    
    .pokpg-privacy_main-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .pokpg-privacy_main-heading {
        font-size: 1.8rem;
    }
    
    .pokpg-privacy_point-item {
        padding: 1.2rem;
    }
}

.pokpg-cookie_main-container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.pokpg-cookie_header-section {
    text-align: center;
    margin-bottom: 3rem;
}

.pokpg-cookie_main-heading {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 2.5rem;
    color: #1a2a6c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pokpg-cookie_content-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.pokpg-cookie_point-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #fdbb2d;
}

.pokpg-cookie_point-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pokpg-cookie_point-item i {
    font-size: 2rem;
    color: #1a2a6c;
    margin-bottom: 1rem;
}

.pokpg-cookie_point-title {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.3rem;
    color: #b21f1f;
    margin-bottom: 1rem;
}

.pokpg-cookie_point-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .pokpg-cookie_content-section {
        grid-template-columns: 1fr;
    }
    
    .pokpg-cookie_main-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .pokpg-cookie_main-heading {
        font-size: 1.8rem;
    }
    
    .pokpg-cookie_point-item {
        padding: 1.2rem;
    }
}

.pokpg-responsible_main-container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.pokpg-responsible_header-section {
    text-align: center;
    margin-bottom: 3rem;
}

.pokpg-responsible_main-heading {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 2.5rem;
    color: #1a2a6c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pokpg-responsible_content-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.pokpg-responsible_point-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pokpg-responsible_point-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pokpg-responsible_point-item i {
    font-size: 2rem;
    color: #b21f1f;
    margin-bottom: 1rem;
}

.pokpg-responsible_point-title {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.3rem;
    color: #1a2a6c;
    margin-bottom: 1rem;
}

.pokpg-responsible_point-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.pokpg-responsible_point-text a {
    color: #1a2a6c;
    font-weight: bold;
    text-decoration: none;
}

.pokpg-responsible_point-text a:hover {
    color: #b21f1f;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .pokpg-responsible_content-section {
        grid-template-columns: 1fr;
    }
    
    .pokpg-responsible_main-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .pokpg-responsible_main-heading {
        font-size: 1.8rem;
    }
    
    .pokpg-responsible_point-item {
        padding: 1.2rem;
    }
}

.pokpg-contact_main-container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.pokpg-contact_header-section {
    margin-bottom: 3rem;
    text-align: center;
}

.pokpg-contact_main-heading {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 2.5rem;
    color: #1a2a6c;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pokpg-contact_description {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pokpg-contact_description i {
    color: #b21f1f;
    font-size: 1.3rem;
    margin-top: 0.3rem;
}

.pokpg-contact_form-section {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.pokpg-contact_form {
    display: grid;
    gap: 1.5rem;
}

.pokpg-contact_form-group {
    display: grid;
    gap: 0.5rem;
}

.pokpg-contact_form-label {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1rem;
    color: #1a2a6c;
}

.pokpg-contact_form-input,
.pokpg-contact_form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Rozha One', serif;
    font-size: 1rem;
}

.pokpg-contact_form-textarea {
    resize: vertical;
}

.pokpg-contact_form-error {
    color: #b21f1f;
    font-size: 0.85rem;
    min-height: 1.2rem;
}

.pokpg-contact_checkbox-group {
    margin-top: 1rem;
}

.pokpg-contact_checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
}

.pokpg-contact_checkbox-custom {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pokpg-contact_checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.pokpg-contact_checkbox-label input:checked ~ .pokpg-contact_checkbox-custom {
    background: #1a2a6c;
    border-color: #1a2a6c;
}

.pokpg-contact_checkbox-custom::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);
}

.pokpg-contact_checkbox-label input:checked ~ .pokpg-contact_checkbox-custom::after {
    display: block;
}

.pokpg-contact_privacy-link {
    color: #1a2a6c;
    font-weight: bold;
    text-decoration: none;
}

.pokpg-contact_privacy-link:hover {
    color: #b21f1f;
    text-decoration: underline;
}

.pokpg-contact_submit-btn {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
    opacity: 0.5;
    pointer-events: none;
}

.pokpg-contact_submit-btn.active {
    opacity: 1;
    pointer-events: all;
}

.pokpg-contact_submit-btn:hover {
    background: linear-gradient(135deg, #b21f1f, #1a2a6c);
    transform: translateY(-3px);
}

.pokpg-contact_success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pokpg-contact_success-modal.active {
    opacity: 1;
    visibility: visible;
}

.pokpg-contact_success-content {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.pokpg-contact_success-modal.active .pokpg-contact_success-content {
    transform: scale(1);
}

.pokpg-contact_success-content i {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 1.5rem;
}

.pokpg-contact_success-title {
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1.8rem;
    color: #1a2a6c;
    margin-bottom: 1rem;
}

.pokpg-contact_success-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.pokpg-contact_success-email {
    font-weight: bold;
    color: #1a2a6c;
}

.pokpg-contact_success-close {
    background: #1a2a6c;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-family: 'Reem Kufi Ink', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pokpg-contact_success-close:hover {
    background: #b21f1f;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .pokpg-contact_main-heading {
        font-size: 2rem;
    }
    
    .pokpg-contact_description {
        font-size: 1rem;
    }
    
    .pokpg-contact_form-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pokpg-contact_main-heading {
        font-size: 1.8rem;
    }
    
    .pokpg-contact_success-content {
        padding: 1.5rem;
    }
    
    .pokpg-contact_success-content i {
        font-size: 3rem;
    }
    
    .pokpg-contact_success-title {
        font-size: 1.5rem;
    }
}