/* ===================================================
   RouletteUnblocked.com — Website and Game Styles
   =================================================== */

/* --- Wrapper --- */
.lp-roulette-wrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}

/* --- Site Navigation (inside wrapper) --- */
.lp-site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    margin-bottom: 24px;
    border-bottom: 2px solid #f1c40f;
}

.lp-nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a472a;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1;
}

.lp-nav-logo:hover {
    color: #0d2616;
}

.lp-nav-logo-img {
    width: 32px;
    height: 32px;
    display: block;
    flex-shrink: 0;
    border-radius: 4px;
}

.lp-nav-logo-text {
    display: inline-block;
    line-height: 1;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lp-nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.lp-nav-link:hover,
.lp-nav-link.lp-nav-active {
    color: #1a472a;
    font-weight: 600;
}

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-boss-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    background-color: #1a472a;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
}

.lp-boss-button:hover {
    background-color: #0d2616;
}

.lp-boss-button svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.lp-boss-label {
    display: inline;
}

.lp-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #1a472a;
    padding: 6px;
    cursor: pointer;
}

.lp-mobile-toggle svg {
    width: 22px;
    height: 22px;
}

.lp-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 0 0 16px 0;
    margin-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.lp-mobile-menu.lp-menu-open {
    display: flex;
}

.lp-mobile-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    padding: 6px 0;
}

.lp-mobile-menu a:hover {
    color: #1a472a;
}

/* --- Footer Links (inside wrapper) --- */
.lp-site-footer-links {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 2px solid #f1c40f;
    text-align: center;
}

.lp-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}

.lp-footer-nav a {
    font-size: 0.85rem;
    color: #777;
    text-decoration: none;
    transition: color 0.2s;
}

.lp-footer-nav a:hover {
    color: #1a472a;
}

.lp-footer-copy {
    font-size: 0.85rem;
    color: #999;
}

/* --- Hero Section --- */
.lp-hero-section {
    background: linear-gradient(135deg, #1a472a 0%, #0d2616 100%);
    color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
}

.lp-hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #f1c40f;
}

.lp-hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* --- Game Embed (inside the wrapper) --- */
.lp-game-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.lp-game-embed-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://rouletteunblocked.com/img/roulette_unblocked_simulator.jpg');
    background-size: cover;
    background-position: center;
    background-color: #0d2616;
}

.lp-game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-game-buttons {
    display: flex;
    gap: 16px;
    padding: 0 16px;
}

.lp-play-button,
.lp-fullscreen-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lp-play-button {
    background-color: #1a472a;
}

.lp-play-button:hover {
    background-color: #0d2616;
    transform: scale(1.05);
}

.lp-fullscreen-button {
    background-color: #555;
}

.lp-fullscreen-button:hover {
    background-color: #333;
    transform: scale(1.05);
}

.lp-play-button svg,
.lp-fullscreen-button svg {
    width: 24px;
    height: 24px;
}

.lp-game-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* --- Content Sections --- */
.lp-content-section {
    margin-bottom: 50px;
}

.lp-content-section h2 {
    font-size: 2.2rem;
    color: #1a472a;
    border-bottom: 3px solid #f1c40f;
    padding-bottom: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.lp-content-section h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-top: 30px;
}

.lp-content-section p {
    color: #4b5563;
    margin-bottom: 16px;
}

.lp-content-section ul,
.lp-content-section ol {
    padding-left: 24px;
    margin-bottom: 24px;
    color: #4b5563;
}

.lp-content-section li {
    margin-bottom: 8px;
}

.lp-content-section hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 40px 0;
}

.lp-content-section code {
    background-color: #f3f4f6;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

.lp-content-section a {
    color: #1a472a;
    font-weight: 600;
    text-decoration: underline;
}

.lp-content-section a:hover {
    color: #0d2616;
}

/* --- Data Table --- */
.lp-data-table-container {
    overflow-x: auto;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.lp-chart-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: white;
}

.lp-chart-table th {
    background-color: #1a472a;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.lp-chart-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
}

.lp-chart-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.lp-chart-table tr:hover {
    background-color: #f1f8e9;
}

/* --- Highlight Box --- */
.lp-highlight-box {
    background-color: #fcf8e3;
    border-left: 5px solid #f1c40f;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

/* --- Pro Tip (dark blockquote) --- */
.lp-pro-tip {
    background-color: #1e293b;
    border-left: 5px solid #f1c40f;
    padding: 24px;
    margin: 32px 0;
    border-radius: 8px;
}

.lp-pro-tip-title {
    font-weight: 700;
    color: #f1c40f;
    margin-bottom: 8px;
    font-size: 1rem;
}

.lp-pro-tip p {
    color: #e2e8f0 !important;
    margin-bottom: 0;
}

/* --- Comparison Grid --- */
.lp-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.lp-comparison-card {
    background: #f4f7f6;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.lp-comparison-card h4 {
    margin-top: 0;
    color: #1a472a;
    font-size: 1.3rem;
}

.lp-comparison-card ul {
    padding-left: 20px;
}

/* --- Author Card --- */
.lp-author-card {
    background: #f4f7f6;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
    margin: 30px 0;
}

.lp-author-card-top {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.lp-author-photo {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.lp-author-info h3 {
    margin: 0 0 12px 0;
    font-size: 1.5rem;
    color: #1a472a;
}

.lp-author-info p {
    color: #4b5563;
    margin-bottom: 12px;
}

.lp-author-link {
    display: inline-block;
    color: #1a472a;
    font-weight: 600;
    text-decoration: none;
}

.lp-author-link:hover {
    color: #0d2616;
    text-decoration: underline;
}

.lp-author-meta {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.lp-author-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #4b5563;
}

.lp-author-meta-item svg {
    width: 16px;
    height: 16px;
    color: #1a472a;
    flex-shrink: 0;
}

/* --- FAQ Section --- */
.lp-faq-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
}

.lp-faq-section h2 {
    font-size: 2.2rem;
    color: #1a472a;
    border-bottom: 3px solid #f1c40f;
    padding-bottom: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.lp-faq-item {
    margin-bottom: 4px;
}

.lp-faq-toggle {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 1rem;
    font-family: inherit;
}

.lp-faq-toggle:hover {
    background-color: #f4f7f6;
}

.lp-faq-toggle-label {
    font-weight: 700;
    color: #1a472a;
}

.lp-faq-toggle-icon {
    font-size: 1.5rem;
    line-height: 1;
    color: #999;
    flex-shrink: 0;
}

.lp-faq-answer {
    padding: 16px 20px 8px;
    color: #4b5563;
    display: none;
}

.lp-faq-answer.lp-faq-open {
    display: block;
}

/* --- CTA Block --- */
.lp-cta-block {
    background: linear-gradient(135deg, #f1c40f 0%, #d4ac0d 100%);
    padding: 50px;
    text-align: center;
    border-radius: 12px;
    margin-top: 60px;
}

.lp-cta-block h2 {
    color: #1a472a;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.lp-cta-button {
    display: inline-block;
    background-color: #1a472a;
    color: white !important;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.lp-cta-button:hover {
    background-color: #0d2616;
    transform: translateY(-2px);
}

/* --- Badges --- */
.lp-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.lp-badge-green { background: #e8f5e9; color: #2e7d32; }
.lp-badge-red { background: #ffebee; color: #c62828; }
.lp-badge-blue { background: #e3f2fd; color: #1565c0; }
.lp-hero-badge { background: #f1c40f; color: #1a472a; }

/* --- Utility --- */
.lp-section-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

.lp-cta-subtitle {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #1a472a;
    opacity: 0.8;
}

.lp-text-italic {
    font-style: italic;
}

/* --- Boss Mode Overlay --- */
#boss-mode-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #ffffff;
    color: #111827;
    overflow: auto;
    padding: 24px;
    font-family: Arial, Helvetica, sans-serif;
    display: none;
}

#boss-mode-overlay.lp-boss-active {
    display: block;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .lp-hero-section {
        padding: 40px 20px;
    }

    .lp-hero-section h1 {
        font-size: 2rem;
    }

    .lp-roulette-wrapper {
        padding: 15px;
    }

    .lp-comparison-grid {
        grid-template-columns: 1fr;
    }

    .lp-cta-block {
        padding: 30px 20px;
    }

    .lp-game-buttons {
        flex-direction: column;
    }

    .lp-author-card-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lp-author-photo {
        width: 100px;
        height: 100px;
    }

    .lp-faq-section {
        padding: 24px 16px;
    }

    .lp-nav-links {
        display: none;
    }

    .lp-mobile-toggle {
        display: block;
    }

    .lp-boss-label {
        display: none;
    }
}
