/* pages.css - Styles for content pages */

/* Content sections */
.content-section {
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-gold);
    text-shadow: 0 0 20px var(--accent-gold);
}

.subsection-title {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--accent-blue);
}

/* Fantasy text styling */
.fantasy-text {
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.fantasy-text.centered {
    text-align: center;
}

/* Lists */
.feature-list,
.contact-list,
.terms-list,
.oath-list,
.privacy-list,
.guide-list,
.faq-list,
.upcoming-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
}

.feature-list li,
.contact-list li,
.terms-list li,
.oath-list li,
.privacy-list li,
.guide-list li,
.faq-list li,
.upcoming-features li {
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.feature-list li:last-child,
.contact-list li:last-child,
.terms-list li:last-child,
.oath-list li:last-child,
.privacy-list li:last-child,
.guide-list li:last-child,
.faq-list li:last-child,
.upcoming-features li:last-child {
    border-bottom: none;
}

/* Contact page specific */
.contact-info {
    text-align: center;
    margin: 2rem 0;
}

.contact-link {
    font-size: 1.3rem;
    color: var(--accent-blue);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid var(--accent-blue);
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--accent-blue);
    color: var(--bg-primary);
    box-shadow: 0 0 20px var(--accent-blue);
}

.contact-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.org-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.org-link:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.org-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.org-name {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.org-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.response-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--accent-gold);
}

/* Terms page specific */
.seal-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 12px;
}

/* Privacy page specific */
.privacy-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
}

/* Blog page specific */
.blog-post {
    margin-bottom: 2rem;
    padding: 2rem;
}

.post-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.post-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-style: italic;
}

.blog-subscribe {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
}

.blog-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Call to action */
.call-to-action {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
}

.call-to-action .fantasy-text {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

/* Back button styling */
.main-header .back-button {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.main-header .back-button:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px var(--accent-blue);
}

/* Links page specific */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.resource-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.resource-link:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px currentColor);
}

.link-name {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.link-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.advertise-section {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 212, 255, 0.05));
    border: 2px solid var(--accent-gold);
}

.advertise-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.advertise-list li {
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
}

.disclaimer-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

/* Guide page dice images */
.guide-list img {
    max-width: 80px;
    height: auto;
    margin-top: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    transition: transform 0.3s ease;
}

.guide-list img:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Dice descriptions */
.dice-descriptions li {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 0;
}

.dice-descriptions .dice-info {
    margin: 0;
    line-height: 1.6;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-left: 0;
}

.dice-descriptions img {
    align-self: flex-start;
    margin: 0.5rem 0;
}

/* Mobile adjustments */

/* Small mobile screens */

/* Touch-friendly adjustments for pages */
