/* style/tintc.css */
/* Variables from custom palette */
:root {
    --page-tintc-bg-primary: #08160F;
    --page-tintc-card-bg: #11271B;
    --page-tintc-text-main: #F2FFF6;
    --page-tintc-text-secondary: #A7D9B8;
    --page-tintc-border-color: #2E7A4E;
    --page-tintc-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-tintc-glow: #57E38D;
    --page-tintc-gold: #F2C14E;
    --page-tintc-divider: #1E3A2A;
    --page-tintc-deep-green: #0A4B2C;
}

/* Base styles for the page content, ensuring contrast with body background */
.page-tintc {
    background-color: var(--page-tintc-bg-primary);
    color: var(--page-tintc-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 60px;
}

/* Hero Section */
.page-tintc__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 60px;
    background-color: var(--page-tintc-bg-primary);
    overflow: hidden;
}

.page-tintc__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.page-tintc__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 300px;
}

.page-tintc__hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
    margin-top: 40px;
}

.page-tintc__main-title {
    color: var(--page-tintc-text-main);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-tintc__intro-description {
    color: var(--page-tintc-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-tintc__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-tintc__btn-primary,
.page-tintc__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    text-align: center;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-tintc__btn-primary {
    background: var(--page-tintc-btn-gradient);
    color: var(--page-tintc-text-main);
    border: none;
}

.page-tintc__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-tintc__btn-secondary {
    background: transparent;
    color: var(--page-tintc-text-main);
    border: 2px solid var(--page-tintc-deep-green);
}

.page-tintc__btn-secondary:hover {
    background: var(--page-tintc-deep-green);
    color: var(--page-tintc-text-main);
    transform: translateY(-2px);
}

/* General Section Styles */
.page-tintc__latest-news-section,
.page-tintc__categories-section,
.page-tintc__promotions-news-section,
.page-tintc__app-updates-section,
.page-tintc__responsible-gaming-section,
.page-tintc__faq-section,
.page-tintc__cta-bottom-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.page-tintc__section-title {
    color: var(--page-tintc-text-main);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}