/* Page Template Styles for CultureBets */

/* Page-specific styles to match homepage grid background */
body.page {
    background: #ffffff;
    background-image: 
      linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    background-attachment: fixed;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    /* Allow scrolling on pages (override homepage overflow: hidden) */
    overflow: auto !important;
    height: auto !important;
}

.page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.95);
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 30px;
}

.page-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #000000;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
}

.page-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #333333;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: #000000;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.page-content h2 {
    font-size: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.page-content h3 {
    font-size: 1.25rem;
}

.page-content p {
    margin: 0 0 20px 0;
}

.page-content ul,
.page-content ol {
    margin: 0 0 20px 20px;
}

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

.page-content a {
    color: #ff6b35;
    text-decoration: none;
}

.page-content a:hover {
    color: #00d4ff;
    text-decoration: underline;
}

.page-content strong {
    font-weight: 600;
}

.page-navigation {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.back-to-home {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    box-shadow: none;
    text-decoration: none;
}

.back-to-home:hover {
    background: #333333;
    transform: translateY(-1px);
    color: #ffffff;
    text-decoration: none;
}

.back-to-home:active {
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .page-container {
        padding: 40px 15px;
    }
    
    .page-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .page-content {
        font-size: 0.95rem;
    }
}