:root {
    --primary: #1E293B;
    --secondary: #FDE047;
    --accent: #334155;
    --background-light: #F8FAFC;
    --background-pastel: #F1F5F9;
    --card-bg: #FFFFFF;
    --border-color: #E2E8F0;
    --text-main-light: #0F172A;
    --text-muted-light: #64748B;
    --text-main-dark: #F8FAFC;
    --text-muted-dark: #94A3B8;
    --status-yellow: #EAB308;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--background-light);
    color: var(--text-main-light);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.text-muted {
    color: #64748B !important;
}

.news-grid-container {
    display: grid;
    gap: 1.5rem;
}

.news-card-border {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--card-bg);
}

.interactive-element {
    cursor: pointer;
    user-select: none;
}

.interactive-element:hover {
    background-color: var(--background-pastel);
}

.btn-pastel-yellow {
    background-color: var(--secondary);
    color: var(--primary);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.btn-pastel-yellow:hover {
    background-color: var(--status-yellow);
}

/* ===== header ===== */
.orveniq-header .js-dropdown-content {
    min-width: 200px;
}

@media (max-width: 767px) {
    .orveniq-header .js-dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 8px;
    }

    .orveniq-header .js-dropdown-content a {
        color: #F8FAFC;
        padding-left: 20px;
    }

    .orveniq-header .js-dropdown-content a:hover {
        background: rgba(253, 224, 71, 0.1);
        color: #FDE047;
    }
}

.orveniq-header #js-menu.flex {
    animation: navFadeIn 0.2s ease-out forwards;
}

@keyframes navFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== hero ===== */
.orveniq-hero-section {
    position: relative;
    overflow: hidden;
}

.orveniq-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.orveniq-hero-overlay {
    pointer-events: none;
}

.orveniq-hero-content {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.orveniq-hero-section a {
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    display: inline-block;
}

/* ===== pc-news-grid ===== */
.pc-news-grid-block .js-filter-btn.active-filter {
    background-color: #FDE047 !important;
    border-color: #FDE047 !important;
}

.pc-news-grid-block .js-news-card {
    transition: border-color 0.2s ease;
}

.pc-news-grid-block .js-news-card:hover {
    border-color: #334155;
}

.pc-news-grid-block .js-news-card h3 {
    transition: color 0.2s ease;
}

.pc-news-grid-block .js-news-card h3:hover {
    color: #334155;
}

/* ===== mobile-news-grid ===== */
.mobile-news-grid .js-filter-btn.active {
    background-color: #FDE047;
    color: #1E293B;
    border-color: #FDE047;
}

.mobile-news-grid .js-news-card {
    transition: none;
}

.mobile-news-grid .js-news-card:hover {
    border-color: #1E293B;
}

.mobile-news-grid h2,
.mobile-news-grid h3 {
    color: #1E293B;
}

.mobile-news-grid a {
    text-decoration: none;
    color: inherit;
}

.mobile-news-grid .mt-\[48px\] a {
    color: #FDE047;
}

.mobile-news-grid .line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== reviews-grid ===== */
.reviews-grid-block .review-card {
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.reviews-grid-block .review-card:hover {
    border-color: #FDE047;
}

.reviews-grid-block .action-button {
    transition: background-color 0.2s ease, color 0.2s ease;
}

.reviews-grid-block .block-title {
    color: #1E293B;
}

.reviews-grid-block .card-title {
    color: #1E293B;
    transition: color 0.2s ease;
}

.reviews-grid-block .card-title:hover {
    color: #334155;
}

.reviews-grid-block .category-tag {
    width: fit-content;
}

/* ===== footer ===== */
.orveniq-footer .list-none {
    list-style: none;
    margin: 0;
    padding: 0;
}

.orveniq-footer .share-links a i {
    font-size: 20px;
}

.orveniq-footer .footer-contact-col a i {
    font-size: 18px;
}

.orveniq-footer .js-scroll-top {
    cursor: pointer;
    border: none;
    outline: none;
}

@media (max-width: 767px) {

    .orveniq-footer .footer-brand-col,
    .orveniq-footer .footer-nav-col,
    .orveniq-footer .footer-legal-col,
    .orveniq-footer .footer-contact-col {
        text-align: center;
        align-items: center;
    }

    .orveniq-footer .footer-contact-col .flex-col {
        align-items: center;
    }

    .orveniq-footer .share-links {
        justify-content: center;
    }
}

/* ===== PAGE: privacy ===== */
.policy-page-content { font-family: 'Plus Jakarta Sans', sans-serif; background-color: #F8FAFC; padding: 40px 0; }
.policy-container { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); }
.policy-body h2 { border-left: 4px solid #EAB308; padding-left: 16px; }
.policy-body p { color: #475569; }
.policy-body strong { color: #1E293B; }
.policy-body .privacy-contact-section p { color: #CBD5E1 !important; }
.policy-body .privacy-contact-section li span { color: #E2E8F0 !important; }
.policy-body .privacy-contact-section a { color: #FDE047 !important; }
@media (max-width: 767px) {
  .policy-container { padding: 24px 16px; border-radius: 0; border: none; }
  .policy-header { margin-bottom: 24px; }
  .policy-body h2 { margin-top: 24px; padding-left: 12px; }
  .policy-body section { margin-bottom: 32px; }
}

/* ===== PAGE: terms ===== */
.policy-page-content { padding: 48px 16px; background-color: #F8FAFC; min-height: 100vh; } .policy-page-content .policy-inner-wrapper { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); } .policy-page-content .policy-section h1, .policy-page-content .policy-section h2, .policy-page-content .policy-section h3 { color: #1E293B; } .policy-page-content .policy-list li { line-height: 1.6; } .policy-page-content .contact-item { border: 1px solid #E2E8F0; } @media (max-width: 767px) { .policy-page-content { padding: 24px 12px; } .policy-page-content .policy-inner-wrapper { padding: 20px; } }

/* ===== PAGE: disclaimer ===== */
.policy-page-content { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.6; color: #334155; }
.policy-page-content h1, .policy-page-content h2, .policy-page-content h3 { color: #0F172A; transition: color 0.2s ease; }
.policy-page-content .policy-section { margin-bottom: 2.5rem; }
.policy-page-content a { transition: opacity 0.2s ease; }
.policy-page-content a:hover { opacity: 0.8; }
.policy-page-content ul { list-style-type: none; }
.policy-page-content ul.list-disc { list-style-type: disc; }
@media (max-width: 767px) {
  .policy-page-content h1 { font-size: 18px !important; }
  .policy-page-content h2 { font-size: 16px !important; }
  .policy-page-content h3 { font-size: 14px !important; }
  .policy-page-content p, .policy-page-content li { font-size: 14px; }
}

/* ===== PAGE: cookies ===== */
.policy-page-content { padding: 24px 16px; max-width: 1000px; margin: 0 auto; }
.policy-page-content .policy-section { width: 100%; }
.policy-page-content .tool-card { height: 100%; transition: border-color 0.2s ease; }
.policy-page-content .tool-card:hover { border-color: #FDE047; }
.policy-page-content h2 { color: #1E293B; letter-spacing: -0.025em; }
.policy-page-content h3 { color: #1E293B; letter-spacing: -0.01em; }
.policy-page-content p { color: #0F172A; }
.policy-page-content ul li i { font-size: 1.1em; }
@media (min-width: 768px) {
  .policy-page-content { padding: 64px 24px; }
}

/* ===== PAGE: pc-news ===== */
.pc-news-grid .js-search-input::placeholder { color: #94A3B8; opacity: 1; } .pc-news-grid .js-news-item { height: 100%; } .pc-news-grid .js-news-title a { text-decoration: none; color: inherit; } .pc-news-grid .js-news-title a:hover { color: #334155; }

/* ===== PAGE: mobile-gaming ===== */
.mobile-gaming-section .mg-card {
  transition: all 0.2s ease-in-out;
}
.mobile-gaming-section .mg-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}
.mobile-gaming-section .js-search-input::placeholder {
  color: #94A3B8;
}
.mobile-gaming-section select {
  background-image: none;
}

/* ===== PAGE: reviews-guides ===== */
.reviews-grid-section .scrollbar-hide::-webkit-scrollbar { display: none; }
.reviews-grid-section .scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.reviews-grid-section .js-post-card { transition: border-color 0.2s ease; height: 100%; }
.reviews-grid-section .js-post-card:hover { border-color: #1E293B; }
.reviews-grid-section .js-filter-btn.active { background-color: #1E293B !important; color: white !important; border-color: #1E293B !important; }

/* ===== PAGE: contact ===== */
.contact-section-orveniq .js-input-field::placeholder { color: #94A3B8; opacity: 1; }.contact-section-orveniq .js-input-field:focus { box-shadow: 0 0 0 2px rgba(253, 224, 71, 0.2); }.contact-section-orveniq select { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23334155'%3e%3cpath d='M12 16L6 10H18L12 16Z'%3e%3c/path%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1em; }

.orveniq-comment-main {
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
}

.avatar-container div {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.comment-content p {
    word-break: break-word;
}

.comment-actions button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}

.orveniq-reply-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.reply-connector {
    top: -20px;
}

.orveniq-comment-reply {
    position: relative;
}

.avatar-container div {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.comment-actions button {
    cursor: pointer;
    border: none;
    background: transparent;
}


/* ===== PAGE TEMPLATE: pc-news ===== */
.orveniq-header .js-dropdown-content {
    min-width: 200px;
}

@media (max-width: 767px) {
    .orveniq-header .js-dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 8px;
    }

    .orveniq-header .js-dropdown-content a {
        color: #F8FAFC;
        padding-left: 20px;
    }

    .orveniq-header .js-dropdown-content a:hover {
        background: rgba(253, 224, 71, 0.1);
        color: #FDE047;
    }
}

.orveniq-header #js-menu.flex {
    animation: navFadeIn 0.2s ease-out forwards;
}

@keyframes navFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.orveniq-hero-section {
    position: relative;
    overflow: hidden;
}

.orveniq-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.orveniq-hero-content {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.orveniq-detail-page .article-body-content p {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.8;
    color: #334155;
}

@media (min-width: 768px) {
    .orveniq-detail-page .article-body-content p {
        font-size: 16px;
    }
}

.orveniq-detail-page .article-body-content h2 {
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
    margin: 32px 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .orveniq-detail-page .article-body-content h2 {
        font-size: 32px;
    }
}

.orveniq-detail-page .article-body-content h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1E293B;
    margin: 24px 0 12px;
}

@media (min-width: 768px) {
    .orveniq-detail-page .article-body-content h3 {
        font-size: 26px;
    }
}

.orveniq-detail-page .article-body-content ul,
.orveniq-detail-page .article-body-content ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.orveniq-detail-page .article-body-content li {
    margin-bottom: 8px;
    position: relative;
    list-style: disc;
}

.orveniq-detail-page .article-body-content strong {
    color: #0F172A;
    font-weight: 700;
}

.orveniq-footer .list-none {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 767px) {

    .orveniq-footer .footer-brand-col,
    .orveniq-footer .footer-nav-col,
    .orveniq-footer .footer-legal-col,
    .orveniq-footer .footer-contact-col {
        text-align: center;
        align-items: center;
    }

    .orveniq-footer .share-links {
        justify-content: center;
    }
}

.orveniq-detail-page .js-newsletter-form input::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.orveniq-detail-page .js-newsletter-form input:focus {
    background-color: #1E293B;
}

/* ===== PAGE TEMPLATE: mobile-gaming ===== */
.orveniq-header .js-dropdown-content {
    min-width: 200px
}

@media (max-width:767px) {
    .orveniq-header .js-dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 8px
    }

    .orveniq-header .js-dropdown-content a {
        color: #F8FAFC;
        padding-left: 20px
    }

    .orveniq-header .js-dropdown-content a:hover {
        background: rgba(253, 224, 71, 0.1);
        color: #FDE047
    }
}

#js-menu.flex {
    animation: navFadeIn 0.2s ease-out forwards
}

@keyframes navFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.orveniq-detail-page .rich-text-container h2 {
    color: #1E293B;
    font-weight: 700;
    margin: 24px 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    font-size: 16px
}

@media (min-width:768px) {
    .orveniq-detail-page .rich-text-container h2 {
        font-size: 26px
    }
}

.orveniq-detail-page .rich-text-container p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px
}

@media (min-width:768px) {
    .orveniq-detail-page .rich-text-container p {
        font-size: 16px
    }
}

.orveniq-detail-page .rich-text-container ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px
}

.orveniq-detail-page .rich-text-container ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #475569
}

.orveniq-detail-page .rich-text-container ul li::before {
    content: "\eb7a";
    font-family: remixicon;
    position: absolute;
    left: 0;
    top: 2px;
    color: #FDE047;
    font-weight: bold
}

.orveniq-detail-page .rich-text-container strong {
    color: #0F172A;
    font-weight: 700
}

.orveniq-footer .list-none {
    list-style: none;
    margin: 0;
    padding: 0
}

.orveniq-footer .share-links a i {
    font-size: 20px
}

.orveniq-footer .footer-contact-col a i {
    font-size: 18px
}

.orveniq-footer .js-scroll-top {
    cursor: pointer;
    border: none;
    outline: none
}

@media (max-width:767px) {

    .orveniq-footer .footer-brand-col,
    .orveniq-footer .footer-nav-col,
    .orveniq-footer .footer-legal-col,
    .orveniq-footer .footer-contact-col {
        text-align: center;
        align-items: center
    }

    .orveniq-footer .footer-contact-col .flex-col {
        align-items: center
    }

    .orveniq-footer .share-links {
        justify-content: center
    }
}

/* ===== PAGE TEMPLATE: reviews-guides ===== */
.orveniq-header .js-dropdown-content {
    min-width: 200px;
}

@media (max-width: 767px) {
    .orveniq-header .js-dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 8px;
    }

    .orveniq-header .js-dropdown-content a {
        color: #F8FAFC;
        padding-left: 20px;
    }

    .orveniq-header .js-dropdown-content a:hover {
        background: rgba(253, 224, 71, 0.1);
        color: #FDE047;
    }
}

.orveniq-header #js-menu.flex {
    animation: navFadeIn 0.2s ease-out forwards;
}

@keyframes navFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.orveniq-rich-text h2 {
    color: #1E293B;
    font-weight: 800;
    font-size: 16px;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .orveniq-rich-text h2 {
        font-size: 32px;
    }
}

.orveniq-rich-text h3 {
    color: #334155;
    font-weight: 700;
    font-size: 14px;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .orveniq-rich-text h3 {
        font-size: 26px;
    }
}

.orveniq-rich-text p {
    margin-bottom: 1.25rem;
    color: #334155;
}

.orveniq-rich-text ul {
    list-style: none;
    margin-bottom: 1.25rem;
    padding-left: 0;
}

.orveniq-rich-text ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.orveniq-rich-text ul li::before {
    content: '\eb7c';
    font-family: 'remixicon';
    position: absolute;
    left: 0;
    color: #EAB308;
}

.orveniq-footer .list-none {
    list-style: none;
    margin: 0;
    padding: 0;
}

.orveniq-footer .share-links a i {
    font-size: 20px;
}

.orveniq-footer .footer-contact-col a i {
    font-size: 18px;
}

.orveniq-footer .js-scroll-top {
    cursor: pointer;
    border: none;
    outline: none;
}

@media (max-width: 767px) {

    .orveniq-footer .footer-brand-col,
    .orveniq-footer .footer-nav-col,
    .orveniq-footer .footer-legal-col,
    .orveniq-footer .footer-contact-col {
        text-align: center;
        align-items: center;
    }

    .orveniq-footer .footer-contact-col .flex-col {
        align-items: center;
    }

    .orveniq-footer .share-links {
        justify-content: center;
    }
}