<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Specific styles for Safer Gambling page */
.safer-gambling-hero {
    background: linear-gradient(rgba(20, 20, 40, 0.95), rgba(20, 20, 40, 0.95)), url('../images/casino-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.safer-gambling-hero h2 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 42px;
}

.safer-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
}

.safer-value {
    background-color: var(--dark-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.safer-value h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.safer-value p {
    color: #ffffff;
    line-height: 1.6;
}

.feature-icon {
    font-size: 44px;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.protection-tools {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.protection-tools h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.protection-tool {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.protection-tool:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.protection-tool h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

.protection-tool p {
    color: #333333;
    line-height: 1.5;
}

.tips-container {
    background-color: var(--dark-bg);
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.tips-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

.tips-container h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tips-list {
    counter-reset: tip-counter;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 60px;
    counter-increment: tip-counter;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 16px 16px 16px 60px;
    transition: transform 0.2s ease;
}

.tips-list li:hover {
    transform: translateX(5px);
    background-color: rgba(255, 255, 255, 0.05);
}

.tips-list li:before {
    content: counter(tip-counter);
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--secondary-color);
    color: #000000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tips-list li strong {
    color: #ffffff;
    font-weight: 600;
}

.assessment-questions {
    background-color: var(--card-bg);
    color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.assessment-questions h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.assessment-questions ul {
    list-style: none;
    padding: 0;
}

.assessment-questions li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
}

.assessment-questions li:before {
    content: "â€¢";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 24px;
    top: -8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.assessment-questions p {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.help-organizations {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
}

.help-org {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    flex: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.help-org:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.help-icon {
    font-size: 40px;
    margin-bottom: 20px;
    background: var(--primary-color);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(90, 30, 173, 0.3);
}

.help-org h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

.help-org p {
    text-align: center;
    margin-bottom: 10px;
    color: #333333;
    font-weight: 500;
}

.help-org p strong {
    font-size: 18px;
    color: #000000;
}

.help-org .btn {
    margin-top: 15px;
    font-weight: 600;
    padding: 12px 24px;
    min-width: 160px;
}

.section-title {
    color: var(--primary-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-description {
    color: #333333;
    font-weight: 500;
    line-height: 1.7;
}

.additional-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.additional-info h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.additional-info p {
    color: #333333;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .safer-values {
        flex-direction: column;
        align-items: center;
    }
    
    .safer-value {
        max-width: 100%;
    }
    
    .help-organizations {
        flex-direction: column;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }
    
    .help-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

/* Ð”Ð¾Ð±Ð°Ð²Ð»ÑÑŽ ÑÑ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ ÐºÐ°Ñ€Ñ‚Ð¾Ñ‡ÐµÐº Ð² Ñ€Ð°Ð·Ð´ÐµÐ»Ðµ Key Policies */
.features-grid .feature {
    background-color: var(--dark-bg);
}

.features-grid .feature h3 {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.features-grid .feature p {
    color: #ffffff;
}

.features-grid .feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: var(--secondary-color);
} </pre></body></html>