/* ============================================
   WINPAGE THEME - Default Page Styles
   ============================================ */

:root {
    --wpt-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --wpt-dark: #0a0a12;
    --wpt-dark-2: #12121e;
    --wpt-accent: #6366f1;
}

body {
    font-family: var(--wpt-font);
    background: var(--wpt-dark);
    color: #fff;
    -webkit-font-smoothing: antialiased;
}

/* Site Header */
.site-header {
    padding: 15px 5%;
    background: rgba(10,10,18,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky; top: 0; z-index: 1000;
}
.site-header-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.site-logo {
    font-size: 22px; font-weight: 800;
    color: #fff; text-decoration: none;
}
.site-nav {
    display: flex; align-items: center; gap: 25px;
}
.site-nav a {
    font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-decoration: none; transition: color 0.2s;
}
.site-nav a:hover { color: #fff; }
.site-nav .nav-btn {
    padding: 8px 20px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff; border-radius: 50px;
    font-weight: 700;
}

/* Main Content */
.site-main {
    max-width: 900px; margin: 0 auto;
    padding: 60px 5%;
}
.entry-title {
    font-size: 36px; font-weight: 800;
    margin-bottom: 30px;
}
.entry-content {
    font-size: 16px; line-height: 1.8;
    color: rgba(255,255,255,0.7);
}
.entry-content h2 { font-size: 28px; margin: 30px 0 15px; color: #fff; }
.entry-content h3 { font-size: 22px; margin: 25px 0 12px; color: #fff; }
.entry-content p { margin-bottom: 18px; }
.entry-content a { color: #a5b4fc; }
.entry-content img { border-radius: 12px; margin: 15px 0; }

/* Footer */
.site-footer-default {
    padding: 30px 5%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

/* WordPress defaults */
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: none; margin-left: -5%; margin-right: -5%; }
.wp-block-image { margin: 20px 0; }
.wp-block-image img { border-radius: 12px; }
