/* Responsible Gaming CSS */

.responsible-gaming-main {
    padding: 2rem 0 4rem;
    background: linear-gradient(135deg, #fdf2f8, #f3e8ff);
    min-height: 100vh;
}

.responsible-hero {
    background: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-highlight {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem auto 0;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-highlight i {
    color: #f59e0b;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hero-highlight span {
    color: #92400e;
    font-weight: 500;
    line-height: 1.5;
}

/* Important Notice */
.important-notice {
    margin-bottom: 3rem;
}

.notice-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    border-left: 4px solid #f59e0b;
}

.notice-icon {
    color: #f59e0b;
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.notice-content h2 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.notice-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Warning Signs */
.warning-signs {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sign-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sign-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sign-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f87171, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.sign-card h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.sign-card ul {
    list-style: none;
    padding: 0;
}

.sign-card li {
    color: #666;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.sign-card li::before {
    content: '•';
    color: #ef4444;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Self Assessment */
.self-assessment {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.assessment-card {
    background: #f3f4f6;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.assessment-card p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.assessment-questions {
    margin-bottom: 2rem;
}

.question-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.question-number {
    background: #8b5cf6;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.question-text {
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

.assessment-note {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.assessment-note p {
    color: #92400e;
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}

/* Gaming Controls */
.gaming-controls {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.controls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.control-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.control-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.control-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #34d399, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.control-card h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.control-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.control-card ul {
    list-style: none;
    padding: 0;
}

.control-card li {
    color: #666;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.control-card li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Support Resources */
.support-resources {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.resource-logo {
    margin-bottom: 1.5rem;
}

.resource-logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.resource-info h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.resource-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-contact p {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.resource-contact a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
}

.resource-contact a:hover {
    text-decoration: underline;
}

/* Age Verification */
.age-verification {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.age-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.age-info,
.age-resources {
    background: #f3f4f6;
    padding: 2rem;
    border-radius: 12px;
}

.age-info h3,
.age-resources h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.age-info p,
.age-resources p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.age-info ul,
.age-resources ul {
    list-style: none;
    padding: 0;
}

.age-info li,
.age-resources li {
    color: #666;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.age-info li::before,
.age-resources li::before {
    content: '•';
    color: #8b5cf6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Support */
.contact-support {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.support-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.support-card h2 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-card p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.support-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.support-info {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.support-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.support-info a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
}

.support-info a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .notice-card {
        flex-direction: column;
        text-align: center;
    }

    .signs-grid,
    .controls-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .age-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .support-buttons {
        flex-direction: column;
        align-items: center;
    }

    .question-item {
        flex-direction: column;
        text-align: center;
    }

    .question-number {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .notice-card,
    .sign-card,
    .control-card,
    .resource-card,
    .age-info,
    .age-resources {
        padding: 1.5rem;
    }

    .support-card h2 {
        font-size: 1.8rem;
    }

    .hero-highlight {
        flex-direction: column;
        text-align: center;
    }
}
