.whats-new-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whats-new-section h1 {
    text-align: center;
    color: #fff;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.content {
    color: #fff;
}

.main-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.feature-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
}

.feature-block h2 {
    color: #ff69b4;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-block h2 i {
    font-size: 1.5rem;
}

.feature-block p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-block ul {
    list-style-type: none;
    padding-left: 0;
}

.feature-block ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-block ul li:before {
    content: "•";
    color: #ff69b4;
    position: absolute;
    left: 0;
}

.feature-image {
    margin: 1.5rem 0;
    text-align: center;
}

.feature-gif {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.back-section {
    text-align: center;
    margin-top: 3rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .whats-new-section {
        margin: 1rem;
        padding: 1rem;
    }

    .whats-new-section h1 {
        font-size: 2rem;
    }

    .feature-block {
        padding: 1.5rem;
    }
} 