/* ============================================
   KARTENE.NET - Vintage Las Vegas Theme
   Las Vegas Strip Dealer Blog
   © 2024 Kartene.net
   ============================================ */

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --vegas-red: #8B0000;
    --vegas-gold: #FFD700;
    --vegas-black: #1a1a1a;
    --vegas-cream: #FFF8DC;
    --neon-red: #FF073A;
    --neon-gold: #FFAA00;
    --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 100%);
    background-attachment: fixed;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--vegas-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

a {
    color: var(--neon-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--vegas-gold);
    text-shadow: 0 0 10px var(--neon-gold);
}

/* === HEADER === */
header {
    background: linear-gradient(180deg, var(--vegas-red) 0%, #6B0000 100%);
    color: var(--vegas-gold);
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 3px solid var(--vegas-gold);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

header h1 {
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    from {
        text-shadow: 0 0 10px var(--neon-gold),
                     0 0 20px var(--neon-gold),
                     0 0 30px var(--neon-gold),
                     2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    to {
        text-shadow: 0 0 20px var(--neon-gold),
                     0 0 30px var(--neon-gold),
                     0 0 40px var(--neon-gold),
                     2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}

header h1 a {
    color: var(--vegas-gold);
    text-decoration: none;
}

.tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--vegas-cream);
    font-family: Georgia, serif;
}

/* === NAVIGATION === */
nav {
    background: var(--vegas-black);
    padding: 1rem;
    text-align: center;
    border-bottom: 2px solid var(--vegas-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

nav a {
    color: var(--vegas-gold);
    padding: 0.75rem 1.5rem;
    margin: 0 0.5rem;
    display: inline-block;
    font-weight: bold;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

nav a:hover {
    background: var(--vegas-red);
    border-color: var(--vegas-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

/* === MAIN CONTENT === */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* === HERO SECTION === */
.hero-section {
    background: linear-gradient(135deg, var(--vegas-red) 0%, #4a0000 100%);
    color: var(--vegas-cream);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: var(--card-shadow);
    border: 2px solid var(--vegas-gold);
}

.hero-section h2 {
    color: var(--vegas-gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    text-align: justify;
}

/* === CASINO COMPARISON SECTION === */
.casino-comparison {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: var(--card-shadow);
    border: 3px solid var(--vegas-gold);
}

.casino-comparison h2,
.casino-comparison h3 {
    color: var(--vegas-red);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.casino-card {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    border: 3px solid var(--vegas-gold);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    border-color: var(--neon-gold);
}

.casino-card h3 {
    color: var(--vegas-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.casino-card .bonus {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--vegas-red);
    margin: 1rem 0;
    padding: 1rem;
    background: var(--vegas-cream);
    border-radius: 8px;
    border: 2px solid var(--vegas-gold);
}

.casino-card .features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    padding: 0;
}

.casino-card .features li {
    padding: 0.5rem 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* === CTA BUTTON === */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--vegas-red) 0%, #6B0000 100%);
    color: var(--vegas-gold);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--vegas-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.4);
}

.cta-button:hover {
    background: linear-gradient(135deg, #a00 0%, var(--vegas-red) 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    color: #fff;
}

/* === TRUST SECTION === */
.trust-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: var(--card-shadow);
}

.trust-section h2 {
    color: var(--vegas-red);
    text-align: center;
    margin-bottom: 2rem;
}

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

.trust-card {
    background: var(--vegas-cream);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--vegas-gold);
    text-align: center;
}

.trust-card h3 {
    color: var(--vegas-red);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.trust-card p {
    color: #444;
    line-height: 1.6;
}

/* === LATEST ARTICLES SECTION === */
.latest-articles {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: var(--card-shadow);
}

.latest-articles h2 {
    color: var(--vegas-red);
    text-align: center;
    margin-bottom: 2rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.article-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--vegas-gold);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(139, 0, 0, 0.2);
}

.article-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.article-card h3 a {
    color: var(--vegas-red);
}

.article-card p {
    color: #555;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--vegas-red);
    font-weight: bold;
    display: inline-block;
    margin-top: 0.5rem;
}

.read-more:hover {
    color: var(--neon-red);
}

/* === NEWSLETTER SECTION === */
.newsletter-section {
    background: linear-gradient(135deg, var(--vegas-gold) 0%, #DAA520 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 3px solid var(--vegas-red);
}

.newsletter-section h2 {
    color: var(--vegas-red);
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: 2px solid var(--vegas-red);
    border-radius: 50px;
    font-size: 1rem;
}

.privacy-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #333;
}

/* === CONTACT SECTION === */
.contact-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: var(--card-shadow);
    border: 2px solid var(--vegas-gold);
}

.contact-section h2 {
    color: var(--vegas-red);
    text-align: center;
    margin-bottom: 1rem;
}

.contact-section > p {
    text-align: center;
    color: #555;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--vegas-gold);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    width: 100%;
}

/* === BLOG POST STYLES === */
.blog-post {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    border: 2px solid var(--vegas-gold);
}

.blog-post h2 {
    color: var(--vegas-red);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.post-meta {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--vegas-gold);
}

.post-content {
    color: #333;
    line-height: 1.8;
}

.post-content h3 {
    color: var(--vegas-red);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.post-content a {
    color: var(--vegas-red);
    font-weight: bold;
    border-bottom: 1px dotted var(--vegas-red);
}

.post-content a:hover {
    color: var(--neon-red);
    border-bottom-color: var(--neon-red);
}

/* === COMMENTS SECTION === */
.comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 3px solid var(--vegas-gold);
}

.comments-section h3 {
    color: var(--vegas-red);
    margin-bottom: 1.5rem;
}

.comment {
    background: var(--vegas-cream);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--vegas-gold);
}

.comment-author {
    color: var(--vegas-red);
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.comment-date {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.comment-text {
    color: #444;
    line-height: 1.6;
}

/* === FOOTER === */
footer {
    background: var(--vegas-black);
    color: var(--vegas-gold);
    padding: 2rem 1rem;
    text-align: center;
    border-top: 3px solid var(--vegas-gold);
    margin-top: 3rem;
}

footer p {
    margin: 0.5rem 0;
}

footer a {
    color: var(--vegas-gold);
    margin: 0 0.5rem;
}

footer a:hover {
    color: #fff;
}

.footer-links {
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 1rem;
    font-style: italic;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    nav a {
        display: block;
        margin: 0.5rem 0;
    }

    .casino-grid,
    .trust-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"] {
        min-width: 100%;
    }

    .blog-post {
        padding: 1.5rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* === ANIMATIONS === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card,
.article-card,
.trust-card {
    animation: fadeIn 0.6s ease-out;
}

/* === PRINT STYLES === */
@media print {
    body {
        background: white;
        color: black;
    }

    header, nav, footer, .newsletter-section, .contact-section {
        display: none;
    }

    .blog-post {
        box-shadow: none;
        border: none;
    }
}
