body {
    font-family: 'Roboto Slab', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
a {
    color: #333;
    text-decoration: none;
    transition: color 200ms ease;
}
a:hover {
    color: #555;
}

.page-content {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.hero {
    background: linear-gradient(to bottom, #ffffff, #f0f0f0);
    text-align: center;
    padding: 50px 20px;
    border-bottom: 1px solid #e0e0e0;
}
.hero h1 {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}
.hero p {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}
.hero-interaction {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.hero .cta-button {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 1em;
    color: #fff;
    background-color: #555;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 200ms ease;
}
.hero .cta-button:hover {
    background-color: #333;
    transition: background-color 200ms ease;
}
.discord-invite {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 1em;
    color: #fff;
    background-color: #5865f2;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 200ms ease, color 200ms ease;
}
.discord-invite:hover {
    background-color: #4752c4;
    color: #fff;
    transition: background-color 200ms ease, color 200ms ease;
}

.trending-items {
    margin: 30px 0;
    text-align: center;
}
.trending-items-title {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 1.8em;
    color: #333;
    margin: 0;
    margin-bottom: 40px;
}
.trending-items-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}
.trending-item-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-sizing: border-box;
    transition: transform 200ms ease, box-shadow 200ms ease;
}
.trending-item-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    transition: transform 200ms ease-in, box-shadow 200ms ease;
    cursor: pointer;
}
.trending-item-card img {
    width: auto;
    height: auto;
    max-height: 180px;
    border-radius: 10px;
    object-fit: contain;
}
.trending-item-card h3 {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 1.2em;
    color: #333;
    margin: 12px 0 0 0;
}
.trending-item-card p {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 1em;
    color: #555;
    margin: 0;
}
@media (max-width: 768px) {
    .trending-items-list {
        gap: 10px;
    }
    .trending-item-card {
        width: 150px;
        padding: 12px;
    }
    .trending-item-card img {
        max-height: 80px;
    }
    .trending-item-card h3 {
        font-size: 0.7em;
    }
    .trending-item-card p {
        font-size: 0.5em;
    }
}
.trending-items-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.trending-items-footer a {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 1.3em;
    color: #333;
    text-decoration: underline;
    margin: 0 10px;
    transition: color 200ms ease;
}
.trending-items-footer a:hover {
    color: #666666;
    transition: color 200ms ease;
}

.register {
    background-color: #333;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
}
.register-title {
    font-size: 2em;
    color: #fff;
    text-decoration: underline #ff3333;
    margin: 0;
    margin-bottom: 20px;
    text-align: center;
}
.register-button {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 1em;
    background-color: #ff3333;
    border: 2px solid #fff;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 200ms ease;
}
.register-button:hover {
    background-color: #cc3333;
    transition: background-color 200ms ease;
    color: #fff;
    cursor: pointer;
}

.features {
    background: linear-gradient(to top, #ffffff, #f0f0f0);
    padding: 50px 20px;
    text-align: center;
}
.features h2 {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 2em;
    color: #333;
    margin: 0;
    margin-bottom: 30px;
}
.feature-list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin: 0 auto;
    padding: 0;
}
.feature {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 300px;
    min-height: 200px;
    max-width: 380px;
    box-sizing: border-box;
    text-align: center;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 200ms ease, box-shadow 200ms ease;
    cursor: pointer;
}
@media (max-width: 768px) {
    .feature {
        width: calc(100% - 20px);
        max-height: 220px;
    }
}
.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.feature img {
    width: 35px;
    height: 35px;
    margin-bottom: 15px;
    margin: 0 auto;
}
.feature h3 {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}
.feature p {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 1em;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero {
        padding: 30px 10px;
    }
    .hero h1 {
        font-size: 1.8em;
    }
    .hero p {
        font-size: 1em;
    }

    .features {
        padding: 30px 10px;
    }
    .features h2 {
        font-size: 1.5em;
    }
    .feature-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .feature {
        padding: 20px;
        margin-bottom: 20px;
    }
    .feature img {
        width: 30px;
        height: 30px;
        margin-bottom: 10px;
    }
    .feature h3 {
        font-size: 1em;
    }
    .feature p {
        font-size: 0.9em;
    }
}