
/* Safshop.net - Austrian Elegant Casino Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(rgba(139, 0, 0, 0.85), rgba(25, 25, 112, 0.85)), 
                url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?auto=format&fit=crop&w=2000') center/cover fixed;
    color: #f5f5f5;
    line-height: 1.8;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header - Austrian Red & White Theme */
header {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    padding: 30px 0;
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.4);
    border-bottom: 4px solid #FFD700;
}

.site-title {
    text-align: center;
    font-size: 3.2em;
    color: #FFD700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    font-weight: bold;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.site-tagline {
    text-align: center;
    color: #FFF;
    font-size: 1.3em;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

nav {
    margin-top: 25px;
    text-align: center;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    padding-top: 20px;
}

nav a {
    color: #FFD700;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1.05em;
}

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

/* Main Content */
main {
    padding: 50px 0;
    min-height: 600px;
}

.hero-section {
    text-align: center;
    padding: 70px 30px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.95) 0%, rgba(25, 25, 112, 0.95) 100%);
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.6);
    border: 3px solid #FFD700;
}

.hero-section h1 {
    font-size: 3.8em;
    color: #FFD700;
    margin-bottom: 25px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
    font-weight: bold;
}

.hero-section p {
    font-size: 1.4em;
    color: #f0f0f0;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Casino Comparison Table */
.casino-comparison {
    background: rgba(139, 0, 0, 0.92);
    padding: 50px;
    border-radius: 20px;
    margin: 50px 0;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.6);
    border: 3px solid #FFD700;
}

.casino-comparison h2 {
    color: #FFD700;
    text-align: center;
    margin-bottom: 35px;
    font-size: 2.8em;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

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

thead {
    background: linear-gradient(135deg, #660000 0%, #8B0000 100%);
}

th {
    padding: 18px;
    text-align: left;
    color: #FFD700;
    font-weight: bold;
    border-bottom: 3px solid #FFD700;
    font-size: 1.1em;
}

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

tbody tr {
    background: rgba(25, 25, 112, 0.4);
    transition: all 0.3s ease;
}

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

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    font-size: 0.95em;
}

.cta-button:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

/* Blog Post Styles */
.blog-post {
    background: rgba(139, 0, 0, 0.92);
    padding: 50px;
    border-radius: 20px;
    margin: 50px 0;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.6);
    border-left: 6px solid #FFD700;
}

.blog-post h2 {
    color: #FFD700;
    font-size: 2.6em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.blog-post h3 {
    color: #FFA500;
    font-size: 1.9em;
    margin: 30px 0 18px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.post-meta {
    color: #ccc;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    font-style: italic;
}

.blog-post p {
    margin: 18px 0;
    color: #f0f0f0;
    line-height: 1.9;
    font-size: 1.08em;
}

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

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

/* Comments */
.comments-section {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 3px solid rgba(255, 215, 0, 0.3);
}

.comments-section h3 {
    color: #FFD700;
    margin-bottom: 25px;
}

.comment {
    background: rgba(25, 25, 112, 0.5);
    padding: 25px;
    margin: 18px 0;
    border-radius: 12px;
    border-left: 4px solid #FFD700;
}

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

.comment-date {
    font-size: 0.88em;
    color: #aaa;
    margin-bottom: 12px;
}

.comment-text {
    color: #f0f0f0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #8B0000 0%, #660000 100%);
    color: #f0f0f0;
    padding: 50px 25px 25px;
    margin-top: 70px;
    border-top: 4px solid #FFD700;
}

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

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

.footer-links a {
    color: #FFD700;
    text-decoration: none;
    margin: 0 20px;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

.copyright {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    font-size: 0.95em;
    color: #ccc;
}

.warning {
    background: rgba(220, 20, 60, 0.3);
    border: 3px solid #DC143C;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.warning strong {
    color: #FFD700;
    font-size: 1.2em;
}

/* Responsive */
@media (max-width: 768px) {
    .site-title {
        font-size: 2.2em;
    }
    
    .hero-section h1 {
        font-size: 2.4em;
    }
    
    nav a {
        display: block;
        margin: 12px 0;
    }
    
    .blog-post {
        padding: 30px;
    }
    
    table {
        font-size: 0.9em;
    }
}
