body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.2);
    color: #4a3931;
}

header {
    background-color: rgba(255, 248, 240, 0.8);
    padding: 50px 20px;
    text-align: center;
    backdrop-filter: blur(5px);
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #8a5e49;
}

header p {
    font-size: 1.2em;
    color: #6d4c41;
}

.carousel-section {
    padding: 20px;
    position: relative;
    overflow: hidden;
    max-width: 900px; 
    margin: 0 auto;
}

.carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.carousel {
    width: 100%;
    margin: 0 auto;
}


.carousel > div {
    margin: 0 10px; 
}

.carousel img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    opacity: 0.9;
    transition: transform 0.5s ease-in-out;
    filter: saturate(1.1) contrast(1.05);
    transform: scale(1.0);
}

.carousel img:hover {
    opacity: 1;
}


.slick-list {
    overflow: hidden;
}

.slick-track {
    display: flex; 
    align-items: center; 
}

.slick-slide {
    height: auto; 
    margin: 0 10px;

}

.slick-slide > div {
    margin: 0 10px; 
}

.slick-slide img {
    display: block; 
    width: 100%;

}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 30px;
    line-height: 1;
    opacity: .75;
    color: #a57c69;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: 5px;
}

.slick-next {
    right: 5px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 24px;
}

.slick-prev:before {
    content: '\2190';
}

.slick-next:before {
    content: '\2192';
}

/* Platforms Section */
.platforms-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #f2e8cf;
}

.platforms-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #8a5e49;
}

.featured-image {
    margin: 20px auto;
    max-width: 860px;
}
.featured-image img {
    width: 100%;
    border-radius: 10px;
}

/* Benefits Section */
.benefits {
    background-color: #fffaf0;
    padding: 30px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.platforms-container {
    background-color: #fffaf0;
    padding: 30px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.benefits h3 {
    color: #735244;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefits li {
    padding-left: 25px;
    position: relative;
    text-align: left;
    font-size: 1.1em;
    color: #4a3931;
}

.benefits li:before {
    content: '\25CF';
    color: #a57c69;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
}

/* Platform Cards */
.platform {
    flex: 1;
    background-color: #f8f0e3;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.platform:hover {
    transform: translateY(-5px);
}

.platform h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #735244;
    font-size: 1.3em;
}

.platform h4 img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* Buttons */
.join-button {
    background-color: #a57c69;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.join-button:hover {
    background-color: #8a5e49;
    transform: scale(1.02);
}

.patreon-button {
    background-color: #FF424D;
}

.patreon-button:hover {
    background-color: #e23744;
}

.deviantart-button {
    background-color: #00E59B;
}

.deviantart-button:hover {
    background-color: #00cc8b;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #f8f0e3;
    border-top: 1px solid #eee;
    color: #77635b;
    font-size: 0.9em;
}

/* Responsive Design */
@media (min-width: 768px) {
    .platform {
        display: inline-block;
        width: calc(50% - 40px);
        margin: 20px;
        vertical-align: top;
    }
}

@media (max-width: 767px) {
    .benefits ul {
        grid-template-columns: 1fr;
    }
    .platforms-container {
        flex-direction: column;
        padding: 20px;
    }

    .platform {
        margin: 10px 0;
    }

    .carousel-section {
        max-width: 95%;
        padding: 10px;
    }

    .carousel {
        width: 100%;
    }

    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1.1em;
    }
}