* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0c12;
    color: #eef2ff;
    line-height: 1.6;
}

.blog-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.blog-header {
    padding: 2rem 0;
    border-bottom: 1px solid #1f2532;
    margin-bottom: 2rem;
}

.blog-header-inner {
    text-align: center;
}

.blog-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.blog-logo a {
    color: #FFD966;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-logo a:hover {
    color: #FF8C42;
}

.blog-separator {
    color: #4a5568;
    margin: 0 0.5rem;
}

.blog-name {
    color: #eef2ff !important;
}

.blog-tagline {
    color: #8a99b0;
    font-size: 1rem;
}

/* Main Layout */
.blog-main {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
}

.blog-content {
    flex: 3;
}

.blog-sidebar {
    flex: 1;
}

/* Posts Grid */
.posts-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.post-card {
    background: #11161f;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #222a36;
    transition: transform 0.2s, border-color 0.2s;
}

.post-card:hover {
    transform: translateY(-4px);
    border-color: #F5B042;
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #8a99b0;
}

.post-category a {
    color: #F5B042;
    text-decoration: none;
    font-weight: 600;
}

.post-category a:hover {
    text-decoration: underline;
}

.post-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.post-title a {
    color: #eef2ff;
    text-decoration: none;
}

.post-title a:hover {
    color: #F5B042;
}

.post-excerpt {
    color: #b9c7d9;
    margin-bottom: 1rem;
}

.read-more {
    color: #F5B042;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    gap: 0.75rem;
}

/* Single Post */
.post-layout {
    gap: 3rem;
}

.single-post {
    background: #11161f;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #222a36;
}

.post-header {
    margin-bottom: 1.5rem;
}

.post-title-single {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 1rem;
    line-height: 1.3;
}

.post-featured-image {
    margin: 1.5rem 0;
}

.post-featured-image img {
    width: 100%;
    border-radius: 0.75rem;
}

.post-body {
    font-size: 1.05rem;
    line-height: 1.7;
}

.post-body h2 {
    font-size: 1.8rem;
    margin: 1.5rem 0 1rem;
    color: #FFD966;
}

.post-body h3 {
    font-size: 1.4rem;
    margin: 1.2rem 0 0.8rem;
    color: #FFD966;
}

.post-body p {
    margin-bottom: 1rem;
}

.post-body ul, .post-body ol {
    margin: 1rem 0 1rem 2rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-body a {
    color: #F5B042;
    text-decoration: none;
}

.post-body a:hover {
    text-decoration: underline;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #222a36;
}

.tag {
    background: #1a1f2c;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #b9c7d9;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid #222a36;
    border-bottom: 1px solid #222a36;
}

.share-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.share-btn:hover {
    opacity: 0.8;
}

.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.linkedin { background: #0077b5; }
.email { background: #6c757d; }

.post-navigation {
    margin-top: 1.5rem;
}

.back-to-blog {
    color: #F5B042;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #11161f;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #222a36;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #F5B042;
    display: inline-block;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.75rem;
    background: #0a0c12;
    border: 1px solid #222a36;
    border-radius: 0.5rem;
    color: #eef2ff;
}

.search-input:focus {
    outline: none;
    border-color: #F5B042;
}

.search-btn {
    padding: 0.75rem 1rem;
    background: #F5B042;
    border: none;
    border-radius: 0.5rem;
    color: #0a0c12;
    cursor: pointer;
    font-weight: 600;
}

/* Category & Recent Lists */
.category-list, .recent-posts, .popular-posts {
    list-style: none;
}

.category-list li, .recent-posts li, .popular-posts li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #1f2532;
}

.category-list a, .recent-posts a, .popular-posts a {
    color: #eef2ff;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

.category-list a:hover, .recent-posts a:hover, .popular-posts a:hover {
    color: #F5B042;
}

.post-date-small, .post-views-small {
    font-size: 0.75rem;
    color: #8a99b0;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #1e2a3a, #0f1422);
}

.newsletter-input {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0;
    background: #0a0c12;
    border: 1px solid #222a36;
    border-radius: 0.5rem;
    color: #eef2ff;
}

.newsletter-btn {
    width: 100%;
    padding: 0.75rem;
    background: #F5B042;
    border: none;
    border-radius: 0.5rem;
    color: #0a0c12;
    font-weight: 700;
    cursor: pointer;
}

/* Featured Casino */
.featured-casino {
    background: linear-gradient(135deg, #2a1f2e, #1a1220);
    text-align: center;
}

.offer-badge {
    background: #F5B042;
    color: #0a0c12;
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.offer-btn {
    display: inline-block;
    background: #F5B042;
    color: #0a0c12;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1rem;
    transition: background 0.2s;
}

.offer-btn:hover {
    background: #FF8C42;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 0;
}

.pagination a {
    background: #11161f;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: #eef2ff;
    text-decoration: none;
    border: 1px solid #222a36;
}

.pagination a:hover {
    border-color: #F5B042;
    color: #F5B042;
}

/* Category Title */
.category-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #F5B042;
    display: inline-block;
}

/* Footer */
.blog-footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid #1f2532;
    color: #6c7a91;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-main {
        flex-direction: column;
    }
    
    .post-title-single {
        font-size: 1.8rem;
    }
    
    .blog-container {
        padding: 0 1rem;
    }
    
    .single-post {
        padding: 1rem;
    }
}

/* Navigation Bar */
.blog-nav {
    background: #0f131e;
    border-radius: 1rem;
    margin-bottom: 2rem;
    border: 1px solid #222a36;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 1.2rem;
    color: #eef2ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.nav-menu li a:hover {
    color: #F5B042;
    background: rgba(245, 176, 66, 0.05);
}

.nav-menu li a.active {
    color: #F5B042;
    border-bottom-color: #F5B042;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: #0f131e;
    border-radius: 0.75rem;
    font-size: 0.85rem;
}

.breadcrumbs a {
    color: #F5B042;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs i {
    color: #4a5568;
    font-size: 0.7rem;
}

.breadcrumbs span {
    color: #8a99b0;
}

/* Related Posts */
.related-posts {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #0f131e;
    border-radius: 1rem;
}

.related-posts h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.related-card {
    background: #11161f;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #222a36;
    transition: all 0.2s ease;
}

.related-card:hover {
    border-color: #F5B042;
    transform: translateY(-2px);
}

.related-card a {
    text-decoration: none;
}

.related-card h4 {
    font-size: 0.95rem;
    color: #eef2ff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.read-more-small {
    font-size: 0.75rem;
    color: #F5B042;
}

.claim-bonus-link {
    background: linear-gradient(95deg, #F5B042, #E67E22);
    color: #0a0c12;
    padding: 0.6rem 1.2rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Internal Links Footer */
.internal-links-footer {
    background: #0f131e;
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0 1rem;
    border: 1px solid #222a36;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.links-column h4 {
    color: #F5B042;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.links-column ul {
    list-style: none;
}

.links-column ul li {
    margin-bottom: 0.5rem;
}

.links-column ul li a {
    color: #8a99b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.links-column ul li a:hover {
    color: #F5B042;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #8a99b0;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #F5B042;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-menu li a {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    .nav-menu li a i {
        font-size: 0.9rem;
    }
    
    .links-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .internal-links-footer {
        padding: 1.5rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        flex-direction: column;
        align-items: stretch;
    }
    
    .claim-bonus-link {
        text-align: center;
        justify-content: center;
    }
}
/* Category Page Specific Styles */
.category-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: linear-gradient(135deg, #11161f, #0a0e18);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #222a36;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: rgba(245, 176, 66, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #F5B042;
}

.category-info {
    flex: 1;
}

.category-title {
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, #FFD966, #FF8C42);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.category-description {
    color: #8a99b0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.category-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-badge {
    background: #0a0c12;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #8a99b0;
}

.stat-badge i {
    color: #F5B042;
    margin-right: 5px;
}

/* Active Category in Sidebar */
.category-list a.active-category {
    color: #F5B042;
    background: rgba(245, 176, 66, 0.1);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.category-list a.active-category .category-count {
    background: #F5B042;
    color: #0a0c12;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    transition: all 0.2s;
}

.category-list a:hover {
    background: rgba(245, 176, 66, 0.05);
    border-radius: 0.5rem;
}

.category-count {
    background: #1a1f2c;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-size: 0.7rem;
    color: #8a99b0;
}

/* Popular Posts Widget Enhanced */
.popular-posts li {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #1f2532;
}

.popular-posts li:last-child {
    border-bottom: none;
}

.popular-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #eef2ff;
}

.popular-meta {
    font-size: 0.7rem;
    color: #6c7a91;
}

.popular-meta i {
    margin-right: 3px;
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: #11161f;
    border-radius: 1rem;
    border: 1px solid #222a36;
}

.no-posts h3 {
    margin: 1rem 0 0.5rem;
    color: #eef2ff;
}

.no-posts p {
    color: #8a99b0;
    margin-bottom: 1.5rem;
}

/* Blog Category Name in Header */
.blog-category-name {
    color: #F5B042;
    font-weight: 500;
}

/* Read Time Badge */
.post-read-time {
    font-size: 0.75rem;
    color: #6c7a91;
}

.post-read-time i {
    margin-right: 4px;
}

/* Responsive for Category Header */
@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .category-icon {
        margin: 0 auto;
    }
    
    .category-title {
        font-size: 1.6rem;
    }
    
    .category-stats {
        justify-content: center;
    }
}