/* Policy Pages Specific Styles */

/* Policy Main Layout */
.policy-main {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 240, 248, 0.9), rgba(240, 230, 255, 0.9));
    min-height: 80vh;
}

/* Policy Header */
.policy-header {
    text-align: center;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 105, 180, 0.2);
}

.policy-header h1 {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.policy-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.last-updated {
    background: var(--gradient-card);
    color: var(--secondary-purple);
    padding: 0.8rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    border: 2px solid rgba(255, 105, 180, 0.3);
}

/* Policy Content */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-pink);
    transition: all 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 105, 180, 0.2);
}

.policy-section h2 {
    font-family: var(--font-accent);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-purple);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #666;
}

.policy-section li::before {
    content: '🌸';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.policy-section li strong {
    color: var(--secondary-purple);
    font-weight: 700;
}

/* Contact Info */
.contact-info {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 105, 180, 0.2);
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.contact-info strong {
    color: var(--secondary-purple);
}

/* Help Resources (for Responsible Gaming) */
.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 105, 180, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
    border-color: var(--primary-pink);
}

.resource-card h4 {
    font-family: var(--font-accent);
    color: var(--secondary-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Highlight Text */
.highlight-text {
    background: linear-gradient(135deg, #ff69b4, #9d4edd);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    border: none;
}

/* Active link in footer */
.footer-section .active {
    color: var(--primary-pink);
    font-weight: 600;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .policy-main {
        padding: 2rem 0;
    }

    .policy-header {
        padding: 2rem;
        margin-bottom: 2.5rem;
    }

    .policy-header h1 {
        font-size: 2.5rem;
    }

    .policy-subtitle {
        font-size: 1.1rem;
    }

    .policy-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .policy-section h2 {
        font-size: 1.6rem;
    }

    .help-resources {
        grid-template-columns: 1fr;
    }

    .resource-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-header {
        padding: 1.5rem;
    }

    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.4rem;
        flex-direction: column;
        text-align: center;
    }

    .last-updated {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}
