/* Responsible Gambling Page Styles */

/* Hero Section */
.dk-res-hero-wrapper {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
}

.dk-res-hero-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #f8f9fa, transparent);
}

.dk-res-hero-content {
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.dk-res-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dk-res-hero-description {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Section Styles */
.dk-res-section {
    padding: 80px 20px;
    background: white;
}

.dk-res-section:nth-child(even) {
    background: #f8f9fa;
}

.dk-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dk-section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: #1a1a1a;
    position: relative;
    padding-bottom: 15px;
}

.dk-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    border-radius: 2px;
}

/* Tools Grid */
.dk-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.dk-tool-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dk-tool-card:hover {
    transform: translateY(-10px);
}

.dk-tool-icon {
    width: 64px;
    height: 64px;
    fill: #1a2a6c;
}

.dk-tool-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.dk-tool-description {
    color: #666;
    line-height: 1.6;
}

/* Warning Section */
.dk-warning-section {
    background: linear-gradient(135deg, #fff5f5, #fff0f0);
    border-radius: 20px;
    padding: 40px;
    margin: 40px auto;
    max-width: 1000px;
}

.dk-warning-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.dk-warning-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.dk-warning-text {
    color: #1a1a1a;
    font-size: 1.1rem;
    line-height: 1.6;
}

.dk-warning-highlight {
    text-align: center;
    color: #b21f1f;
    font-weight: 500;
    font-size: 1.2rem;
    margin-top: 30px;
}

/* Support Section */
.dk-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.dk-support-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dk-support-card:hover {
    transform: translateY(-10px);
}

.dk-support-logo {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    margin: 0 auto 20px;
    object-fit: cover;
}

.dk-support-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.dk-support-description {
    color: #666;
    margin-bottom: 20px;
}

.dk-support-button {
    display: inline-block;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.dk-support-button:hover {
    transform: translateY(-3px);
}

/* Help Section Styles */
.dk-help-section-v78 {
    margin: 40px 0;
}

.dk-help-text-n34 {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.dk-help-grid-m56 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.dk-help-link-x89 {
    display: flex;
    align-items: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dk-help-link-x89:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.dk-help-link-img-k23 {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dk-help-link-content-w67 {
    flex: 1;
}

.dk-help-link-title-p45 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.dk-help-link-text-j78 {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.dk-age-restriction-t45 {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: white;
}

.dk-age-restriction-t45 .dk-help-link-title-p45,
.dk-age-restriction-t45 .dk-help-link-text-j78 {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dk-res-section {
        padding: 60px 20px;
    }
    
    .dk-warning-section {
        padding: 30px 20px;
        margin: 30px 20px;
    }
    
    .dk-help-grid-m56 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dk-help-link-x89 {
        padding: 20px;
    }
    
    .dk-help-link-img-k23 {
        width: 70px;
        height: 70px;
        margin-right: 20px;
    }
    
    .dk-help-link-title-p45 {
        font-size: 1.2rem;
    }
    
    .dk-help-link-text-j78 {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .dk-res-hero-wrapper {
        min-height: 50vh;
        padding: 40px 20px;
    }
    
    .dk-help-link-x89 {
        padding: 15px;
    }
    
    .dk-help-link-img-k23 {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }
}