/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --primary-blue: #007BFF;
    --primary-white: #FFFFFF;
    --secondary-blue: #0056CC;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --text-gray: #666666;
    --accent-red: #DC3545;
    --accent-gold: #FFC107;
    --accent-orange: #FD7E14;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--primary-white);
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 60px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 100%;
        padding: 0 80px;
    }
}

/* Header and Navigation */
.header {
    background-color: var(--primary-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.1rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0.05rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo:hover {
    background-color: rgba(0, 123, 255, 0.05);
    transform: translateY(-1px);
}

.logo-image {
    height: 20px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-image:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

@media (min-width: 768px) {
    .logo-image {
        height: 24px;
    }
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-black);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
    border-radius: 8px;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-blue);
    background-color: rgba(0, 123, 255, 0.05);
    transform: translateY(-1px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 60%;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        align-items: center;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.nav-toggle:hover {
    background-color: rgba(0, 123, 255, 0.05);
    transform: translateY(-1px);
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background-color: var(--primary-black);
    margin: 1px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle:hover span {
    background-color: var(--primary-blue);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    
    .header {
        padding: 0.25rem 0;
    }
    
    .nav-container {
        padding: 0.25rem 0;
    }
}

/* Hero Section */
.hero {
    padding: 25px 0 60px;
    background: var(--primary-white);
    margin-top: 60px;
}

.hero-content {
    text-align: left;
    max-width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: var(--primary-blue);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Google Play Button */
.google-play-button {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.play-store-btn {
    display: flex !important;
    align-items: center !important;
    background: #FFFFFF !important;
    color: #007BFF !important;
    text-decoration: none !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    border: 2px solid #007BFF !important;
    position: relative !important;
    overflow: hidden !important;
    font-weight: 600 !important;
}

.play-store-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    transition: left 0.5s !important;
}

.play-store-btn:hover::before {
    left: 100% !important;
}

.play-store-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.2) !important;
    background: #F5F5F5 !important;
    color: #0056CC !important;
}

.play-store-btn:hover .play-store-icon {
    color: #0056CC !important;
}

.play-store-btn:hover .play-store-name {
    color: #0056CC !important;
}

.play-store-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.play-store-icon {
    margin-right: 12px !important;
    display: flex !important;
    align-items: center !important;
    color: #007BFF !important;
}

.play-store-icon svg {
    width: 24px !important;
    height: 24px !important;
    color: #007BFF !important;
}

.play-store-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.play-store-label {
    font-size: 0.75rem !important;
    font-weight: 400 !important;
    opacity: 0.8 !important;
    line-height: 1 !important;
    color: #666666 !important;
}

.play-store-name {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    margin-top: 2px !important;
    color: #007BFF !important;
}

@media (min-width: 768px) {
    .hero-content {
        text-align: center;
        max-width: 1000px;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        margin-top: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 3rem;
    }
    
    .google-play-button {
        margin-bottom: 3rem;
    }
    
    .play-store-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .play-store-btn {
        padding: 16px 32px !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        background: #FFFFFF !important;
        color: #007BFF !important;
        text-decoration: none !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
        border: 2px solid #007BFF !important;
        position: relative !important;
        overflow: hidden !important;
        font-weight: 600 !important;
    }
    
    .play-store-icon {
        margin-right: 16px !important;
        display: flex !important;
        align-items: center !important;
        color: #007BFF !important;
    }
    
    .play-store-icon svg {
        width: 28px !important;
        height: 28px !important;
        color: #007BFF !important;
    }
    
    .play-store-label {
        font-size: 0.85rem !important;
        font-weight: 400 !important;
        opacity: 0.8 !important;
        line-height: 1 !important;
        color: #666666 !important;
    }
    
    .play-store-name {
        font-size: 1.3rem !important;
        font-weight: 600 !important;
        line-height: 1 !important;
        margin-top: 2px !important;
        color: #007BFF !important;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        max-width: 1200px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        margin-top: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .google-play-button {
        margin-bottom: 4rem;
    }
    
    .play-store-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .play-store-btn {
        padding: 20px 40px !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        background: #FFFFFF !important;
        color: #007BFF !important;
        text-decoration: none !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
        border: 2px solid #007BFF !important;
        position: relative !important;
        overflow: hidden !important;
        font-weight: 600 !important;
    }
    
    .play-store-icon {
        margin-right: 20px !important;
        display: flex !important;
        align-items: center !important;
        color: #007BFF !important;
    }
    
    .play-store-icon svg {
        width: 32px !important;
        height: 32px !important;
        color: #007BFF !important;
    }
    
    .play-store-label {
        font-size: 0.9rem !important;
        font-weight: 400 !important;
        opacity: 0.8 !important;
        line-height: 1 !important;
        color: #666666 !important;
    }
    
    .play-store-name {
        font-size: 1.5rem !important;
        font-weight: 600 !important;
        line-height: 1 !important;
        margin-top: 2px !important;
        color: #007BFF !important;
    }
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    border: none;
    box-shadow: none;
}

.feature:hover {
    background-color: var(--medium-gray);
    transform: none;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.feature p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .hero-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
        margin-top: 3rem;
    }
    
    .feature {
        background: var(--primary-white);
        padding: 2.5rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .feature:hover {
        transform: translateY(-5px);
        background-color: var(--primary-white);
    }
    
    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .feature h3 {
        font-size: 1.4rem;
    }
    
    .feature p {
        font-size: 1.1rem;
    }
}

@media (min-width: 1200px) {
    .hero-features {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
    }
    
    .feature {
        padding: 3rem;
    }
    
    .feature h3 {
        font-size: 1.5rem;
    }
    
    .feature p {
        font-size: 1.2rem;
    }
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.about h2 {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about {
        padding: 80px 0;
        background-color: var(--primary-white);
    }
    
    .about h2 {
        font-size: 3rem;
        text-align: center;
        margin-bottom: 3rem;
        color: var(--primary-black);
    }
    
    .about-content {
        display: grid;
        grid-template-columns: 3fr 2fr;
        gap: 5rem;
        align-items: start;
    }
}

@media (min-width: 1200px) {
    .about h2 {
        font-size: 3.5rem;
    }
    
    .about-content {
        gap: 6rem;
    }
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.about-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .about-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text ul {
        margin: 1.5rem 0;
    }
}

.about-mission {
    background: var(--primary-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.about-mission h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

@media (min-width: 768px) {
    .about-mission {
        background: var(--light-gray);
        padding: 2rem;
        border-radius: 12px;
        margin-top: 0;
    }
    
    .about-mission h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.mission-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mission-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--primary-black);
    font-size: 0.9rem;
    line-height: 1.4;
}

.mission-icon {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .mission-items {
        gap: 1rem;
    }
    
    .mission-item {
        font-size: 1rem;
        gap: 1rem;
    }
    
    .mission-icon {
        font-size: 1.5rem;
    }
}

/* Rating Section */
.rating {
    padding: 60px 0;
    background-color: var(--primary-white);
}

.rating h2 {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.section-subtitle {
    text-align: left;
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .rating {
        padding: 80px 0;
        background-color: var(--light-gray);
    }
    
    .rating h2 {
        font-size: 3rem;
        text-align: center;
        margin-bottom: 1rem;
        color: var(--primary-black);
    }
    
    .section-subtitle {
        text-align: center;
        font-size: 1.3rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1200px) {
    .rating h2 {
        font-size: 3.5rem;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
    }
}

.rating-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: none;
    transition: background-color 0.3s ease;
    border: none;
}

.rating-card:hover {
    background-color: var(--medium-gray);
    transform: none;
}

@media (min-width: 768px) {
    .rating-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
    }
    
    .rating-card {
        background: var(--primary-white);
        padding: 2.5rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .rating-card:hover {
        transform: translateY(-5px);
        background-color: var(--primary-white);
    }
}

@media (min-width: 1200px) {
    .rating-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 3rem;
    }
    
    .rating-card {
        padding: 3rem;
    }
}

.rating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.rating-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-black);
}

.rating-score {
    background: var(--primary-blue);
    color: var(--primary-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
}

.rating-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .rating-header h3 {
        font-size: 1.25rem;
    }
    
    .rating-score {
        font-size: 1.1rem;
    }
    
    .rating-card p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.rating-link {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.rating-link:hover {
    color: var(--secondary-blue);
}

/* News Section */
.news {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.news h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-black);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-date {
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 1rem;
}

.news-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.news-card p {
    color: var(--text-gray);
}

/* Responsible Gaming Preview */
.responsible-gaming-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--primary-white);
}

.responsible-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.responsible-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.responsible-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-white);
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo .logo-image {
    height: 30px;
    width: auto;
}

.footer-logo a .logo-image {
    height: 30px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo a .logo-image:hover {
    transform: scale(1.05);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-disclaimer {
    border-top: 1px solid var(--dark-gray);
    padding-top: 1rem;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    opacity: 0.8;
}



/* Responsible Gaming Page Styles */
.responsible-hero {
    padding: 100px 0 60px;
    background: var(--primary-blue);
    color: var(--primary-white);
}

.responsible-hero-content {
    text-align: left;
    max-width: 100%;
    margin: 0 auto;
}

.responsible-hero-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.responsible-hero-content p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .responsible-hero {
        padding: 120px 0 80px;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    }
    
    .responsible-hero-content {
        text-align: center;
        max-width: 1000px;
    }
    
    .responsible-hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    .responsible-hero-content p {
        font-size: 1.4rem;
    }
}

@media (min-width: 1200px) {
    .responsible-hero-content {
        max-width: 1200px;
    }
    
    .responsible-hero-content h1 {
        font-size: 4rem;
    }
    
    .responsible-hero-content p {
        font-size: 1.5rem;
    }
}

.responsible-content {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.responsible-content .container {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .responsible-content {
        padding: 60px 0;
        background-color: var(--primary-white);
    }
    
    .responsible-content .container {
        max-width: 2000px;
        margin: 0 auto;
        padding: 0 30px;
    }
    
    .content-grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        width: 100%;
        max-width: 100%;
    }
    
    .content-main {
        width: 100%;
        max-width: 100%;
    }
    
    .content-sidebar {
        width: 100%;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .responsible-content .container {
        max-width: 2400px;
        margin: 0 auto;
        padding: 0 40px;
    }
    
    .content-grid {
        flex-direction: column;
        gap: 3.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .content-main {
        width: 100%;
        max-width: 100%;
    }
    
    .content-sidebar {
        width: 100%;
        max-width: 100%;
    }
}

.content-main {
    background: var(--primary-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
}

.content-main h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
    text-align: left;
}

.content-main h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    color: var(--primary-black);
    text-align: left;
}

.content-main p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    line-height: 1.4;
    text-align: left;
}

.content-main ul,
.content-main ol {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
    text-align: left;
}

.content-main li {
    margin-bottom: 0.25rem;
    color: var(--text-gray);
    line-height: 1.4;
    text-align: left;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .content-main {
        padding: 2rem;
        box-shadow: none;
        background: transparent;
    }
    
    .content-main h2 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: var(--primary-black);
    }
    
    .content-main h3 {
        font-size: 1rem;
        margin: 1rem 0 0.75rem;
    }
    
    .content-main p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .content-main ul,
    .content-main ol {
        margin: 1.5rem 0;
    }
}

@media (min-width: 1200px) {
    .content-main {
        padding: 2.5rem;
    }
    
    .content-main h2 {
        font-size: 1.1rem;
    }
    
    .content-main h3 {
        font-size: 1rem;
    }
    
    .content-main p {
        font-size: 0.9rem;
    }
}

.content-sidebar {
    background: var(--primary-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .content-sidebar {
        padding: 2rem;
        box-shadow: none;
        background: transparent;
    }
}

@media (min-width: 1200px) {
    .content-sidebar {
        padding: 2.5rem;
    }
}

.help-organizations h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0.75rem;
    color: var(--primary-blue);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
    text-align: left;
}

.help-organizations h3:first-child {
    margin-top: 0;
}

@media (min-width: 768px) {
    .help-organizations h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        margin-top: 1rem;
        color: var(--primary-black);
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .help-organizations h3 {
        font-size: 1rem;
    }
}

.org-card {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
    width: 100%;
}

.org-card:hover {
    background: var(--primary-white);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

.org-card:last-child {
    margin-bottom: 0;
}

.org-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.org-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--primary-black);
    line-height: 1.3;
}

.org-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.org-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.org-logo:nth-child(1) {
    background: var(--accent-red);
    color: var(--primary-white);
}

.org-logo:nth-child(2) {
    background: var(--accent-gold);
    color: var(--primary-black);
}

.org-logo:nth-child(3) {
    background: var(--accent-orange);
    color: var(--primary-white);
}

.org-logo:nth-child(4) {
    background: var(--primary-black);
    color: var(--primary-white);
}

.org-logo:nth-child(5) {
    background: var(--primary-blue);
    color: var(--primary-white);
}

.org-card p {
    color: var(--text-gray);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.org-contact {
    font-size: 0.9rem;
    color: var(--primary-black);
    margin-top: 0.25rem;
}

.org-contact a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    background: var(--light-gray);
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.org-contact a:hover {
    background: var(--primary-blue);
    color: var(--primary-white);
    text-decoration: none;
}

@media (min-width: 768px) {
    .org-card {
        padding: 1.5rem;
        border-radius: 10px;
        margin-bottom: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        border: 1px solid var(--medium-gray);
    }
    
    .org-info {
        width: 100%;
    }
    
    .org-card h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .org-logo {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .org-logo-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 6px;
    }
    
    .org-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .org-contact {
        font-size: 0.9rem;
    }
    
    .org-contact a {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 1200px) {
    .org-card {
        padding: 2rem;
    }
    
    .org-card h4 {
        font-size: 0.9rem;
    }
    
    .org-logo {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    
    .org-logo-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 6px;
    }
    
    .org-card p {
        font-size: 0.9rem;
    }
}

.emergency-help {
    background: var(--primary-blue);
    color: var(--primary-white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.emergency-help h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.emergency-help p {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.emergency-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.emergency-number {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-white);
}

.responsible-resources {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.responsible-resources h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-black);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.resource-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.btn-secondary {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--primary-white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background: var(--secondary-blue);
}

/* Logo link styles */
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo a .logo-image {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo a .logo-image:hover {
    transform: scale(1.05);
}

/* Bookmaker Company Page Styles */
.bk-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--light-gray) 100%);
}

.bk-hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.bk-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.bk-logo h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-black);
    margin: 0;
}

.bk-logo-placeholder {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.bk-logo-image {
    width: 120px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.bk-logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.bk-info {
    flex: 1;
}

.bk-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.bk-rating .rating-score {
    background: var(--primary-blue);
    color: var(--primary-white);
    padding: 1rem 1.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-black);
}

.bk-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bk-detail {
    font-size: 1rem;
    color: var(--text-gray);
}

.bk-content {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.bk-stats {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.bk-stats h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    color: var(--text-gray);
}

.stat-value {
    font-weight: 600;
    color: var(--primary-black);
}

.bk-features {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.bk-features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.bk-features ul {
    list-style: none;
    padding: 0;
}

.bk-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.bk-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-white);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding: 1rem 0;
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu a:hover {
        background-color: rgba(0, 123, 255, 0.05);
        transform: none;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-top: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-sidebar {
        position: static;
    }
    
    .bk-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .bk-logo h1 {
        font-size: 2.5rem;
    }
    
    .bk-logo-placeholder {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .bk-logo-image {
        width: 100px;
        height: 60px;
    }
    
    .bk-rating .rating-score {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .google-play-button {
        margin-bottom: 1.5rem;
    }
    
    .play-store-btn {
        padding: 10px 20px !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        background: #FFFFFF !important;
        color: #007BFF !important;
        text-decoration: none !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
        border: 2px solid #007BFF !important;
        position: relative !important;
        overflow: hidden !important;
        font-weight: 600 !important;
    }
    
    .play-store-icon {
        margin-right: 8px !important;
        display: flex !important;
        align-items: center !important;
        color: #007BFF !important;
    }
    
    .play-store-icon svg {
        width: 20px !important;
        height: 20px !important;
        color: #007BFF !important;
    }
    
    .play-store-label {
        font-size: 0.7rem !important;
        font-weight: 400 !important;
        opacity: 0.8 !important;
        line-height: 1 !important;
        color: #666666 !important;
    }
    
    .play-store-name {
        font-size: 1rem !important;
        font-weight: 600 !important;
        line-height: 1 !important;
        margin-top: 2px !important;
        color: #007BFF !important;
    }
    
    .rating-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 20px 0 60px;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-top: 0.75rem;
    }
    
    .about h2,
    .rating h2,
    .news h2,
    .responsible-content h2 {
        font-size: 2rem;
    }
}

/* Additional header styles for larger screens */
@media (min-width: 1200px) {
    .header {
        padding: 0.35rem 0;
    }
    
    .nav-container {
        padding: 0.35rem 0;
    }
    
    .logo-image {
        height: 28px;
    }
}

/* Responsive styles for BK logos */
@media (min-width: 768px) {
    .bk-logo-image {
        width: 140px;
        height: 90px;
    }
}

@media (min-width: 1200px) {
    .bk-logo-image {
        width: 160px;
        height: 100px;
    }
} 