/* Additional styles for content pages */

.page-content {
    padding-top: 80px;
    min-height: 100vh;
}

.page-header {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(168, 85, 247, 0.1));
    padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 6vw, 3rem);
    margin-bottom: clamp(2rem, 6vw, 4rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.125rem);
    color: var(--text-muted);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: clamp(3rem, 8vw, 5rem);
}

.content-section {
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.gameplay-showcase {
    margin: 2rem 0;
    text-align: center;
}

.showcase-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.showcase-image:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 30px 80px rgba(56, 189, 248, 0.2);
}

.features-banner {
    margin-bottom: 3rem;
    text-align: center;
}

.content-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.content-section h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--accent-cyan);
}

.content-section p {
    font-size: clamp(0.95rem, 2vw, 1.0625rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.content-section ul,
.content-section ol {
    margin: 1rem 0 1rem 1.5rem;
    line-height: 1.8;
}

.content-section li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: clamp(0.95rem, 2vw, 1.0625rem);
}

.content-section li strong {
    color: var(--text-primary);
}

.content-section a {
    color: var(--accent-cyan);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.content-section a:hover {
    border-bottom-color: var(--accent-cyan);
}

.contact-info-box {
    background: var(--surface-3);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(56, 189, 248, 0.2);
    margin-top: 1rem;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
}

.admob-id-box {
    background: var(--surface-3);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.2);
    margin: 1rem 0;
    text-align: center;
}

.admob-id-box code {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--accent-purple);
    word-break: break-all;
}

.note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Contact Form Styles */
.contact-form {
    background: var(--surface-3);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--surface-4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.4);
}

.form-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* FAQ Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--surface-3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(56, 189, 248, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    user-select: none;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-cyan);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* How to Play Styles */
.steps-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.step-card {
    background: var(--surface-3);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.step-content p {
    margin-bottom: 0;
}

/* Features Page Styles */
.feature-detail-card {
    background: var(--surface-3);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.feature-detail-card h3 {
    color: var(--text-primary);
    margin-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .step-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }
}