/* Color Scheme Variables */
:root {
    --global-palette1: #22275b;
    --global-palette2: #2B6CB0;
    --global-palette3: #1A202C;
    --global-palette4: #2D3748;
    --global-palette5: #4A5568;
    --global-palette6: #718096;
    --global-palette7: #EDF2F7;
    --global-palette8: #F7FAFC;
    --global-palette9: #ffffff;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--global-palette4);
    background-color: var(--global-palette9);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles - Dark Blue Background */
.header {
    background-color: #22275b;
    padding: 12px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    line-height: 1.4;
    vertical-align: middle;
}

.login-link {
    color: #2196F3;
    background-color: transparent;
    padding: 6px 20px;
    border-radius: 32px;
    border: 1px solid #61a9ff;
    font-weight: 500;
    font-size: 16px;
}

.login-link:hover {
    background-color: rgba(33, 150, 243, 0.1);
}

.register-btn {
    color: var(--global-palette9);
    background-color: #2196F3;
    padding: 6px 20px;
    border-radius: 32px;
    font-weight: 600;
    font-size: 16px;
}

.register-btn:hover {
    background-color: #1976D2;
    opacity: 0.95;
}

/* Hero Section - Dark Blue Background */
.hero {
    background-image: url('assets/hero background.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 90px 0 50px;
    text-align: center;
    color: var(--global-palette9);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(178deg, rgb(13, 19, 77) 29%, rgb(0, 0, 0) 100%);
    opacity: 0.75;
    z-index: 1;
}

.hero-background-image {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 170px;
    /* opacity: 0.4; */
    z-index: 1;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 80px;
}

.hero-welcome-text {
    margin-top: 12px;
}

.hero-icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.hero-icon-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-icon-text {
    color: var(--global-palette9);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 38px;
    font-weight: 700;
    margin-top: 180px;
    margin-bottom: 10px; 
    color: var(--global-palette9);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.hero-banner {
    background-color: transparent;
    color: #f4ff2b;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    margin-top: 0;
    margin-bottom: 15px;
    box-shadow: none;
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 80px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 15px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    font-size: 18px;
    display: inline-block;
    line-height: 1;
}

.btn-register {
    background-color: var(--global-palette1);
    color: var(--global-palette9);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-register:hover {
    background-color: var(--global-palette2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.btn-download-app {
    background-color: #4CAF50;
    color: var(--global-palette9);
}

.btn-download-app:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.5);
}

.btn-predictions {
    background-color: #03A9F4;
    color: var(--global-palette9);
}

.btn-predictions:hover {
    background-color: #0288D1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 169, 244, 0.5);
}

/* Section Styles */
section {
    padding: 60px 0;
    background-color: var(--global-palette9);
}

section:nth-child(even) {
    background-color: var(--global-palette8);
}

/* Section Titles - Dark Blue Background with White Text */
.section-title {
    font-size: 32px;
    color: var(--global-palette9);
    background-color: var(--global-palette1);
    padding: 20px 30px;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 600;
    border-radius: 0;
}

/* Contents Box */
.contents-box {
    background-color: var(--global-palette7);
    padding: 12px 20px;
    margin-bottom: 25px;
    border: 1px solid var(--global-palette6);
    border-radius: 4px;
    display: inline-block;
}

.contents-text {
    font-size: 15px;
    color: var(--global-palette4);
    font-weight: 500;
    margin-right: 8px;
}

.contents-toggle {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.contents-toggle:hover {
    color: var(--global-palette4);
}

.contents-list {
    margin: 20px 0 30px 0;
    padding: 20px;
    background-color: var(--global-palette9);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.toc-main {
    margin: 0;
    padding-left: 30px;
    list-style-type: decimal;
    color: #333;
    font-size: 14px;
    line-height: 1.8;
}

.toc-main > li {
    margin-bottom: 8px;
}

.toc-main > li > a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.toc-main > li > a:hover {
    color: #2196F3;
    text-decoration: underline;
}

.toc-main ol {
    margin-top: 5px;
    margin-bottom: 10px;
    padding-left: 25px;
    list-style-type: decimal;
}

.toc-main ol li {
    margin-bottom: 4px;
}

.toc-main ol li a {
    color: #555;
    text-decoration: none;
}

.toc-main ol li a:hover {
    color: #2196F3;
    text-decoration: underline;
}

.content-text a {
    color: #2196F3;
    text-decoration: none;
}

.content-text a:hover {
    color: #1976D2;
    text-decoration: underline;
}

.content-text a strong {
    font-weight: 700;
}

/* Responsible Gaming Page */
.responsible-gaming-page {
    background-color: var(--global-palette9);
    padding: 40px 0 60px;
    min-height: calc(100vh - 200px);
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--global-palette4);
    text-align: center;
    margin-bottom: 15px;
    padding: 0;
    background: none;
    box-shadow: none;
}

.policy-link {
    text-align: center;
    margin-bottom: 30px;
}

.policy-link-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--global-palette9);
    background: #22275b;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s;
}

.policy-link-text:hover {
    opacity: 0.9;
    text-decoration: none;
}

.intro-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--global-palette4);
    margin: 20px 0 40px;
    max-width: 900px;
    text-align: left;
}

.responsible-gaming-image-container {
    text-align: center;
    margin: 40px 0;
    width: 90%;
    margin-left: 4%;
}

.responsible-gaming-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.responsible-section {
    margin: 40px 0;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

.responsible-section .content-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--global-palette4);
    margin-bottom: 15px;
}

.section-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--global-palette9);
    background: #22275b;
    padding: 15px 20px;
    margin: -30px -30px 20px -30px;
    border-radius: 8px 8px 0 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.section-intro {
    font-size: 16px;
    color: var(--global-palette4);
    margin-bottom: 15px;
    font-weight: 500;
}

.section-list {
    list-style-type: disc;
    padding-left: 30px;
    margin: 15px 0;
}

.section-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--global-palette4);
    margin-bottom: 8px;
}

.section-list li strong {
    font-weight: 700;
    color: var(--global-palette4);
}

.section-list li a {
    color: #2196F3;
    text-decoration: none;
}

.section-list li a:hover {
    text-decoration: underline;
}

.statement-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--global-palette4);
    margin: 40px 0;
    text-align: center;
    font-style: italic;
}

.rating-section {
    text-align: center;
    margin: 30px 0 20px;
    padding: 0;
}

.stars {
    font-size: 24px;
    color: #FFC107;
    margin-bottom: 8px;
    letter-spacing: 3px;
    line-height: 1;
}

.star {
    display: inline-block;
}

.star.filled {
    color: #FFC107;
}

.star.half-filled {
    color: #FFC107;
    opacity: 0.4;
}

.star.empty {
    color: #ddd;
}

.rating-text {
    font-size: 14px;
    color: var(--global-palette4);
    margin-top: 5px;
}

/* About Us page specific rating styling */
.about-us-page .rating-section {
    margin: 20px 0 10px;
}

.about-us-page .stars {
    font-size: 20px;
    letter-spacing: 2px;
}

.about-us-page .rating-text {
    font-size: 13px;
    margin-top: 3px;
}

/* About Us Page */
.about-us-page {
    background-color: var(--global-palette9);
    padding: 40px 0 60px;
    min-height: calc(100vh - 200px);
}

.about-content-section {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin: 40px 0;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

.about-section .section-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--global-palette9);
    background: #22275b;
    padding: 15px 20px;
    margin: -30px -30px 20px -30px;
    border-radius: 8px 8px 0 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.about-section .content-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--global-palette4);
    margin-bottom: 15px;
}

.about-section .content-list {
    margin: 15px 0;
}

.closing-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--global-palette4);
    margin-top: 30px;
    text-align: center;
    font-weight: 500;
}

.contact-link {
    color: var(--global-palette1);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--global-palette2);
    text-decoration: underline;
}

/* Disclaimer Page */
.disclaimer-page {
    background-color: var(--global-palette9);
    padding: 40px 0 60px;
    min-height: calc(100vh - 200px);
}

.contact-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--global-palette4);
    margin: 20px 0 40px;
    text-align: left;
    max-width: 900px;
}

.contact-text strong {
    font-weight: 700;
    color: var(--global-palette1);
}

.disclaimer-section {
    margin: 40px 0;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

.disclaimer-content {
    margin-top: 20px;
}

.disclaimer-content .content-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--global-palette4);
    margin-bottom: 20px;
    text-align: left;
}

.content-link {
    color: #2196F3;
    text-decoration: none;
}

.content-link:hover {
    text-decoration: underline;
}

/* Disclaimer page specific rating styling */
.disclaimer-page .rating-section {
    margin: 30px 0 20px;
}

.disclaimer-page .stars {
    font-size: 20px;
    letter-spacing: 2px;
}

.disclaimer-page .rating-text {
    font-size: 13px;
    margin-top: 3px;
}

/* Terms and Conditions Page */
.terms-page {
    background-color: var(--global-palette9);
    padding: 40px 0 60px;
    min-height: calc(100vh - 200px);
}

.terms-section {
    margin: 40px 0;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

.terms-section .content-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--global-palette4);
    margin-bottom: 20px;
    text-align: left;
}

.terms-section .section-list {
    list-style-type: disc;
    padding-left: 30px;
    margin: 15px 0;
}

.terms-section .section-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--global-palette4);
    margin-bottom: 8px;
}

/* Terms page specific rating styling */
.terms-page .rating-section {
    margin: 30px 0 20px;
}

.terms-page .stars {
    font-size: 20px;
    letter-spacing: 2px;
}

.terms-page .star.empty {
    color: #ddd;
}

.terms-page .rating-text {
    font-size: 13px;
    margin-top: 3px;
}

/* Privacy Policy Page */
.privacy-page {
    background-color: var(--global-palette9);
    padding: 40px 0 60px;
    min-height: calc(100vh - 200px);
}

.privacy-section {
    margin: 40px 0;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

.privacy-section .content-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--global-palette4);
    margin-bottom: 20px;
    text-align: left;
}

.privacy-section .section-list {
    list-style-type: disc;
    padding-left: 30px;
    margin: 15px 0;
}

.privacy-section .section-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--global-palette4);
    margin-bottom: 8px;
}

.privacy-section .section-list li strong {
    font-weight: 700;
    color: var(--global-palette4);
}

/* Privacy page specific rating styling */
.privacy-page .rating-section {
    margin: 30px 0 20px;
}

.privacy-page .stars {
    font-size: 20px;
    letter-spacing: 2px;
}

.privacy-page .star.partial-filled {
    color: #FFC107;
    opacity: 0.3;
}

.privacy-page .rating-text {
    font-size: 13px;
    margin-top: 3px;
}

/* Blog Page */
.blog-page {
    background-color: var(--global-palette9);
    padding: 40px 0 60px;
    min-height: calc(100vh - 200px);
}

.blog-article {
    margin-bottom: 50px;
}

.article-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--global-palette9);
    background: #22275b;
    text-align: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.article-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    text-align: left;
}

.article-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.article-thumbnail {
    flex: 0 0 400px;
    height: 250px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-excerpt {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.excerpt-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--global-palette4);
    margin-bottom: 20px;
    text-align: left;
}

.read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #22275b;
    color: var(--global-palette9);
    text-decoration: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s;
    align-self: flex-start;
}

.read-more-btn:hover {
    opacity: 0.9;
}

/* Responsive adjustments for Blog */
@media (max-width: 768px) {
    .article-content {
        flex-direction: column;
    }

    .article-thumbnail {
        flex: 1;
        width: 100%;
        height: 200px;
    }

    .thumbnail-title {
        font-size: 18px;
    }
}

/* Blog Post Page */
.blog-post-page {
    background-color: var(--global-palette9);
    padding: 40px 0 60px;
    min-height: calc(100vh - 200px);
}

.article-metadata {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.post-date {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.post-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-rating .stars {
    font-size: 18px;
    color: #FFC107;
    letter-spacing: 2px;
}

.rating-number {
    font-size: 14px;
    color: #666;
}

.blog-post-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--global-palette4);
    text-align: center;
    margin-bottom: 30px;
}

.blog-post-content {
    margin-bottom: 40px;
}

.blog-banner {
    text-align: center;
    margin: 30px 0;
}

.banner-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.banner-caption {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.blog-section {
    margin: 40px 0;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

.section-heading-blog {
    font-size: 24px;
    font-weight: 700;
    color: var(--global-palette9);
    background: #22275b;
    text-align: center;
    padding: 15px 20px;
    margin: -30px -30px 20px -30px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.register-button-container {
    text-align: center;
    margin: 25px 0;
}

.register-article-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #22275b;
    color: var(--global-palette9);
    text-decoration: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.register-article-btn:hover {
    opacity: 0.9;
}

.btn-icon {
    font-size: 20px;
}

.tutorials-section {
    margin: 40px 0;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.tutorials-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--global-palette4);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tutorials-icon {
    font-size: 20px;
}

.tutorial-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2196F3;
    text-decoration: none;
    font-size: 16px;
    margin-right: 20px;
}

.tutorial-link:hover {
    text-decoration: underline;
}

.tutorial-arrow {
    font-size: 18px;
}

/* Blog post page specific rating styling */
.blog-post-page .rating-section {
    margin: 40px 0 20px;
}

.blog-post-page .stars {
    font-size: 20px;
    letter-spacing: 2px;
}

.blog-post-page .rating-text {
    font-size: 13px;
    margin-top: 3px;
}

/* Game Categories Grid */
.game-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.game-category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.game-category-card:nth-child(1),
.game-category-card:nth-child(2) {
    background: linear-gradient(135deg, #7b1fa2 0%, #6a1b9a 50%, #4a148c 100%);
}

.game-category-card:nth-child(3),
.game-category-card:nth-child(4) {
    background: linear-gradient(135deg, #ff6f00 0%, #e65100 50%, #bf360c 100%);
}

.game-category-image {
    width: 60%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.game-category-name {
    color: var(--global-palette9);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-align: right;
    flex: 1;
    padding-left: 20px;
}

/* Responsive adjustments for game categories */
@media (max-width: 768px) {
    .game-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .game-category-card {
        height: 180px;
    }
}

/* Game Type Cards (for What Is Tiranga Games App page) */
.game-type-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.game-type-card {
    background-color: var(--global-palette9);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.game-type-header {
    background: #22275b;
    color: var(--global-palette9);
    padding: 15px 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.game-type-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-type-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-type-label {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgba(43, 50, 112, 0.9) 0%, rgba(33, 150, 243, 0.9) 100%);
    color: var(--global-palette9);
    padding: 8px 15px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.game-type-description {
    padding: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--global-palette4);
    margin: 0;
    flex: 1;
}

.download-button-container {
    text-align: center;
    margin: 30px 0;
}

.download-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #22275b;
    color: var(--global-palette9);
    text-decoration: none;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.download-app-btn:hover {
    opacity: 0.9;
}

.download-icon {
    font-size: 20px;
}

/* Responsive adjustments for game type cards */
@media (max-width: 768px) {
    .game-type-cards {
        grid-template-columns: 1fr;
    }
    
    .game-type-image-wrapper {
        height: 180px;
    }
}

/* Deposit Image Styling */
.deposit-image-container {
    text-align: center;
    margin: 30px 0;
    width: 100%;
}

.deposit-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contact Us Page */
.contact-us-page {
    background-color: var(--global-palette9);
    padding: 40px 0 60px;
    min-height: calc(100vh - 200px);
}

.contact-form-container {
    max-width: 900px;
    margin: 40px auto;
    background-color: var(--global-palette9);
    padding: 0;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--global-palette4);
    margin-bottom: 10px;
    text-align: left;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #333;
    border-radius: 0;
    font-family: inherit;
    transition: border-color 0.3s;
    background-color: var(--global-palette9);
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2196F3;
}

.form-textarea {
    resize: vertical;
    min-height: 300px;
    font-family: inherit;
    overflow-y: auto;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #333;
    border-radius: 0;
    background-color: var(--global-palette9);
    overflow: hidden;
}

.phone-prefix {
    padding: 12px 15px;
    background-color: var(--global-palette9);
    color: #999;
    font-size: 16px;
    font-weight: 400;
    border-right: 1px solid #333;
}

.phone-input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    border-radius: 0;
}

.phone-input:focus {
    box-shadow: none;
    outline: none;
}

.phone-input-wrapper:focus-within {
    border-color: #2196F3;
}

.file-group {
    margin-bottom: 20px;
}

.file-input-wrapper {
    position: relative;
    display: inline-block;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-input-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.file-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--global-palette9);
    color: var(--global-palette4);
    border: 1px solid #333;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.file-button:hover {
    background-color: #f0f0f0;
}

.file-name {
    color: #666;
    font-size: 14px;
    margin-left: 5px;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: #22275b;
    color: var(--global-palette9);
    border: none;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
    margin-top: 20px;
}

.submit-btn:hover {
    opacity: 0.9;
}

.submit-btn:active {
    opacity: 0.8;
}

/* Contact Us page specific rating styling */
.contact-us-page .rating-section {
    margin: 40px 0 20px;
}

.contact-us-page .stars {
    font-size: 20px;
    letter-spacing: 2px;
}

.contact-us-page .rating-text {
    font-size: 13px;
    margin-top: 3px;
}

/* Responsive adjustments for Contact Us */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 25px;
    }

    .form-input,
    .form-textarea {
        font-size: 14px;
    }
}

.welcome-text {
    font-size: 18px;
    color: var(--global-palette4);
    text-align: left;
    margin: 20px 0 40px;
    font-weight: 400;
    max-width: 900px;
}

.meet-author-section {
    margin: 40px 0;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

.author-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.author-image-container {
    text-align: center;
}

.author-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--global-palette1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.author-image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #22275b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--global-palette9);
    font-size: 48px;
    font-weight: 700;
    border: 4px solid var(--global-palette1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.author-content {
    max-width: 900px;
    width: 100%;
}

.author-content .content-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--global-palette4);
    margin-bottom: 20px;
    text-align: left;
}

.author-content .content-text strong {
    font-weight: 700;
    color: var(--global-palette1);
}

.contact-link {
    color: #2196F3;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.social-section {
    text-align: center;
    margin: 30px 0 20px;
}

.facebook-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #1877F2;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.facebook-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.facebook-icon svg {
    width: 30px;
    height: 30px;
}

.closing-message {
    font-size: 20px;
    font-weight: 700;
    color: var(--global-palette4);
    margin-top: 15px;
    text-align: center;
}

/* Responsive adjustments for About Us */
@media (max-width: 768px) {
    .author-profile {
        flex-direction: column;
    }
    
    .author-image,
    .placeholder-circle {
        width: 150px;
        height: 150px;
    }
    
    .author-content .content-text {
        text-align: left;
    }
}

.contents-toggle {
    color: var(--global-palette1);
    text-decoration: none;
    font-size: 15px;
}

.contents-toggle:hover {
    text-decoration: underline;
}

/* Content Text */
.content-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--global-palette4);
    text-align: left;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--global-palette4);
    text-align: left;
}

/* Introduction Section */
.intro {
    background-color: var(--global-palette9);
    padding: 40px 0;
}

/* What Is Section */
.what-is {
    background-color: var(--global-palette8);
}

/* Features Section */
.features {
    background-color: var(--global-palette9);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

/* Feature Cards - Dark Blue Background with White Text */
.feature-card {
    background-color: var(--global-palette1);
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 20px;
    color: var(--global-palette9);
    background-color: var(--global-palette1);
    padding: 18px 25px;
    margin: 0;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon-placeholder {
    width: 100%;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    /* Placeholder for feature icon images */
}

.feature-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--global-palette9);
    padding: 0 25px;
}

.feature-card > .feature-text:first-of-type {
    padding-top: 20px;
}

.feature-card > .feature-text:last-of-type {
    padding-bottom: 25px;
}

/* Download Section */
.download {
    background-color: var(--global-palette9);
}

.section-image-container {
    text-align: center;
    margin: 30px auto;
    max-width: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.app-specs {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.specs-table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
    background-color: var(--global-palette9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.specs-table tr {
    border-bottom: 1px solid var(--global-palette7);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 15px 20px;
    font-size: 16px;
}

.specs-table td:first-child {
    background-color: var(--global-palette7);
    font-weight: 600;
    color: var(--global-palette1);
    width: 40%;
}

.specs-table a {
    color: var(--global-palette1);
    text-decoration: none;
}

.specs-table a:hover {
    text-decoration: underline;
}

.download-button-container {
    text-align: center;
    margin: 30px 0;
}

.btn-download {
    background-color: var(--global-palette1);
    color: var(--global-palette9);
    padding: 18px 40px;
    font-size: 18px;
    margin: 30px 0;
}

.btn-download:hover {
    background-color: var(--global-palette2);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(49, 130, 206, 0.4);
}

.install-steps {
    margin-top: 40px;
    background-color: var(--global-palette9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.subsection-title {
    font-size: 24px;
    color: var(--global-palette1);
    margin: 30px 0 20px 0;
    font-weight: 600;
}

.steps-list {
    margin: 20px 0;
    padding-left: 30px;
}

.steps-list li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--global-palette4);
}

.content-list {
    list-style-type: disc;
    padding-left: 30px;
    margin: 15px 0;
}

.content-list li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--global-palette4);
    margin-bottom: 8px;
}

.login-tips-list {
    list-style-position: inside;
    padding-left: 0;
}

#tiranga-login {
    scroll-margin-top: 90px;
}

/* Register and Login Sections */
.register,
.login {
    background-color: var(--global-palette9);
}

.register-guide-heading {
    margin-top: 14px;
    margin-bottom: 12px;
}

.register-steps,
.login-steps {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.register-steps li,
.login-steps li {
    padding: 15px;
    margin-bottom: 10px;
    background-color: var(--global-palette7);
    border-left: 4px solid var(--global-palette1);
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.7;
}

.button-container {
    text-align: center;
    margin: 30px 0;
}

.btn-primary {
    background-color: var(--global-palette1);
    color: var(--global-palette9);
}

.btn-primary:hover {
    background-color: var(--global-palette2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(49, 130, 206, 0.4);
}

/* Games Section */
.games {
    background-color: var(--global-palette8);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.game-card {
    background: linear-gradient(135deg, var(--global-palette9) 0%, var(--global-palette7) 100%);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--global-palette1);
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.game-title {
    font-size: 20px;
    color: var(--global-palette1);
    margin-bottom: 15px;
    font-weight: bold;
}

.game-text {
    font-size: 15px;
    line-height: 1.7;
    color: #000;
}

.how-to-play {
    margin-top: 40px;
    background-color: var(--global-palette9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsible Gaming Section */
.responsible-gaming {
    background-color: var(--global-palette9);
}

.commitment-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.commitment-list li {
    padding: 20px;
    margin-bottom: 15px;
    background-color: var(--global-palette7);
    border-left: 4px solid var(--global-palette1);
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.7;
}

.commitment-list li strong {
    color: var(--global-palette1);
}

.deposit-section,
.referral-section {
    margin-top: 40px;
    background-color: var(--global-palette8);
    padding: 30px;
    border-radius: 10px;
}

.deposit-steps,
.referral-steps {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.deposit-steps li,
.referral-steps li {
    padding: 15px;
    margin-bottom: 10px;
    background-color: var(--global-palette9);
    border-left: 4px solid var(--global-palette1);
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.7;
}

.link {
    color: var(--global-palette1);
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* Support Section */
.support {
    background-color: var(--global-palette8);
    text-align: center;
}

.btn-telegram {
    background-color: #0088cc;
    color: #fff;
}

.btn-telegram:hover {
    background-color: #006ba3;
    transform: translateY(-2px);
}

/* FAQs Section */
.faqs {
    background-color: var(--global-palette9);
}

.faq-item {
    background-color: var(--global-palette7);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--global-palette1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 20px;
    color: var(--global-palette1);
    margin-bottom: 15px;
    font-weight: bold;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.7;
    color: var(--global-palette4);
}

.faq-answer strong {
    color: var(--global-palette1);
}

/* Conclusion Section */
.conclusion {
    background-color: var(--global-palette8);
    text-align: center;
}

.conclusion .content-list,
.conclusion .content-list li {
    text-align: left;
}

/* Footer */
.footer {
    background: #22275b;
    color: var(--global-palette9);
    padding: 40px 0;
    margin-top: 4rem;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: flex-start;
}

/* Footer Column Styles */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-left {
    flex-shrink: 0;
}

.footer-logo {
    margin-bottom: 0;
}

.footer-logo img {
    height: auto;
    max-height: 50px;
    width: auto;
}

.footer-middle {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.footer-disclaimer-title {
    color: var(--global-palette9);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    padding: 0;
}

.footer-disclaimer {
    color: var(--global-palette9);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    opacity: 0.9;
}

.footer-right {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li {
    margin: 0;
}

.footer-link {
    color: var(--global-palette9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.footer-link:hover {
    color: #FFC107;
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright p {
    margin: 0;
    color: var(--global-palette9);
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    font-weight: 400;
    opacity: 0.9;
}


/* ============================================
   RESPONSIVE STYLES - MOBILE & TABLET
   ============================================ */

/* Tablet and below (992px) */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .header-content {
        gap: 15px;
    }

    .logo-image {
        height: 35px;
    }

    .nav-link {
        font-size: 14px;
        padding: 8px 16px;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .game-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-type-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Logo on top center */
    .footer-left {
        width: 100%;
        text-align: center;
        order: 1;
        margin-bottom: 1rem;
    }
    
    /* Two column layout for disclaimer (left) and links (right) */
    .footer-middle {
        width: 48%;
        margin: 0;
        text-align: left;
        order: 2;
        display: inline-block;
        vertical-align: top;
    }
    
    .footer-right {
        width: 48%;
        text-align: right;
        order: 3;
        display: inline-block;
        vertical-align: top;
        margin-left: 4%;
    }
}

/* Mobile Landscape and below (768px) */
@media (max-width: 768px) {
    /* Header */
    .header {
        padding: 10px 15px;
    }

    .header-content {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }

    .logo-image {
        height: 32px;
    }

    .nav-menu {
        gap: 8px;
    }

    .nav-link {
        font-size: 13px;
        padding: 6px 14px;
    }

    .login-link {
        font-size: 14px;
        padding: 6px 16px;
    }

    .register-btn {
        font-size: 14px;
        padding: 6px 18px;
    }

    /* Hero Section */
    .hero {
        min-height: 500px;
        padding: 20px 0 60px;
        background-size: cover;
        background-position: center;
    }

    .hero-background-image {
        top: 10px;
        width: 120px;
        height: 120px;
        z-index: 1;
    }

    .hero-content {
        margin-top: 10px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-top: 140px;
        margin-bottom: 15px;
        text-align: center;
    }

    .hero-banner {
        font-size: 14px;
        padding: 10px 15px;
        text-align: center;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        font-size: 14px;
        padding: 12px 20px;
        text-align: center;
    }

    .hero-welcome-text {
        font-size: 15px;
        line-height: 1.6;
        text-align: left;
    }

    /* Content Sections */
    .container {
        padding: 0 15px;
    }

    section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
        padding: 15px 20px;
        text-align: left;
    }

    .section-heading {
        font-size: 22px;
        padding: 12px 18px;
    }

    .content-text,
    .intro-text {
        font-size: 15px;
        line-height: 1.7;
        text-align: left;
    }

    .content-list,
    .section-list {
        padding-left: 25px;
        font-size: 15px;
    }

    /* Contents Box */
    .contents-box {
        padding: 10px 15px;
        width: 100%;
        display: block;
    }

    .contents-list {
        padding: 15px;
        margin: 15px 0;
    }

    .toc-main {
        padding-left: 25px;
        font-size: 13px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        margin-bottom: 0;
    }

    .feature-title {
        font-size: 18px;
        padding: 15px 20px;
    }

    .feature-text {
        font-size: 14px;
        padding: 15px 20px;
    }

    /* Games Grid */
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .game-card {
        padding: 20px;
    }

    .game-title {
        font-size: 20px;
    }

    .game-text {
        font-size: 14px;
    }

    .game-card-image {
        height: 200px;
        margin-bottom: 15px;
    }

    /* Tables */
    .specs-table {
        font-size: 13px;
        width: 100%;
        display: block;
        overflow-x: auto;
    }

    .specs-table td {
        padding: 10px 12px;
        display: table-cell;
    }

    .app-specs {
        overflow-x: auto;
    }

    /* Download Section */
    .download {
        padding: 40px 0;
    }

    .section-image-container {
        max-width: 180px;
        margin: 20px auto;
    }

    /* Forms */
    .contact-form-container {
        padding: 20px;
        margin: 20px auto;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-label {
        font-size: 14px;
    }

    .form-input,
    .form-textarea {
        font-size: 15px;
        padding: 10px 12px;
    }

    .submit-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }

    /* Blog */
    .article-content {
        flex-direction: column;
    }

    .article-thumbnail {
        flex: 1;
        width: 100%;
        height: 200px;
    }

    .thumbnail-title {
        font-size: 18px;
    }

    .article-title {
        font-size: 22px;
    }

    .blog-post-title {
        font-size: 28px;
    }

    /* Game Categories */
    .game-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .game-category-card {
        height: 180px;
    }

    .game-type-cards {
        grid-template-columns: 1fr;
    }
    
    .game-type-image-wrapper {
        height: 180px;
    }

    /* Page Specific */
    .page-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 25px;
    }

    .about-section {
        padding: 20px;
        margin: 30px 0;
    }

    .about-section .section-heading {
        margin: -20px -20px 20px -20px;
        padding: 12px 15px;
        font-size: 20px;
    }

    .responsible-section,
    .privacy-section,
    .disclaimer-section,
    .terms-section {
        margin: 30px 0;
    }

    .responsible-section .section-heading,
    .privacy-section .section-heading,
    .disclaimer-section .section-heading,
    .terms-section .section-heading {
        font-size: 20px;
        padding: 12px 18px;
    }

    /* Footer */
    .footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    /* Logo on top center - full width */
    .footer-left {
        flex-basis: 100%;
        width: 100%;
        text-align: center;
        order: 1;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        margin-bottom: 0;
        display: flex;
        justify-content: center;
    }
    
    .footer-logo img {
        height: auto;
        max-height: 40px;
        width: auto;
    }
    
    /* Disclaimer on the left, links on the right - side by side in single row */
    .footer-middle {
        flex: 0 0 48%;
        margin: 0;
        text-align: left;
        order: 2;
        align-self: flex-start;
    }
    
    .footer-right {
        flex: 0 0 48%;
        margin: 0;
        text-align: right;
        order: 2;
        align-self: flex-start;
    }
    
    .footer-disclaimer-title {
        font-size: 0.95rem;
        text-align: left;
        margin-bottom: 0.5rem;
        margin-top: 0;
    }
    
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.6;
        text-align: left;
        margin-top: 0;
    }
    
    .footer-links {
        gap: 0.5rem;
        align-items: flex-start;
        text-align: right;
        margin-top: 0;
    }
    
    .footer-links li {
        text-align: right;
    }
    
    .footer-link {
        font-size: 0.9rem;
        text-align: right;
    }
    
    .footer-copyright {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        order: 3;
        flex-basis: 100%;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
    }

    /* Rating Section */
    .rating-section {
        margin: 25px 0 15px;
    }

    .stars {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .rating-text {
        font-size: 13px;
    }

    /* Steps List */
    .steps-list {
        padding-left: 25px;
        font-size: 15px;
    }

    .steps-list li {
        margin-bottom: 12px;
        line-height: 1.6;
    }

    /* FAQ */
    .faq-item {
        margin-bottom: 20px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer {
        font-size: 14px;
    }

    /* Hero Icon Placeholder */
    .hero-icon-placeholder {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
}

/* Mobile Portrait (480px) */
@media (max-width: 480px) {
    /* Header */
    .header {
        padding: 8px 12px;
    }

    .header-content {
        gap: 8px;
    }

    .logo-image {
        height: 28px;
    }

    .nav-menu {
        gap: 6px;
    }

    .nav-link {
        font-size: 12px;
        padding: 5px 12px;
    }

    .login-link {
        font-size: 12px;
        padding: 5px 14px;
    }

    .register-btn {
        font-size: 12px;
        padding: 5px 16px;
    }

    /* Hero Section */
    .hero {
        padding: 15px 0 50px;
        min-height: 400px;
    }

    .hero-background-image {
        top: 5px;
        width: 100px;
        height: 100px;
        z-index: 1;
    }

    .hero-content {
        margin-top: 5px;
    }

    .hero-title {
        font-size: 22px;
        margin-top: 110px;
        margin-bottom: 12px;
        padding: 0 10px;
    }

    .hero-banner {
        font-size: 12px;
        padding: 8px 12px;
        margin-bottom: 15px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        font-size: 13px;
        padding: 10px 16px;
    }

    .hero-welcome-text {
        font-size: 14px;
        padding: 0 5px;
    }

    /* Content */
    .container {
        padding: 0 12px;
    }

    section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 20px;
        padding: 12px 15px;
    }

    .section-heading {
        font-size: 18px;
        padding: 10px 15px;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .content-text,
    .intro-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .content-list,
    .section-list {
        padding-left: 20px;
        font-size: 14px;
    }

    /* Contents Box */
    .contents-box {
        padding: 8px 12px;
    }

    .contents-text {
        font-size: 14px;
    }

    .contents-toggle {
        font-size: 13px;
    }

    .contents-list {
        padding: 12px;
    }

    .toc-main {
        padding-left: 20px;
        font-size: 12px;
    }

    /* Features */
    .feature-title {
        font-size: 16px;
        padding: 12px 15px;
    }

    .feature-text {
        font-size: 13px;
        padding: 12px 15px;
    }

    .feature-icon-placeholder {
        height: 120px;
    }

    /* Games */
    .game-card {
        padding: 15px;
    }

    .game-title {
        font-size: 18px;
    }

    .game-text {
        font-size: 13px;
    }

    .game-card-image {
        height: 150px;
    }

    /* Tables */
    .specs-table {
        font-size: 12px;
    }

    .specs-table td {
        padding: 8px 10px;
    }

    /* Forms */
    .contact-form-container {
        padding: 15px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-input,
    .form-textarea {
        font-size: 14px;
        padding: 8px 10px;
    }

    .submit-btn {
        font-size: 15px;
        padding: 10px 18px;
    }

    /* Blog */
    .article-title {
        font-size: 20px;
    }

    .blog-post-title {
        font-size: 24px;
    }

    .thumbnail-title {
        font-size: 16px;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0.75rem;
    }

    .footer-logo img {
        max-height: 35px;
    }

    /* Two column layout for disclaimer and links in a single row */
    .footer-middle {
        flex: 0 0 48%;
        margin: 0;
        text-align: left;
        align-self: flex-start;
    }
    
    .footer-right {
        flex: 0 0 48%;
        text-align: right;
        align-self: flex-start;
    }

    .footer-disclaimer-title {
        font-size: 0.9rem;
        text-align: left;
        margin-top: 0;
    }
    
    .footer-links {
        margin-top: 0;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        text-align: left;
    }

    .footer-link {
        font-size: 0.85rem;
        text-align: right;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }

    /* Rating */
    .stars {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .rating-text {
        font-size: 12px;
    }

    /* Steps */
    .steps-list {
        padding-left: 20px;
        font-size: 14px;
    }

    /* FAQ */
    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 13px;
    }

    /* Hero Icon */
    .hero-icon-placeholder {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    /* Page Sections */
    .about-section {
        padding: 15px;
        margin: 20px 0;
    }

    .about-section .section-heading {
        margin: -15px -15px 15px -15px;
        padding: 10px 12px;
        font-size: 18px;
    }

    .responsible-section,
    .privacy-section,
    .disclaimer-section,
    .terms-section {
        margin: 25px 0;
    }

    .responsible-section .section-heading,
    .privacy-section .section-heading,
    .disclaimer-section .section-heading,
    .terms-section .section-heading {
        font-size: 18px;
        padding: 10px 15px;
    }
}
