/* Individual Blog Post Styles */

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.breadcrumb-link:hover {
    color: #FFD700;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-current {
    color: #FFD700;
    font-weight: 500;
}

/* Blog Post Main */
.blog-post-main {
    padding: 3rem 0;
    min-height: 70vh;
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

/* Post Header */
.post-header {
    padding: 3rem 3rem 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.05) 0%, 
        rgba(139, 69, 19, 0.05) 100%);
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.post-meta span {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.category-tag.reviews {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.post-excerpt {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.post-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.highlight-item i {
    color: #FFD700;
    font-size: 1.1rem;
}

/* Featured Image */
.post-image-container {
    padding: 0 3rem;
    margin-bottom: 2rem;
}

.post-featured-image {
    width: 100%;
    max-width: 400px;
    height: 200px;
    object-fit: contain;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    display: block;
    margin: 0 auto;
}

/* Post Content */
.post-content {
    padding: 0 3rem 3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.post-content h2 {
    color: #FFD700;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

.post-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.post-content h4 {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    font-weight: 600;
}

.post-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.post-content ul, .post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.8rem;
}

.post-content strong {
    color: #FFD700;
    font-weight: 600;
}

/* Info Boxes */
.info-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.info-box h3 {
    color: #3b82f6;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bonus-box {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 165, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.bonus-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.bonus-header h3 {
    color: #FFD700;
    margin: 0;
    font-size: 1.5rem;
}

.bonus-header i {
    color: #FFD700;
    font-size: 1.5rem;
}

.bonus-box ul {
    text-align: left;
    max-width: 400px;
    margin: 1.5rem auto;
}

.bonus-cta {
    margin-top: 2rem;
}

/* Info Grid Styles */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.info-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.info-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    align-self: flex-start;
}

.info-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item h4 i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.game-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.game-category:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

.game-category i {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.game-category h4 {
    color: #fff;
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.game-category p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.security-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.security-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.security-item h4 i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.security-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-features .security-item {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.security-features .security-item:hover {
    transform: translateY(-2px);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.1);
}

.security-features .security-item i {
    font-size: 2.5rem;
    color: #22c55e;
    margin-bottom: 1rem;
    display: block;
}

.security-features .security-item h4 {
    color: #22c55e;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-align: center;
    display: block;
}

.security-features .security-item h4 i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.security-features .security-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros, .cons {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
}

.pros {
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.cons {
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.pros h3 {
    color: #22c55e;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cons h3 {
    color: #ef4444;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Verdict Box */
.verdict-box {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(34, 197, 94, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.verdict-score {
    text-align: center;
    min-width: 120px;
}

.score {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    font-family: 'Orbitron', monospace;
}

.score-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.verdict-text h3 {
    color: #22c55e;
    margin-top: 0;
    margin-bottom: 1rem;
}

/* CTA Buttons */
.cta-button {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #000;
    text-decoration: none;
}

.cta-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 165, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.final-cta h3 {
    color: #FFD700;
    margin-top: 0;
    font-size: 1.8rem;
}

.final-cta p {
    margin-bottom: 2rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Related Posts */
.related-posts {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
}

.related-posts h3 {
    color: #FFD700;
    margin-bottom: 2rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    color: inherit;
    text-decoration: none;
}

.related-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
}

.related-card h4 {
    padding: 1rem;
    margin: 0;
    color: #fff;
    font-size: 1rem;
}

/* Step Guide Styles */
.step-guide {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #FFD700;
}

.step-number {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #FFD700;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.step-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Comparison Table Styles */
.comparison-table {
    margin: 2rem 0;
}

.table-container {
    overflow-x: auto;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.casino-table th,
.casino-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-table th {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.casino-table td {
    color: var(--text-color);
}

.casino-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Table Button Styles */
.table-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-color), #ff8c00);
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.table-btn:hover {
    background: linear-gradient(135deg, #ffed4e, var(--accent-color));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    color: #000;
    text-decoration: none;
}

.table-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .post-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .post-highlights {
        gap: 1rem;
    }
    
    .post-image-container {
        padding: 0 1.5rem;
    }
    
    .post-content {
        padding: 0 1.5rem 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .verdict-box {
        flex-direction: column;
        text-align: center;
    }
    
    .related-posts {
        padding: 2rem 1.5rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 1.8rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .final-cta {
        padding: 2rem 1rem;
    }
}
