/* Import base styles from index.css */
@import url('index.css');

/* Responsible Gaming specific styles */
.responsible-hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(160, 82, 45, 0.05) 100%);
}

.responsible-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.responsible-hero-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.responsible-hero-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-principles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.principle-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(139, 69, 19, 0.3);
}

.principle-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.principle-text {
    color: #cd853f;
    font-weight: 600;
}

/* Protection Shield Visual */
.protection-shield {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #cd853f;
    text-align: center;
}

.shield-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.shield-text {
    color: #cd853f;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.shield-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shield-feature {
    background: rgba(205, 133, 63, 0.2);
    color: #cd853f;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Warning Signs Section */
.warning-signs-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.warning-signs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.warning-intro {
    text-align: center;
    margin-bottom: 50px;
}

.warning-intro h3 {
    color: #ff6b6b;
    font-size: 2rem;
    margin-bottom: 20px;
}

.warning-intro p {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.warning-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.warning-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.warning-category h4 {
    color: #ff6b6b;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.warning-list {
    list-style: none;
    color: #ccc;
}

.warning-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.warning-list li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Self-Assessment Section */
.self-assessment-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.self-assessment-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

.assessment-intro {
    text-align: center;
    margin-bottom: 50px;
}

.assessment-intro h3 {
    color: #cd853f;
    font-size: 2rem;
    margin-bottom: 20px;
}

.assessment-intro p {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.quiz-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(205, 133, 63, 0.3);
}

.question-group {
    margin-bottom: 30px;
}

.question {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.question-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.answer-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.answer-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.answer-options label:hover {
    background: rgba(205, 133, 63, 0.2);
}

.answer-options input[type="radio"] {
    accent-color: #cd853f;
}

.btn-assess {
    background: linear-gradient(135deg, #cd853f 0%, #8b4513 100%);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.btn-assess:hover {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    transform: translateY(-2px);
}

.assessment-result {
    margin-top: 30px;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #cd853f;
    background: rgba(205, 133, 63, 0.1);
}

.assessment-result h4 {
    color: #cd853f;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.assessment-result p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Protection Tools Section */
.protection-tools-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.protection-tools-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.tools-intro {
    text-align: center;
    margin-bottom: 50px;
}

.tools-intro h3 {
    color: #cd853f;
    font-size: 2rem;
    margin-bottom: 20px;
}

.tools-intro p {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tool-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(205, 133, 63, 0.3);
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tool-card h4 {
    color: #cd853f;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.tool-card p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tool-features {
    margin-bottom: 25px;
}

.feature {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-size: 0.95rem;
}

.tool-action {
    display: inline-block;
    background: linear-gradient(135deg, #cd853f 0%, #8b4513 100%);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tool-action:hover {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    transform: translateY(-2px);
}

/* Support Resources Section */
.support-resources-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.support-resources-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.support-intro {
    text-align: center;
    margin-bottom: 50px;
}

.support-intro h3 {
    color: #cd853f;
    font-size: 2rem;
    margin-bottom: 20px;
}

.support-intro p {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.support-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.organization-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(205, 133, 63, 0.3);
}

.org-logo {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.organization-card h4 {
    color: #cd853f;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
}

.organization-card p {
    color: #ccc;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.6;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.contact-method {
    margin-bottom: 10px;
    color: #ccc;
    font-size: 0.95rem;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.emergency-contacts h3 {
    color: #ff6b6b;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.emergency-card {
    background: rgba(255, 107, 107, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    text-align: center;
}

.emergency-card h4 {
    color: #ff6b6b;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.emergency-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.emergency-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Guidelines Section */
.guidelines-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

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

.guidelines-intro {
    text-align: center;
    margin-bottom: 50px;
}

.guidelines-intro h3 {
    color: #cd853f;
    font-size: 2rem;
    margin-bottom: 20px;
}

.guidelines-intro p {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.guidelines-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.guideline-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(205, 133, 63, 0.3);
}

.guideline-category h4 {
    color: #cd853f;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.guidelines-list {
    list-style: none;
    color: #ccc;
}

.guidelines-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.guidelines-list li:before {
    content: "📌";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.guidelines-list li strong {
    color: #cd853f;
}

/* Age Verification Section */
.age-verification-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.age-verification-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.age-intro {
    text-align: center;
    margin-bottom: 50px;
}

.age-intro h3 {
    color: #cd853f;
    font-size: 2rem;
    margin-bottom: 20px;
}

.age-intro p {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.age-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.requirement-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(205, 133, 63, 0.3);
    text-align: center;
}

.requirement-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.requirement-card h4 {
    color: #cd853f;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.requirement-card p {
    color: #ccc;
    line-height: 1.6;
}

.parental-guidance h3 {
    color: #cd853f;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.guidance-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tip {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(205, 133, 63, 0.3);
}

.tip h4 {
    color: #cd853f;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.tip p {
    color: #ccc;
    line-height: 1.6;
}

/* Contact & Support Section */
.contact-support-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.contact-support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.support-intro {
    text-align: center;
    margin-bottom: 50px;
}

.support-intro h3 {
    color: #cd853f;
    font-size: 2rem;
    margin-bottom: 20px;
}

.support-intro p {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.support-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(205, 133, 63, 0.3);
    text-align: center;
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.support-method h4 {
    color: #cd853f;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.support-method p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-detail {
    color: #cd853f;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.support-action {
    display: inline-block;
    background: linear-gradient(135deg, #cd853f 0%, #8b4513 100%);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.support-action:hover {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    transform: translateY(-2px);
}

/* CTA Section */
.responsible-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(205, 133, 63, 0.2) 0%, rgba(205, 133, 63, 0.1) 100%);
}

.responsible-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 10px;
}

.responsible-cta-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.responsible-cta-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-set-limits,
.btn-get-help {
    display: inline-block;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-set-limits {
    background: linear-gradient(135deg, #cd853f 0%, #8b4513 100%);
    color: #fff;
}

.btn-set-limits:hover {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    transform: translateY(-3px);
}

.btn-get-help {
    background: transparent;
    color: #fff;
    border: 2px solid #cd853f;
}

.btn-get-help:hover {
    background: #cd853f;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1080px) {
    .responsible-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .warning-categories {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .support-organizations {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .guidelines-categories {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .responsible-hero-title {
        font-size: 2.5rem;
    }
    
    .responsible-hero-description {
        font-size: 1rem;
    }
    
    .warning-categories {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .support-organizations {
        grid-template-columns: 1fr;
    }
    
    .guidelines-categories {
        grid-template-columns: 1fr;
    }
    
    .answer-options {
        grid-template-columns: 1fr;
    }
    
    .emergency-grid {
        grid-template-columns: 1fr;
    }
    
    .age-requirements {
        grid-template-columns: 1fr;
    }
    
    .guidance-tips {
        grid-template-columns: 1fr;
    }
    
    .support-methods {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .responsible-hero-section {
        padding: 80px 0 60px;
    }
    
    .responsible-hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .responsible-cta-title {
        font-size: 2rem;
    }
    
    .quiz-container {
        padding: 25px;
    }
    
    .tool-card {
        padding: 20px;
    }
    
    .organization-card {
        padding: 20px;
    }
    
    .emergency-card {
        padding: 20px;
    }
    
    .guideline-category {
        padding: 20px;
    }
    
    .requirement-card {
        padding: 20px;
    }
    
    .support-method {
        padding: 20px;
    }
}

/* Active footer link */
.footer-link.active {
    color: #cd853f;
}
