/*
Theme Name: Competitor Theme
Theme URI: https://yourwebsite.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: A simple and clean WordPress theme
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: competitor-theme
*/

/* ============================================================
   CSS VARIABLES (from Customizer)
============================================================ */
:root {
    --header-bg: #141417;
    --header-border: rgba(226, 232, 240, 0.5);
    --header-text: #fefefe;
    --header-text-hover: #F9BB22;
    --header-accent: #F9BB22;
    --header-accent-secondary: #fd9400;
    --play-btn-start: #F9BB22;
    --play-btn-end: #fd9400;
    --register-bg: #000000;
    --register-text: #ffffff;
    --register-border: #c18504;
    
    /* Mobile Header */
    --mobile-title-color: #ffffff;
    --mobile-title-size: 24px;
    --mobile-tagline-color: rgba(255,255,255,0.6);
    --mobile-tagline-size: 13px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   NAVBAR - FROM YOUR DESIGN
============================================================ */
.navbar {
    background: var(--header-bg, #141417);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--header-border, rgba(226, 232, 240, 0.5));
    padding: 0 2rem;
    height: 76px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.navbar .container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-image {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.25s;
}

.logo:hover .logo-image {
    transform: scale(1.03);
}

.site-title {
    font-size: 24px;
    margin: 0;
    color: var(--header-text, #fefefe);
}

.site-title a {
    color: var(--header-text, #fefefe);
    text-decoration: none;
}

.site-title a:hover {
    color: var(--header-text-hover, #F9BB22);
}

/* ============================================================
   DESKTOP MENU
============================================================ */
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    color: var(--header-text, #fefefe);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--header-accent, #F9BB22), var(--header-accent-secondary, #fd9400));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
}

.nav-links li a:hover::after {
    width: 60%;
}

.nav-links li a i {
    font-size: 0.95rem;
    color: var(--header-accent, #F9BB22);
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--header-text-hover, #F9BB22);
}

.nav-links li a:hover i {
    color: #ffffff;
}

.nav-links li a.active {
    color: #fff;
}

.nav-links li a.active::after {
    width: 60%;
}

/* ============================================================
   DROPDOWN
============================================================ */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.04);
}

.dropdown-arrow {
    font-size: 0.5rem;
    margin-left: 2px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #94a3b8;
}

.dropdown-arrow.rotated {
    transform: rotate(180deg);
    color: var(--header-accent, #F9BB22);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.97);
    background: var(--header-bg, #141417);
    min-width: 220px;
    border-radius: 12px;
    padding: 0.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    margin: 0;
}

.dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 0%, rgba(249, 187, 34, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.dropdown-menu.open::before {
    opacity: 1;
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--header-bg, #141417);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.dropdown-menu.open::after {
    border-color: rgba(249, 187, 34, 0.2);
}

.dropdown-menu li {
    margin: 2px 0;
    list-style: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.6rem 0.9rem;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--header-accent, #F9BB22), var(--header-accent-secondary, #fd9400));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
}

.dropdown-menu li a:hover::after {
    width: 80%;
}

.dropdown-menu li a i {
    font-size: 0.85rem;
    color: #94a3b8;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover i {
    color: var(--header-accent, #F9BB22);
}

.dropdown-menu li a:hover {
    color: var(--header-accent, #F9BB22);
}

/* ============================================================
   ACTION BUTTONS
============================================================ */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--play-btn-start, #F9BB22), var(--play-btn-end, #fd9400));
    color: #fff;
    padding: 0.65rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-play::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: left 0.5s;
}

.btn-play:hover::before {
    left: 100%;
}

.btn-play:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.55);
    color: #fff;
    text-decoration: none;
}

.btn-play:active {
    transform: scale(0.95);
}

.btn-register {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--register-bg, #000000);
    color: var(--register-text, #ffffff);
    padding: 0.65rem 1.5rem;
    border: 1px solid var(--register-border, #c18504);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(193, 133, 4, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-register::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: left 0.5s;
}

.btn-register:hover::before {
    left: 100%;
}

.btn-register:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(193, 133, 4, 0.55);
    color: #fff;
    text-decoration: none;
}

.btn-register:active {
    transform: scale(0.95);
}

/* ============================================================
   BURGER
============================================================ */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s;
    margin-left: 8px;
}

.burger span {
    width: 26px;
    height: 2.5px;
    background: var(--header-text, #fefefe);
    border-radius: 4px;
    transition: all 0.3s;
}

.burger span:nth-child(1) {
    width: 20px;
}
.burger span:nth-child(3) {
    width: 14px;
}

.burger:hover span {
    background: var(--header-accent, #F9BB22);
}

/* ============================================================
   MOBILE OVERLAY
============================================================ */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   MOBILE MENU
============================================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: #ffffff;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
}

.mobile-menu.active {
    right: 0;
}

.mobile-header {
    position: relative;
    height: 140px;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 1.5rem;
}

.mobile-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.mobile-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    padding: 6px;
    border-radius: 30px;
    transition: all 0.2s;
    z-index: 3;
    backdrop-filter: blur(4px);
}

.close-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(90deg);
}

.mobile-body {
    flex: 1;
    padding: 1.5rem 1.5rem 0;
    overflow-y: auto;
}

.mobile-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-body ul li {
    list-style: none;
}

.mobile-body ul li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0.85rem 0.8rem;
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.15s;
}

.mobile-body ul li a i {
    width: 24px;
    color: #000000;
    font-size: 1.1rem;
}

.mobile-body ul li a:hover {
    color: var(--header-accent, #F9BB22);
}
.mobile-body ul li a:hover i {
    color: var(--header-accent, #F9BB22);
}

/* ============================================================
   MOBILE DROPDOWN
============================================================ */
.mobile-dropdown {
    margin: 0;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0.85rem 0.8rem;
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-dropdown-toggle i:first-child {
    width: 24px;
    color: #94a3b8;
    font-size: 1.1rem;
}

.mobile-dropdown-toggle i:last-child {
    margin-left: auto;
    font-size: 0.7rem;
    transition: transform 0.3s;
    color: #94a3b8;
}

.mobile-dropdown-toggle i:last-child.rotated {
    transform: rotate(180deg);
}

.mobile-dropdown-toggle:hover {
    background: #f1f5f9;
    color: var(--header-accent, #F9BB22);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1.5rem;
}

.mobile-submenu.open {
    max-height: 300px;
    margin-left: 15px;
}

.mobile-submenu li a {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    color: #475569;
}

.mobile-submenu li a:hover {
    color: var(--header-accent, #F9BB22);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1rem;
    padding: 1rem 0 0.5rem;
    border-top: 1px solid #e2e8f0;
}

.mobile-actions .btn-play,
.mobile-actions .btn-register {
    justify-content: center;
    padding: 0.85rem;
    font-size: 0.95rem;
    border-radius: 50px;
    width: 100%;
    text-align: center;
}

/* Mobile Social Media - Grid Layout */
.mobile-socials {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 20px 0;
    justify-items: center;
}

.mobile-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--social-bg-color, #f1f5f9);
    color: var(--social-icon-color, #475569);
    border-radius: 12px;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.mobile-socials a:hover {
    background: var(--social-bg-hover, #F9BB22);
    color: var(--social-icon-hover, #ffffff);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(249, 187, 34, 0.3);
}
/* ============================================================
   MAIN CONTENT
============================================================ */


/* Posts */

.entry-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.entry-title a {
    color: #333;
    text-decoration: none;
}

.entry-title a:hover {
    color: #007bff;
}

.entry-meta {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.entry-meta span {
    margin-right: 15px;
}

.entry-content {
    line-height: 1.8;
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

.post-thumbnail {
    margin-bottom: 20px;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.read-more {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    margin-top: 10px;
}

.read-more:hover {
    background: #0056b3;
    text-decoration: none;
    color: #fff;
}

/* ============================================================
   SIDEBAR
============================================================ */
.sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.widget {
    margin-bottom: 25px;
}

.widget-title {
    font-size: 18px;
    border-bottom: 2px solid var(--header-accent, #F9BB22);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
    background: #1a1a2e;
    color: #aaa;
    padding: 30px 0;
    margin-top: 40px;
    text-align: center;
}

.site-footer a {
    color: var(--header-accent, #F9BB22);
}

.site-footer a:hover {
    color: #fff;
}

/* ============================================================
   PAGINATION
============================================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pagination .current {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* ============================================================
   LAYOUT
============================================================ */
.content-area {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 992px) {
    .navbar {
        padding: 0 1.2rem;
    }
    .desktop-menu {
        display: none;
    }
    .burger {
        display: flex;
    }
    .mobile-actions {
        display: flex;
        flex-direction: row;
    }
    .mobile-actions .btn-play,
    .mobile-actions .btn-register {
        padding: 0.65rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .content-area {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 1rem;
        height: 68px;
    }
    
    .logo-image {
        height: 38px;
        max-width: 150px;
    }
    
    .mobile-menu {
        width: 90%;
        right: -100%;
    }
    .mobile-header {
        height: 120px;
    }
    .mobile-logo-image {
        height: 40px;
        max-width: 160px;
    }
    .mobile-actions {
        flex-direction: row;
    }
    .mobile-actions .btn-play,
    .mobile-actions .btn-register {
        padding: 0.55rem;
        font-size: 0.85rem;
    }
}

@media (min-width: 993px) {
    .action-buttons {
        display: flex !important;
    }
}

/* ============================================================
   LOGO - Site Title & Tagline
============================================================ */
.logo .site-title {
    color: var(--header-text, #fefefe);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.logo .site-title:hover {
    color: var(--header-text-hover, #F9BB22);
}

.logo .site-description {
    color: #94a3b8;
    font-size: 12px;
    display: block;
    margin-top: -4px;
}

/* ============================================================
   MOBILE HEADER - Site Title & Tagline
============================================================ */
.mobile-site-title {
    color: var(--mobile-title-color, #ffffff);
    font-size: var(--mobile-title-size, 24px);
    font-weight: 700;
    display: block;
    text-align: center;
}

.mobile-site-description {
    color: var(--mobile-tagline-color, rgba(255,255,255,0.6));
    font-size: var(--mobile-tagline-size, 13px);
    display: block;
    text-align: center;
    margin-top: 4px;
}

/* ============================================================
   LOGO - Custom Logo
============================================================ */
.logo .custom-logo {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.logo:hover .custom-logo {
    transform: scale(1.03);
}

/* Hide site title when logo exists */
.logo .site-title,
.logo .site-description {
    display: block;
}

/* When logo exists, hide title and description */
.logo:has(.custom-logo) .site-title,
.logo:has(.custom-logo) .site-description {
    display: none !important;
}

/* Make logo take full space */
.logo {
    display: flex;
    align-items: center;
}

.logo:has(.custom-logo) {
    display: flex;
    align-items: center;
}

/* ============================================================
   MOBILE LOGO IMAGE
============================================================ */
.mobile-logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* ============================================================
   FOOTER - EXACT DESIGN
============================================================ */
.footer {
    background: #141417;
    border-top: 2px solid #f1f5f9;
    padding: 3rem 1.5rem 1.5rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

/* Brand - gaya ng header */
.footer-brand .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 52px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: transform 0.25s;
}

.footer-brand .logo:hover .footer-logo-image {
    transform: scale(1.03);
}

.footer-brand p {
    color: #e3e3e3;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 1.2rem;
}

/* Social Media - gaya ng header */
.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: #F9BB22;
    color: #000000;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}

/* Age Badge - gaya ng header */
.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 6px 16px;
    border-radius: 30px;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.8rem;
}

.age-badge i {
    color: #22c55e;
}

/* Columns - gaya ng header */
.footer-col h3 {
    color: #F9BB22;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2.5px;
    background: #F9BB2277;
    border-radius: 4px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #e3e3e3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a i {
    font-size: 0.65rem;
    color: #F9BB22;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.2s;
}

.footer-col ul li a:hover {
    color: #F9BB22;
    transform: translateX(4px);
}

.footer-col ul li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Trust Badges - gaya ng header */
.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0.5rem;
}
.payment-badge {
    background: var(--trust-badge-bg, #f1f5f9);
    color: var(--trust-badge-text, #475569);
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.payment-badge i {
    color: var(--trust-badge-icon, #F97316);
    font-size: 0.85rem;
}

.payment-badge:hover {
    background: var(--trust-badge-hover-bg, #F9BB22);
    color: var(--trust-badge-hover-text, #010101);
    transform: translateY(-2px);
}

.payment-badge:hover i {
    color: var(--trust-badge-hover-icon, #010101);
}

.payment-badge.verified {
    background: var(--trust-badge-verified-bg, #dcfce7);
    color: var(--trust-badge-verified-text, #16a34a);
}

.payment-badge.verified i {
    color: var(--trust-badge-verified-icon, #16a34a);
}


/* Footer Bottom - gaya ng header */
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.85rem;
}

.footer-bottom p span {
    color: #F9BB22;
}

/* Back to Top - gaya ng header */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #fff;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.55);
}

.back-to-top:active {
    transform: scale(0.9);
}

/* ============================================================
   RESPONSIVE - gaya ng header
============================================================ */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-logo-image {
        height: 44px;
        max-width: 180px;
    }

    .payment-badges {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .age-badge {
        justify-content: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-logo-image {
        height: 38px;
        max-width: 150px;
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

/* ============================================================
   PAGE TEMPLATE
============================================================ */
.page-header-wrap {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    padding: 60px 0 50px;
    text-align: center;
    border-bottom: 4px solid #F9BB22;
    margin-bottom: 40px;
    width: 100%;
}

.page-header-wrap .page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.page-header-wrap .page-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

.page-header-wrap .page-divider {
    width: 80px;
    height: 3px;
    background: #F9BB22;
    margin: 15px auto 20px;
}

.page-content-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin: 0 40px 40px;
}

.page-entry-content h2 {
    font-size: 28px;
    color: #1a1a2e;
    margin: 30px 0 15px;
}

.page-entry-content h3 {
    font-size: 22px;
    color: #1a1a2e;
    margin: 25px 0 12px;
}

.page-entry-content p {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}

.page-entry-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-entry-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
}

.page-entry-content ul li i {
    color: #F9BB22;
    font-size: 14px;
    width: 20px;
}

.page-entry-content blockquote {
    background: #f8f8f8;
    border-left: 4px solid #F9BB22;
    padding: 20px 30px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
    font-size: 17px;
}

.page-entry-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 14px;
}

.page-entry-content blockquote cite::before {
    content: '— ';
}

.page-featured-image {
    margin-bottom: 30px;
}

.page-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ============================================================
   SINGLE POST - FULL WIDTH
============================================================ */
.single-post {
    width: 100%;
}

/* HERO - FULL WIDTH */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: #0a0a0c; /* BLACK BACKGROUND */
}

.hero-section:not([style*="background-image"]) {
    background-color: #0a0a0c;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.85) 0%, rgba(249, 115, 22, 0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 50px 60px;
    max-width: 900px;
    color: #fff;
}

.hero-category {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    padding: 4px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fdba74;
    margin-bottom: 16px;
}

.hero-category i {
    color: #fb923c;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #fff;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.hero-meta span i {
    margin-right: 6px;
    color: #fb923c;
}

/* MAIN LAYOUT - FULL WIDTH */
.main-layout {
    width: 100%;
    padding: 30px 40px;
}

/* SHARE FLOATING - FIXED SA GILID */
.share-floating {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}
.share-floating .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #6b7280;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.share-floating .share-btn:hover {
    background: #f97316;
    color: #fff;
    border-color: #f97316;
    transform: translateY(-2px);
}

/* TWO COLUMN - FULL WIDTH */
.two-col {
    display: grid;
    grid-template-columns: 50px 1fr 340px;
    gap: 30px;
    width: 100%;
}

/* POST BODY */
.post-body {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #374151;
    background: #fff;
    border-radius: 12px;
    padding: 40px 48px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.04);
}

.post-body h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111827;
    margin: 2rem 0 0.8rem;
}

.post-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 1.6rem 0 0.6rem;
}

.post-body p {
    margin-bottom: 1.3rem;
}

.post-body blockquote {
    border-left: 4px solid #f97316;
    padding: 16px 24px;
    margin: 28px 0;
    font-style: italic;
    background: #fff7ed;
    border-radius: 0 8px 8px 0;
}

.post-body img {
    width: 100%;
    border-radius: 12px;
    margin: 24px 0;
}

.post-body ul,
.post-body ol {
    padding-left: 28px;
    margin-bottom: 1.3rem;
}

.post-body a {
    color: #ea580c;
    text-decoration: none;
    font-weight: 500;
}

.post-body a:hover {
    text-decoration: underline;
}

/* SIDEBAR */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sidebar-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #f3f4f6;
}

.sidebar-card h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #6b7280;
    font-weight: 600;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 10px;
    margin-bottom: 16px;
}

.sidebar-card h4 i {
    color: #f97316;
}

/* TOC */
.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    padding: 5px 0;
    font-size: 0.95rem;
}

.toc-list a {
    text-decoration: none;
    color: #6b7280;
    transition: all 0.3s;
    display: block;
    font-weight: 500;
}

.toc-list a:hover {
    color: #f97316;
    padding-left: 4px;
}

/* AUTHOR */
.author-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid #ffedd5;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: #111827;
}

.author-bio {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 4px 0 8px;
    line-height: 1.5;
}

.author-social a {
    color: #9ca3af;
    margin-right: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
}

.author-social a:hover {
    color: #f97316;
}

/* RELATED */
.related-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    color: #1f2937;
    align-items: center;
    transition: all 0.3s;
}

.related-item:last-child {
    border-bottom: none;
}

.related-item:hover .related-title {
    color: #f97316;
}

.related-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-title {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
    transition: all 0.3s;
}

.related-date {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* SHARE HORIZONTAL (MOBILE) */
.share-horizontal {
    display: none;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.share-horizontal span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #374151;
    margin-right: 8px;
}

.share-horizontal .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #6b7280;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.share-horizontal .share-btn:hover {
    background: #f97316;
    color: #fff;
    border-color: #f97316;
    transform: translateY(-2px);
}

/* TAGS */
.tags-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.tag-pill {
    background: #f3f4f6;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s;
}

.tag-pill:hover {
    background: #f97316;
    color: #fff;
}

/* PROGRESS BAR */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #ea580c);
    z-index: 999;
    width: 0%;
    transition: width 0.1s;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .share-floating {
        display: none;
    }

    .share-horizontal {
        display: flex;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 350px;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 30px 24px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .post-body {
        padding: 24px 20px;
        font-size: 1rem;
    }

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

    .main-layout {
        padding: 20px 15px;
    }

    .page-content-wrap {
        margin: 0 15px 30px;
        padding: 25px;
    }

    .page-header-wrap {
        padding: 40px 0 30px;
    }

    .page-header-wrap .page-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-meta {
        gap: 12px;
        font-size: 0.8rem;
    }

    .post-body {
        padding: 18px 16px;
    }

    .share-horizontal {
        gap: 6px;
    }

    .share-horizontal .share-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .page-header-wrap .page-title {
        font-size: 24px;
    }

    .page-content-wrap {
        padding: 20px;
        margin: 0 10px 20px;
    }
}

/* BREADCRUMBS */
.breadcrumbs {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.breadcrumbs a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #fb923c;
}

.breadcrumbs .separator {
    color: rgba(255,255,255,0.3);
    margin: 0 4px;
}

.breadcrumbs .current {
    color: #fff;
    font-weight: 600;
}

/* HERO META */
.hero-meta i {
    color: var(--hero-meta-color, #fb923c);
    margin-right: 6px;
}
