/**
 * FCB88 Custom Styles
 * Additional custom styles for the theme
 */

/* Entry Content Styles */
.entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #1a1a2e;
    margin: 30px 0 15px;
    font-weight: 700;
}

.entry-content h1 {
    font-size: 32px;
}

.entry-content h2 {
    font-size: 28px;
}

.entry-content h3 {
    font-size: 24px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.entry-content ul {
    list-style: disc;
}

.entry-content ol {
    list-style: decimal;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content a {
    color: #e94560;
    text-decoration: underline;
}

.entry-content a:hover {
    color: #c23a51;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.entry-content blockquote {
    border-left: 4px solid #e94560;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.entry-content th,
.entry-content td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.entry-content th {
    background: #f5f5f5;
    font-weight: 600;
}

/* Posts Navigation */
.posts-navigation {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.nav-links {
    display: flex;
    justify-content: space-between;
}

.nav-previous a,
.nav-next a {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #e94560 0%, #c23a51 100%);
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-previous a:hover,
.nav-next a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Widget Area */
.widget-area {
    margin-top: 50px;
}

.widget {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
    padding-bottom: 10px;
    border-bottom: 2px solid #e94560;
}

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

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #555;
    transition: color 0.3s;
}

.widget ul li a:hover {
    color: #e94560;
}

/* Page Links */
.page-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.page-links a,
.page-links span {
    display: inline-block;
    padding: 8px 15px;
    margin-right: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #555;
}

.page-links a:hover {
    background: #e94560;
    color: #fff;
    border-color: #e94560;
}

.page-links span {
    background: #e94560;
    color: #fff;
    border-color: #e94560;
}

/* Entry Header */
.entry-header {
    margin-bottom: 30px;
    text-align: center;
}

/* Post Classes */
.post {
    margin-bottom: 50px;
}

.post:last-child {
    margin-bottom: 0;
}

/* No Content */
.no-results {
    text-align: center;
    padding: 50px 0;
}

.no-results .page-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.no-results .page-content {
    font-size: 16px;
    color: #666;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.game-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: #e94560;
    color: #fff;
}

::-moz-selection {
    background: #e94560;
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e94560;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c23a51;
}
