/* Casino Theme Styles */

:root {
    --primary-color: #4b86d2;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --background-light: #f9fafb;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
    --border-radius: 12px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



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








/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}









/* Print Styles */
@media print {
    .single-post-sidebar,
    .social-share,
    .related-posts,
    .comments-section {
        display: none !important;
    }
    
    .single-post-layout {
        grid-template-columns: 1fr !important;
    }
    
    .post-content {
        padding: 0 !important;
    }
    
    .single-post {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}


/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .article-card,
    .single-post,
    .widget {
        border: 2px solid var(--text-primary);
    }
    
    .category-badge,
    .tag-link,
    .read-more-btn {
        border: 1px solid currentColor;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .article-card:hover,
    .share-btn:hover,
    .read-more-btn:hover {
        transform: none !important;
    }
}