  
  body {
    
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

[data-bs-theme="dark"] .container {
    background-color: #0d1117;
}

.resources-section {
    padding: 50px 20px;
    margin-top: 30px;
    background-color: #fff; 
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .resources-section {
    background-color: #0d1117;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.resources-section h2 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: bold;
}

[data-bs-theme="dark"] .resources-section h2 {
    color: #dcdcdc;
}

.resources-section p,
.resources-section small {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    display: block;
}

[data-bs-theme="dark"] .resources-section p,
[data-bs-theme="dark"] .resources-section small {
    color: #bbbbbb;
}

.resources-list {
    list-style: none;
    padding: 0;
}

.resources-list li {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #495057;
}

[data-bs-theme="dark"] .resources-list li {
    color: #dddddd;
}

.resources-list a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s;
}

[data-bs-theme="dark"] .resources-list a {
    color: #66b3ff;
}

.resources-list a:hover {
    color: #0056b3;
    text-decoration: underline;
}

[data-bs-theme="dark"] .resources-list a:hover {
    color: #3399ff;
}

.datapack-section {
    position: relative;
    height: 500px;
    padding: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 3rem;
    color: white;
}

[data-bs-theme="dark"] .datapack-section img.chapter-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.4;
}

.datapack-section img.chapter-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.8;
}


.datapack-section > *:not(img) {
    position: relative;
    z-index: 1;
}
  
.datapack-section h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: white;
}

[data-bs-theme="dark"] .datapack-section h3 {
    color: #dcdcdc;
}

.datapack-section ul {
    list-style: none;
    padding: 0;
}

.datapack-section ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}
.datapack-section ul p {
color: #f0f0f0;
}

[data-bs-theme="dark"] .datapack-section ul li {
    color: #bbbbbb;
}

.section-divider {
    border-top: 2px solid #e9ecef;
    margin: 40px 0;
}

[data-bs-theme="dark"] .section-divider {
    border-top: 2px solid #444;
}

.small p {
    font-size: xx-small;
    color: #6c757d;
    margin-top: -10px;
    margin-bottom: 20px;
}

[data-bs-theme="dark"]  {
    background-color: #0d1117;
    color: white;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}