
/* Modern Casino Website CSS - Las Vegas Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1605184457758-56e76b5a45c9?auto=format&fit=crop&w=2000') center/cover fixed;
    color: #fff;
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    border-bottom: 3px solid #ffd700;
}

.site-title {
    text-align: center;
    font-size: 2.5em;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    font-weight: bold;
    margin-bottom: 10px;
}

.site-tagline {
    text-align: center;
    color: #ddd;
    font-size: 1.1em;
}

nav {
    margin-top: 20px;
    text-align: center;
}

nav a {
    color: #ffd700;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
}

nav a:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

/* Main Content */
main {
    padding: 40px 0;
    min-height: 500px;
}

.hero-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
    font-size: 3em;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-section p {
    font-size: 1.3em;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Casino Comparison Table */
.casino-comparison {
    background: rgba(26, 26, 46, 0.95);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid #ffd700;
}

.casino-comparison h2 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.comparison-table {
    overflow-x: auto;
}

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

thead {
    background: linear-gradient(135deg, #2c2c54 0%, #1a1a2e 100%);
}

th {
    padding: 15px;
    text-align: left;
    color: #ffd700;
    font-weight: bold;
    border-bottom: 2px solid #ffd700;
}

td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

tbody tr {
    background: rgba(22, 33, 62, 0.5);
    transition: all 0.3s ease;
}

tbody tr:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.02);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    font-size: 0.9em;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

/* Blog Post Styles */
.blog-post {
    background: rgba(26, 26, 46, 0.95);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-left: 4px solid #ffd700;
}

.blog-post h2, .blog-post h3 {
    color: #ffd700;
    margin: 25px 0 15px;
}

.blog-post h2 {
    font-size: 2.2em;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.blog-post h3 {
    font-size: 1.6em;
}

.post-meta {
    color: #999;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.blog-post p {
    margin: 15px 0;
    color: #ddd;
    line-height: 1.8;
}

.blog-post a {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 1px dotted #ffd700;
    transition: all 0.3s ease;
}

.blog-post a:hover {
    color: #ffed4e;
    border-bottom-style: solid;
}

/* Comments Section */
.comments-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.comments-section h3 {
    color: #ffd700;
    margin-bottom: 20px;
}

.comment {
    background: rgba(22, 33, 62, 0.5);
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    border-left: 3px solid #ffd700;
}

.comment-author {
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 5px;
}

.comment-date {
    font-size: 0.85em;
    color: #999;
    margin-bottom: 10px;
}

.comment-text {
    color: #ddd;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ddd;
    padding: 40px 20px 20px;
    margin-top: 60px;
    border-top: 3px solid #ffd700;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #ffd700;
    text-decoration: none;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffed4e;
}

.copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 0.9em;
    color: #999;
}

.warning {
    background: rgba(220, 53, 69, 0.2);
    border: 2px solid #dc3545;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.warning strong {
    color: #ff6b6b;
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.8em;
    }
    
    .hero-section h1 {
        font-size: 2em;
    }
    
    nav a {
        display: block;
        margin: 10px 0;
    }
    
    table {
        font-size: 0.9em;
    }
    
    th, td {
        padding: 10px;
    }
    
    .blog-post {
        padding: 20px;
    }
}
