/* Pokemon Lazarus Marketing Site - Optimized for Ads & SEO */

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

:root {
    --primary-color: #FF0000;
    --secondary-color: #3B4CCA;
    --accent-color: #FFDE00;
    --text-color: #2C2C2C;
    --bg-color: #FFFFFF;
    --light-gray: #F5F5F5;
    --border-color: #DDDDDD;
    --success-color: #4CAF50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 16px;
    padding-top: 0;
}

/* Navigation */
.main-nav {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 0;
    display: flex;
    align-items: center;
}

.nav-logo:hover {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 20px 15px;
    display: block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: rgba(255,255,255,0.1);
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 20px;
    background-color: var(--light-gray);
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 0.9em;
}

.breadcrumbs a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: var(--text-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Ad Containers */
.ad-container {
    margin: 20px 0;
    text-align: center;
    background-color: var(--light-gray);
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.ad-container::before {
    content: 'Advertisement';
    display: block;
    font-size: 10px;
    color: #999;
    margin-bottom: 5px;
    text-transform: uppercase;
}

/* Top Banner Ad */
.ad-top-banner {
    margin: 0 0 30px 0;
    border-radius: 0;
    min-height: 90px;
}

/* Bottom Banner Ad */
.ad-bottom-banner {
    margin: 30px 0 0 0;
    border-radius: 0;
    min-height: 90px;
}

/* In-Content Ads */
.ad-in-content {
    margin: 30px auto;
    max-width: 800px;
}

/* Sticky Side Ads (Desktop Only) */
.ad-sticky-left,
.ad-sticky-right {
    position: fixed;
    top: 100px;
    width: 160px;
    z-index: 100;
}

.ad-sticky-left {
    left: 10px;
}

.ad-sticky-right {
    right: 10px;
}

/* Hide sticky ads on mobile/tablet */
@media (max-width: 1400px) {
    .ad-sticky-left,
    .ad-sticky-right {
        display: none;
    }
}

/* Floating Action Button Ad */
.ad-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-radius: 8px;
    display: none;
}

.ad-fab.show {
    display: block;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ad-fab-content {
    position: relative;
    padding: 15px;
}

.ad-fab-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 1001;
}

.ad-fab-close:hover {
    color: #000;
}

@media (max-width: 768px) {
    .ad-fab {
        right: 10px;
        bottom: 10px;
    }
}

/* Header Styles */
header {
    text-align: center;
    padding: 40px 20px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 0 0 20px 20px;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.tagline {
    font-size: 1.2em;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }
    .tagline {
        font-size: 1em;
    }
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 30px;
}

.cta-buttons {
    margin: 30px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255,0,0,0.3);
}

.btn-primary:hover {
    background-color: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,0,0,0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(59,76,202,0.3);
}

.btn-secondary:hover {
    background-color: #2D3A9F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59,76,202,0.4);
}

.btn-large {
    font-size: 1.2em;
    padding: 18px 40px;
}

.btn-download {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6600 100%);
    font-size: 1.1em;
    padding: 20px 40px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn-huge {
    font-size: 1.3em;
    padding: 25px 50px;
}

.btn-massive {
    font-size: 1.4em;
    padding: 30px 60px;
}

@media (max-width: 768px) {
    .btn-large, .btn-download, .btn-huge, .btn-massive {
        font-size: 1em;
        padding: 15px 25px;
    }
}

.release-info {
    margin-top: 20px;
    font-size: 1.1em;
    color: var(--success-color);
    font-weight: bold;
}

/* Section Styles */
section {
    margin: 40px 0;
    padding: 30px 20px;
}

section h2 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 10px;
}

section h3 {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin: 25px 0 15px;
}

section h4 {
    font-size: 1.2em;
    color: var(--text-color);
    margin: 20px 0 10px;
}

section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

section ul,
section ol {
    margin: 15px 0 15px 30px;
}

section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Intro Section */
.intro-section {
    background-color: white;
    border-left: 5px solid var(--primary-color);
    padding-left: 25px;
}

/* Features Section */
.features-section {
    background-color: var(--light-gray);
    border-radius: 10px;
}

.features-section ul {
    list-style: none;
    margin-left: 0;
}

.features-section li {
    padding-left: 30px;
    position: relative;
}

.features-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3em;
}

/* Platform Section */
.platform-section {
    background-color: white;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE6CC 100%);
    border-radius: 15px;
    text-align: center;
}

.download-cta,
.download-cta-final {
    margin: 30px 0;
}

.download-info {
    margin-top: 15px;
    font-size: 0.95em;
    color: #666;
}

.safety-info {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 5px solid var(--success-color);
}

/* FAQ Section */
.faq-section {
    background-color: white;
}

.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.faq-item h3 {
    margin: 0 0 10px 0;
    color: var(--secondary-color);
}

.faq-item p {
    margin: 0;
}

/* Why Download Section */
.why-download-section ol {
    counter-reset: item;
    list-style: none;
    margin-left: 0;
}

.why-download-section li {
    counter-increment: item;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
}

.why-download-section li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

/* Comparison Section */
.comparison-section {
    background-color: var(--light-gray);
    border-radius: 10px;
}

.comparison-section ul {
    list-style: none;
    margin-left: 0;
}

.comparison-section li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 12px;
}

/* Tips Section */
.tips-section {
    background-color: white;
}

/* Community Section */
.community-section {
    background-color: var(--light-gray);
    border-radius: 10px;
}

.community-section a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.community-section a:hover {
    text-decoration: underline;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 15px;
    text-align: center;
    padding: 50px 30px !important;
}

.final-cta-section h2 {
    color: white;
    border-bottom-color: var(--accent-color);
}

.final-pitch {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
}

.guarantee {
    margin-top: 25px;
    font-size: 1.1em;
    font-weight: bold;
    color: var(--accent-color);
}

/* Footer */
footer {
    background-color: #2C2C2C;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-keywords {
    font-size: 0.8em;
    color: #999;
    margin-top: 20px;
}

/* Strong/Bold Text */
strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Links */
a {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 20px 15px;
    }

    section h2 {
        font-size: 1.6em;
    }

    section h3 {
        font-size: 1.3em;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .ad-in-content {
        margin: 20px 0;
    }

    .why-download-section li {
        padding-left: 45px;
    }

    .why-download-section li::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
    }
}

/* Print Styles (hide ads when printing) */
@media print {
    .ad-container,
    .ad-sticky-left,
    .ad-sticky-right,
    .ad-fab {
        display: none !important;
    }
}

/* Accessibility */
.btn:focus,
a:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Loading Animation for Ads */
.adsbygoogle {
    min-height: 100px;
    display: block;
}

/* SEO-friendly image styles */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Hero Image */
.hero-image {
    margin: 0 0 30px 0;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* Gameplay Showcase */
.gameplay-showcase {
    margin: 30px 0;
    text-align: center;
}

.gameplay-showcase img {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    margin-bottom: 15px;
}

.image-caption {
    font-style: italic;
    color: #666;
    margin: 10px 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: var(--accent-color);
    color: var(--text-color);
}

::-moz-selection {
    background-color: var(--accent-color);
    color: var(--text-color);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
    animation: slideInUp 0.5s ease-out;
}

.cookie-consent.show {
    display: block;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
}

.cookie-consent-text p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95em;
}

.cookie-consent-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #fff;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 0.95em;
}

.cookie-consent-btn-accept {
    background-color: var(--success-color);
    color: white;
}

.cookie-consent-btn-accept:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.cookie-consent-btn-decline {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.cookie-consent-btn-decline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 15px;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent-btn {
        flex: 1;
        min-width: 120px;
    }
}
