/* === RETRO 2000s CASINO BLOG STYLE === */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background: linear-gradient(45deg, #1a1a2e, #16213e, #0f3460);
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
    border: 2px solid #00ffff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

/* Header */
.header {
    background: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00);
    padding: 20px;
    text-align: center;
    border-bottom: 5px solid #ffffff;
    position: relative;
    animation: colorShift 10s infinite;
}

@keyframes colorShift {
    0% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
    100% { filter: hue-rotate(360deg); }
}

.logo h1 {
    font-size: 2.5em;
    text-shadow: 
        0 0 10px #fff,
        0 0 20px #fff,
        0 0 30px #ff00ff,
        0 0 40px #ff00ff;
    color: #ffffff;
    margin-bottom: 10px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px #fff,
            0 0 20px #fff,
            0 0 30px #ff00ff,
            0 0 40px #ff00ff;
    }
    to {
        text-shadow: 
            0 0 20px #fff,
            0 0 30px #00ffff,
            0 0 40px #00ffff,
            0 0 50px #00ffff;
    }
}

.tagline {
    font-size: 1.2em;
    color: #000;
    font-weight: bold;
    text-shadow: 2px 2px 4px #fff;
}

/* Navigation */
.nav {
    margin-top: 15px;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.nav li {
    background: linear-gradient(45deg, #ff6600, #ff0066);
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 5px 0;
}

.nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    text-shadow: 0 0 10px #fff;
}

/* Retro Banner */
.retro-banner {
    background: linear-gradient(90deg, #ff0066, #6600ff, #00ff66, #ffff00);
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 3px solid #fff;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.banner-text h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px #000;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.banner-text p {
    font-size: 1.3em;
    color: #000;
    font-weight: bold;
    text-shadow: 2px 2px 4px #fff;
}

/* Main Content */
.main-content {
    padding: 40px 30px;
}

.welcome-section {
    text-align: center;
    margin-bottom: 50px;
}

.welcome-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.welcome-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #fff;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
    border: 3px solid #00ffff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
    z-index: -1;
    border-radius: 15px;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.4);
}

.feature-box h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #ffff00;
}

/* Articles Section */
.articles-section {
    margin: 60px 0;
}

.articles-section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #ff00ff;
    text-shadow: 0 0 15px #ff00ff;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.article-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.3));
    border: 2px solid #00ffff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.article-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 0, 255, 0.3);
    border-color: #ff00ff;
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #00ffff;
}

.article-content {
    padding: 20px;
}

.article-content h3 a {
    color: #00ffff;
    text-decoration: none;
    font-size: 1.3em;
    line-height: 1.4;
}

.article-content h3 a:hover {
    color: #ffff00;
    text-shadow: 0 0 10px #ffff00;
}

.article-meta {
    color: #ccc;
    font-size: 0.9em;
    margin: 10px 0;
}

.read-more {
    color: #ff00ff;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    border: 1px solid #ff00ff;
    border-radius: 5px;
    transition: all 0.3s;
}

.read-more:hover {
    background: #ff00ff;
    color: #000;
    transform: scale(1.1);
}

/* Newsletter Section */
.newsletter-section {
    margin: 50px 0;
    text-align: center;
}

.newsletter-box {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.3), rgba(0, 255, 255, 0.3));
    border: 3px solid #ffff00;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-box h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #ffff00;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px;
    border: 2px solid #00ffff;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1em;
}

.newsletter-form button {
    padding: 12px 25px;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    border: none;
    border-radius: 10px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.newsletter-form button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-top: 3px solid #00ffff;
    padding: 40px 30px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

/* Retro Effects */
.retro-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.glitch-overlay {
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.1) 2px,
            rgba(255, 255, 255, 0.1) 4px
        );
    animation: glitch 0.3s infinite;
}

@keyframes glitch {
    0% { transform: translateX(0); }
    10% { transform: translateX(-2px); }
    20% { transform: translateX(2px); }
    30% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    50% { transform: translateX(-2px); }
    60% { transform: translateX(2px); }
    70% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
    90% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        border-radius: 10px;
    }
    
    .header {
        padding: 15px;
    }
    
    .logo h1 {
        font-size: 2em;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav li {
        width: 80%;
        margin: 5px 0;
    }
    
    .banner-text h2 {
        font-size: 1.8em;
    }
    
    .main-content {
        padding: 20px 15px;
    }
    
    .welcome-section h2 {
        font-size: 2em;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5em;
    }
    
    .banner-text h2 {
        font-size: 1.5em;
    }
    
    .banner-text p {
        font-size: 1.1em;
    }
    
    .welcome-section h2 {
        font-size: 1.8em;
    }
    
    .articles-section h2 {
        font-size: 2em;
    }
    
    .feature-box,
    .article-card,
    .newsletter-box {
        margin: 10px;
    }
}

/* Article Page Styles */
.article-page {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 40px;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5em;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.9em;
    color: #ccc;
}

.featured-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #00ffff;
    margin: 20px auto;
    display: block;
}

.article-content {
    line-height: 1.8;
}

.lead {
    font-size: 1.2em;
    color: #ffff00;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
    border-radius: 10px;
    border: 2px solid #ffff00;
}

.table-of-contents {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #ff00ff;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
}

.table-of-contents h2 {
    color: #ff00ff;
    margin-bottom: 15px;
}

.table-of-contents ol {
    list-style: none;
    counter-reset: toc-counter;
}

.table-of-contents li {
    counter-increment: toc-counter;
    margin: 8px 0;
}

.table-of-contents li::before {
    content: counter(toc-counter) ". ";
    color: #00ffff;
    font-weight: bold;
}

.table-of-contents a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.table-of-contents a:hover {
    color: #ffff00;
    text-shadow: 0 0 5px #ffff00;
}

.article-content section {
    margin: 40px 0;
}

.article-content h2 {
    color: #00ffff;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ffff;
    border-bottom: 2px solid #00ffff;
    padding-bottom: 10px;
}

.article-content h3 {
    color: #ff00ff;
    font-size: 1.4em;
    margin: 25px 0 15px;
    text-shadow: 0 0 5px #ff00ff;
}

.article-content h4 {
    color: #ffff00;
    font-size: 1.2em;
    margin: 20px 0 10px;
}

.info-box, .strategy-tip, .bonus-tip, .example-box, .recommendation-box {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.3), rgba(0, 255, 255, 0.3));
    border: 2px solid #ffff00;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.info-box h3, .strategy-tip h4, .bonus-tip h4 {
    color: #ffff00;
    margin-bottom: 10px;
}

.volatility-guide, .features-grid, .bonus-types-grid, .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.volatility-item, .bonus-type, .stat-item {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #00ffff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.stat-number {
    font-size: 2.5em;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 10px #00ffff;
}

.stat-label {
    color: #fff;
    font-size: 0.9em;
    margin-top: 5px;
}

.games-grid, .related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.game-item, .related-item {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #ff00ff;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.game-item:hover, .related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 255, 0.3);
    border-color: #00ffff;
}

.final-tips, .red-flags {
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #ff0066;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.final-tips h3, .red-flags h3 {
    color: #ff0066;
}

.responsible-gambling, .responsible-mobile {
    background: rgba(0, 255, 0, 0.2);
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.responsible-gambling h3, .responsible-mobile h3 {
    color: #00ff00;
}

.expert-recommendation {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(255, 215, 0, 0.2));
    border: 2px solid #ffa500;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
}

.expert-recommendation h4 {
    color: #ffa500;
    margin-bottom: 12px;
    text-shadow: 0 0 5px #ffa500;
}

.expert-recommendation a {
    color: #ffff00;
    text-decoration: underline;
    font-weight: bold;
    transition: all 0.3s;
}

.expert-recommendation a:hover {
    color: #ffa500;
    text-shadow: 0 0 8px #ffa500;
    text-decoration: none;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.comparison-item {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #00ffff;
    border-radius: 10px;
    padding: 20px;
}

.pros-cons {
    margin-top: 10px;
}

.pros {
    color: #00ff00;
    margin-bottom: 10px;
}

.cons {
    color: #ff6600;
}

.casino-review {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.3));
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

.casino-scores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin: 15px 0;
}

.score-item {
    background: rgba(255, 0, 255, 0.3);
    padding: 8px;
    border-radius: 5px;
    text-align: center;
    font-size: 0.9em;
}

.rating {
    font-size: 1.2em;
    margin: 10px 0;
}

.special-features ul {
    margin-top: 10px;
}

.strategy-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ffff;
    border-radius: 10px;
    overflow: hidden;
}

.strategy-table th {
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    color: #000;
    padding: 12px;
    text-align: center;
    font-weight: bold;
}

.strategy-table td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #333;
    color: #fff;
}

.strategy-table tr:hover {
    background: rgba(0, 255, 255, 0.1);
}

.logo-link {
    color: inherit;
    text-decoration: none;
}

.logo-link:hover {
    color: inherit;
}

.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 3px solid #00ffff;
}

.related-articles h3 {
    color: #00ffff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em;
}

/* Mobile Article Styles */
@media (max-width: 768px) {
    .article-page {
        padding: 10px;
    }
    
    .article-header h1 {
        font-size: 2em;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .featured-image {
        height: 200px;
    }
    
    .table-of-contents {
        padding: 15px;
    }
    
    .volatility-guide, .features-grid, .bonus-types-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .casino-scores {
        grid-template-columns: 1fr;
    }
    
    .strategy-table {
        font-size: 0.8em;
    }
    
    .strategy-table th,
    .strategy-table td {
        padding: 6px;
    }
}

/* Print Styles */
@media print {
    .retro-effects,
    .glitch-overlay {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .header {
        background: #f0f0f0;
        color: #000;
    }
    
    .logo h1 {
        color: #000;
        text-shadow: none;
    }
    
    .article-header h1,
    .article-content h2,
    .article-content h3 {
        color: #000;
        text-shadow: none;
    }
    
    .info-box, .strategy-tip, .bonus-tip, .example-box {
        background: #f0f0f0;
        border: 1px solid #000;
    }
}