* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #090B10;
    background-image: url('../images/bg.webp');
    background-size: 100%;
    background-position: left top;
    font-family: 'Outfit', sans-serif;
    background-repeat: no-repeat;
    color: rgba(255, 255, 255, .78);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.pr_container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.pr_header {
    padding: 24px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.pr_logo img {
    height: 16px;
    width: auto;
    display: block;
}

.pr_nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.pr_nav a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .3px;
    transition: color .2s;
}

.pr_nav a:hover {
    color: #D6A857;
}

.pr_btn {
    display: inline-block;
    background: linear-gradient(135deg, #E5B75A 0%, #D08D45 35%, #7C49D8 100%);
    color: #fff !important;
    font-family: 'Outfit', sans-serif;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all .15s, box-shadow .2s;
}

.pr_btn:hover {
    opacity: 0.9;
    transition: 0.3s;
}

.pr_mobile_toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px 2px;
}

.pr_mobile_toggle span {
    width: 28px;
    height: 3px;
    background: #F6F7FA;
    border-radius: 4px;
    transition: .25s;
}

.pr_mobile_overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #11141A;
    border-right: 1px solid rgba(214, 168, 87, .18);
    padding: 40px 28px;
    transition: left .3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .6);
}

.pr_mobile_overlay.open {
    left: 0;
}

.pr_mobile_overlay a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .5px;
}

.pr_mobile_overlay a:hover {
    color: #D6A857;
}

.pr_mobile_close {
    align-self: flex-end;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.pr_overlay_bg {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.pr_overlay_bg.show {
    opacity: 1;
    visibility: visible;
}

.pr_hero {
    padding: 60px 0 70px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.pr_hero_content {
    max-width: 600px;
}

.pr_subtitle {
    color: #D6A857;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.pr_title {
    font-size: 82px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: .92;
    letter-spacing: -2px;
    color: #F6F7FA;
    margin-bottom: 18px;
}

.pr_title span {
    background: linear-gradient(135deg, #F6C75B 0%, #E5A84A 35%, #B36BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pr_text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, .78);
    max-width: 600px;
    margin-bottom: 28px;
}

.pr_hero .pr_btn {
    font-size: 14px;
    padding: 14px 36px;
}

.pr_grid {
    display: grid;
    gap: 24px;
}

.pr_grid_5 {
    grid-template-columns: repeat(5, 1fr);
}

.pr_grid_4 {
    grid-template-columns: repeat(4, 1fr);
}

.pr_block {
    background: #11141A;
    border: 1px solid rgba(214, 168, 87, .18);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
    padding: 22px 18px;
    transition: transform .2s;
}


.pr_block img {
    height: 45px;
    border-radius: 10px;
    display: block;
    margin-bottom: 12px;
}

.pr_block h4 {
    color: #F6F7FA;
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0 4px;
}

.pr_block p {
    font-size: 15px;
    opacity: .8;
    line-height: 1.5;
}

.pr_game_card {
    background: #11141A;
    border: 1px solid rgba(214, 168, 87, .18);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
    padding: 16px 14px 20px;
    transition: transform .2s;
}

.pr_game_card:hover {
    transform: translateY(-4px);
}

.pr_game_card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 8px;
}

.pr_genre {
    color: #D6A857;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.pr_game_name {
    font-size: 20px;
    font-weight: 700;
    color: #F6F7FA;
    margin: 4px 0 6px;
}

.pr_rating_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.pr_stars {
    color: #D6A857;
    letter-spacing: 2px;
    font-size: 16px;
}

.pr_score {
    font-weight: 700;
    color: #F6F7FA;
    font-size: 18px;
}

.pr_game_card .pr_btn {
    display: block;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    font-size: 13px;
}

.pr_about {
    text-align: center;
    padding: 60px 0 40px;
    max-width: 860px;
    margin: 0 auto;
}

.pr_about .pr_text {
    max-width: 780px;
    margin: 0 auto 16px;
    text-align: left;
}

.pr_faq {
    padding: 40px 0 60px;
}

.pr_faq_tabs {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 820px;
    margin: 0 auto;
}

.pr_tab {
    background: #11141A;
    border: 1px solid rgba(214, 168, 87, .18);
    border-radius: 14px;
    overflow: hidden;
}

.pr_tab_head {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 18px;
    color: #F6F7FA;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Outfit', sans-serif;
}

.pr_tab_head span {
    font-size: 22px;
    transition: transform .25s;
}

.pr_tab_head.active span {
    transform: rotate(180deg);
}

.pr_tab_body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s;
    padding: 0 24px;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.7;
}

.pr_tab_body.open {
    max-height: 300px;
    padding: 0 24px 22px;
}

.pr_footer {
    margin-top: 60px;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(214, 168, 87, .15);
}

.pr_footer_grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 30px;
    align-items: start;
}

.pr_footer_col img {
    height: 16px;
    width: auto;
    margin-bottom: 12px;
}

.pr_footer_col p {
    font-size: 14px;
    opacity: .8;
    line-height: 1.6;
}

.pr_footer_col a {
    display: block;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 8px;
    transition: color .2s;
}

.pr_footer_col a:hover {
    color: #D6A857;
}

.pr_footer_col h5 {
    color: #D6A857;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 14px;
    letter-spacing: .5px;
}

.pr_footer_legal {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(214, 168, 87, .1);
    font-size: 13px;
    opacity: .7;
    line-height: 1.8;
    text-align: left;
}

.pr_footer_bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
    font-size: 14px;
    opacity: .7;
}

.pr_section_title {
    text-align: center;
    margin-bottom: 12px;
}


.pr_contact_section {
    background: #11141A;
    border-top: 1px solid rgba(214, 168, 87, .18);
    border-bottom: 1px solid rgba(214, 168, 87, .18);
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 10px;
}

.pr_contact_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.pr_contact_left {
    padding-top: 10px;
}

.pr_contact_left .pr_text {
    font-size: 17px;
}

.pr_contact_form {
    background: rgba(255, 255, 255, .03);
    padding: 30px;
    border-radius: 14px;
    border: 1px solid rgba(214, 168, 87, .12);
}

.pr_form_group {
    margin-bottom: 18px;
}

.pr_form_group input,
.pr_form_group textarea {
    width: 100%;
    padding: 14px 18px;
    background: #090B10;
    border: 1px solid rgba(214, 168, 87, .18);
    border-radius: 8px;
    color: #F6F7FA;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    transition: border-color .2s;
    outline: none;
}

.pr_form_group input::placeholder,
.pr_form_group textarea::placeholder {
    color: rgba(255, 255, 255, .4);
}

.pr_form_group input:focus,
.pr_form_group textarea:focus {
    border-color: #D6A857;
}

.pr_form_group textarea {
    resize: vertical;
    min-height: 100px;
}

.pr_popup_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

.pr_popup_overlay.active {
    opacity: 1;
    visibility: visible;
}

.pr_popup_box {
    background: #11141A;
    border: 1px solid rgba(214, 168, 87, .25);
    border-radius: 20px;
    padding: 40px 50px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .7);
    transform: scale(.95);
    transition: transform .3s;
}

.pr_popup_overlay.active .pr_popup_box {
    transform: scale(1);
}

@media (max-width: 768px) {
    .pr_contact_wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pr_popup_box {
        padding: 30px 24px;
    }
}

.pr_page_section {
    background: #11141A;
    border-radius: 10px;
    border: 1px solid rgba(214, 168, 87, .18);
    padding: 40px 0 60px;
}

.pr_page_hero {
    text-align: center;
    padding: 20px 0 30px;
    border-bottom: 1px solid rgba(214, 168, 87, .12);
    margin-bottom: 40px;
}

.pr_page_hero .pr_subtitle {
    margin-bottom: 10px;
}

.pr_page_hero .pr_title {
    font-size: 58px;
    margin-bottom: 12px;
}

.pr_page_hero .pr_text {
    margin: 0 auto;
}

.pr_page_content {
    max-width: 820px;
    margin: 0 auto;
}

.pr_page_content h3 {
    color: #F6F7FA;
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 14px;
    letter-spacing: -0.3px;
}

.pr_page_content h3:first-of-type {
    margin-top: 0;
}

.pr_page_content p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 16px;
}

.pr_page_content ul.pr_resource_list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}

.pr_page_content ul.pr_resource_list li {
    background: #11141A;
    border: 1px solid rgba(214, 168, 87, .12);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .82);
}

.pr_page_content ul.pr_resource_list li strong {
    color: #D6A857;
}

.pr_page_footer_info {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(214, 168, 87, .12);
    font-size: 15px;
    color: rgba(255, 255, 255, .6);
}

.pr_page_footer_info a {
    color: #D6A857;
    text-decoration: none;
}

.pr_page_footer_info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .pr_page_hero .pr_title {
        font-size: 38px;
    }

    .pr_page_content h3 {
        font-size: 21px;
    }
}

.pr_about_section {
    background: #11141A;
    padding: 50px 0 70px;
    border-top: 1px solid rgba(214, 168, 87, .12);
    border-bottom: 1px solid rgba(214, 168, 87, .12);
    margin: 20px 0;
}

.pr_about_hero {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(214, 168, 87, .1);
    margin-bottom: 35px;
}

.pr_about_hero .pr_title {
    font-size: 56px;
    margin-bottom: 12px;
}

.pr_about_content {
    max-width: 820px;
    margin: 0 auto;
}

.pr_about_content p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 18px;
}

.pr_about_content p:last-of-type {
    margin-bottom: 0;
}

.pr_about_stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
    max-width: 900px;
    margin: 45px auto 0;
    background: rgba(255, 255, 255, .02);
    border-radius: 16px;
    border: 1px solid rgba(214, 168, 87, .1);
    padding: 30px 20px;
}

.pr_stat_item {
    text-align: center;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pr_stat_number {
    font-size: 42px;
    font-weight: 700;
    color: #F6F7FA;
    line-height: 1.1;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #F6C75B 0%, #E5A84A 35%, #B36BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pr_stat_title {
    font-size: 18px;
    font-weight: 600;
    color: #D6A857;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.pr_stat_text {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
}

.pr_stat_divider {
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(214, 168, 87, .3), rgba(214, 168, 87, .5), rgba(214, 168, 87, .3), transparent);
    min-height: 70px;
    align-self: center;
}

@media (max-width: 768px) {
    .pr_about_stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 15px;
    }

    .pr_stat_divider {
        width: 80%;
        height: 2px;
        min-height: auto;
        margin: 0 auto;
        background: linear-gradient(to right, transparent, rgba(214, 168, 87, .3), rgba(214, 168, 87, .5), rgba(214, 168, 87, .3), transparent);
    }

    .pr_about_hero .pr_title {
        font-size: 38px;
    }

    .pr_stat_number {
        font-size: 34px;
    }

    .pr_stat_text {
        max-width: 100%;
    }
}

.pr_faq_section {
    background: #11141A;
    padding: 50px 0 70px;
    border-top: 1px solid rgba(214, 168, 87, .12);
    border-bottom: 1px solid rgba(214, 168, 87, .12);
    margin: 20px 0;
}

.pr_faq_hero {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(214, 168, 87, .1);
    margin-bottom: 35px;
}

.pr_faq_hero .pr_title {
    font-size: 56px;
    margin-bottom: 12px;
}

.pr_faq_list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pr_faq_tab {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(214, 168, 87, .15);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s;
}

.pr_faq_tab:hover {
    border-color: rgba(214, 168, 87, .3);
}

.pr_faq_head {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #F6F7FA;
    text-align: left;
    transition: background .2s;
    gap: 16px;
}

.pr_faq_head:hover {
    background: rgba(255, 255, 255, .03);
}

.pr_faq_icon {
    font-size: 18px;
    color: #D6A857;
    transition: transform .3s ease;
    flex-shrink: 0;
}

.pr_faq_head.active .pr_faq_icon {
    transform: rotate(180deg);
}

.pr_faq_body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s ease;
    padding: 0 24px;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.7;
}

.pr_faq_body.open {
    max-height: 600px;
    padding: 0 24px 24px;
}

.pr_faq_body p {
    margin-bottom: 12px;
}

.pr_faq_body p:last-child {
    margin-bottom: 0;
}

.pr_faq_body ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 16px;
}

.pr_faq_body ul li {
    padding: 10px 16px;
    background: rgba(255, 255, 255, .03);
    border-left: 3px solid #D6A857;
    margin-bottom: 8px;
    border-radius: 0 8px 8px 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .82);
}

.pr_faq_body ul li strong {
    color: #D6A857;
}

.pr_faq_body a {
    color: #D6A857;
    text-decoration: none;
    border-bottom: 1px solid rgba(214, 168, 87, .3);
    transition: border-color .2s;
}

.pr_faq_body a:hover {
    border-bottom-color: #D6A857;
}

@media (max-width: 768px) {
    .pr_faq_hero .pr_title {
        font-size: 38px;
    }

    .pr_faq_head {
        font-size: 15px;
        padding: 16px 18px;
    }

    .pr_faq_body {
        font-size: 15px;
    }

    .pr_faq_body.open {
        padding: 0 18px 20px;
    }
}



.pr_rating_section {
    background: #11141A;
    padding: 50px 0 70px;
    border-top: 1px solid rgba(214, 168, 87, .12);
    border-bottom: 1px solid rgba(214, 168, 87, .12);
    margin: 20px 0;
}

.pr_rating_hero {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(214, 168, 87, .1);
    margin-bottom: 35px;
}

.pr_rating_hero .pr_title {
    font-size: 56px;
    margin-bottom: 12px;
}

.pr_rating_intro {
    max-width: 820px;
    margin: 0 auto 40px;
}

.pr_rating_intro p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 16px;
}

.pr_rating_intro p:last-child {
    margin-bottom: 0;
}

.pr_rating_steps {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pr_step_block {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(214, 168, 87, .12);
    border-radius: 14px;
    padding: 22px 24px;
    transition: border-color .2s, transform .2s;
}

.pr_step_block:hover {
    border-color: rgba(214, 168, 87, .3);
    transform: translateX(4px);
}

.pr_step_number {
    font-size: 32px;
    font-weight: 800;
    color: #D6A857;
    line-height: 1;
    opacity: .7;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #F6C75B 0%, #E5A84A 35%, #B36BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pr_step_content h4 {
    color: #F6F7FA;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 6px;
}

.pr_step_content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .78);
    margin: 0;
}

.pr_rating_footer {
    max-width: 820px;
    margin: 45px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(214, 168, 87, .12);
}

.pr_rating_footer h3 {
    color: #F6F7FA;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
}

.pr_rating_footer p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 16px;
}

.pr_rating_footer p:last-of-type {
    margin-bottom: 0;
}

.pr_rating_disclaimer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(214, 168, 87, .1);
    font-size: 15px;
    color: rgba(255, 255, 255, .6);
}

.pr_rating_disclaimer a {
    color: #D6A857;
    text-decoration: none;
}

.pr_rating_disclaimer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .pr_rating_hero .pr_title {
        font-size: 38px;
    }

    .pr_step_block {
        grid-template-columns: 44px 1fr;
        padding: 18px 18px;
        gap: 14px;
    }

    .pr_step_number {
        font-size: 26px;
    }

    .pr_step_content h4 {
        font-size: 17px;
    }

    .pr_step_content p {
        font-size: 15px;
    }

    .pr_rating_footer h3 {
        font-size: 21px;
    }
}


































@media (max-width: 992px) {
    .pr_grid_5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .pr_grid_4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pr_footer_grid {
        grid-template-columns: 1fr 1fr;
    }

    .pr_title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .pr_nav {
        display: none;
    }

    .pr_mobile_toggle {
        display: flex;
    }

    .pr_grid_5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pr_hero {
        padding: 30px 0;
    }

    .pr_title {
        font-size: 44px;
    }

    .pr_footer_grid {
        grid-template-columns: 1fr;
    }

    body {
        background-size: 900px;
    }
}

@media (max-width: 480px) {
    .pr_grid_5 {
        grid-template-columns: 1fr;
    }

    .pr_grid_4 {
        grid-template-columns: 1fr;
    }
}

.pr_mt-2 {
    margin-top: 20px;
}

.pr_mb-1 {
    margin-bottom: 8px;
}

.pr_center {
    text-align: center;
}