/* Freebies Page Styles */

.freebies-main {
    padding: 40px 80px 120px;
    max-width: 1600px;
    margin: 0 auto;
}

.freebies-hero {
    text-align: center;
    margin-bottom: 80px;
}

.freebies-hero-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 8px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.freebies-hero-description {
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Playlists Section */
.playlists-section {
    margin-bottom: 100px;
}

.playlists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.playlist-card {
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.playlist-card:hover {
    transform: translateY(-10px);
    opacity: 0.8;
}

.playlist-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.playlist-title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
}

/* Upgrade Section */
.upgrade-section {
    background: #7a5905;
    background: linear-gradient(39deg, rgba(122, 89, 5, 1) 0%, rgba(10, 15, 27, 1) 30%, rgba(7, 49, 103, 1) 65%, rgba(245, 249, 252, 1) 100%);
    padding: 60px 40px;
    text-align: center;
    width: 100%;
}

.upgrade-content {
    max-width: 800px;
    margin: 0 auto;
}

.upgrade-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.upgrade-description {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

.upgrade-btn {
    display: inline-block;
    padding: 15px 50px;
    background: #8B5CF6;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.upgrade-btn:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 137, 249, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .freebies-main {
        padding: 60px 40px 80px;
    }

    .freebies-hero-title {
        font-size: 36px;
        letter-spacing: 5px;
    }

    .freebies-hero-description {
        font-size: 20px;
    }

    .playlists-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 30px;
    }

    .upgrade-title {
        font-size: 28px;
    }

    .upgrade-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .freebies-main {
        padding: 40px 20px 60px;
    }

    .freebies-hero {
        margin-bottom: 50px;
    }

    .freebies-hero-title {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .freebies-hero-description {
        font-size: 16px;
    }

    .playlists-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .playlists-section {
        margin-bottom: 60px;
    }

    .upgrade-section {
        padding: 40px 20px;
    }

    .upgrade-title {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .upgrade-description {
        font-size: 16px;
    }

    .upgrade-btn {
        padding: 12px 40px;
        font-size: 16px;
    }
}
