/* Common Styles for OBS Mask Generator Tools */

/* SEO Guide Section */
.seo-guide {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 1.5rem;
    color: var(--text-secondary, #a0a0a0);
}

.seo-guide h2 {
    color: var(--text-primary, #ffffff);
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    text-align: center;
}

.seo-guide h3 {
    color: var(--text-primary, #ffffff);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.seo-guide p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.seo-guide ul,
.seo-guide ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.seo-guide li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.seo-guide a {
    color: var(--accent-primary, #9146ff);
    text-decoration: none;
}

.seo-guide a:hover {
    text-decoration: underline;
}

.seo-guide strong {
    color: var(--text-primary, #ffffff);
}

.guide-highlight {
    background: var(--bg-secondary, #1a1a1a);
    border-left: 4px solid var(--accent-primary, #9146ff);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}

/* Footer Styles */
.footer {
    margin-top: 2rem;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-secondary, #1a1a1a);
    border: 1px solid var(--border-color, #333);
    border-radius: var(--border-radius, 12px);
    color: var(--text-secondary, #a0a0a0);
}

.footer a {
    color: var(--accent-primary, #9146ff);
    text-decoration: none;
}

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

/* Cookie Consent Banner */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--bg-secondary, #1a1a1a);
    border: 1px solid var(--accent-primary, #9146ff);
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    max-width: 800px;
    margin: 0 auto;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

#cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-primary, #fff);
    line-height: 1.5;
}

#cookie-banner a {
    color: var(--accent-primary, #9146ff);
    text-decoration: underline;
}

.cookie-buttons {
    flex-shrink: 0;
}

#cookie-accept {
    background: var(--accent-primary, #9146ff);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    white-space: nowrap;
}

#cookie-accept:hover {
    background: var(--accent-hover, #a970ff);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(145, 70, 255, 0.3);
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    #cookie-accept {
        width: 100%;
        padding: 12px;
    }
}