.premium-ads-container{
    display: flex;
    flex-direction: column;
    padding: 80px 10px;
    background-color: #171b24;
    color: white;
    min-height: 100vh;
}

.title-holder{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.title{
    background: linear-gradient(30deg, #dd547f, #d88774);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    margin-bottom: 20px;
    margin-right: 20px;
}

.premium-overview-holder{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.phone-icon-holder{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 30%;
}

.phone-image{
    width: 85%;
    margin-bottom: 10px;
}

.app-download-links{
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-download-links a:hover img{
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.app-download-links img{
    width: 150px;
    margin: 0 10px;
}

.free-premium-holder{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    width: 70%;
    gap: 15px;
}

.feature-holder{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-items: left;
    width: 30%;
    padding: 20px;
    background-color: #1f232c;
    border-radius: 20px;
    height: 550px;
    box-shadow: 0 0 5px 0px rgba(253, 253, 253, 0.5); /* Glow effect */
}

.feature-holder h4{
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(30deg, #dd547f, #d88774);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    margin-bottom: 10px;
    margin: 10px auto;
}

.feature-holder h4 img{
    width: 30px;
    margin-right: 10px;
}

.feature-holder p{
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-holder p img{
    width: 20px;
    margin-right: 10px;
}

.doesnothave{
    text-decoration: line-through;
    color: #58595a !important;
}

.register-holder{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 20px;
}

.register-holder h3{
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(30deg, #dd547f, #d88774);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    margin-bottom: 10px;
    margin: 10px auto;
}

.register-holder p{
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.register-holder a{
    text-decoration: none;
    color: #ffffff;
    background-color: #dd547f;
    border: 1px solid #dd547f;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.register-holder a:hover{
    background-color: #1f232c;
    border: 1px solid #dd547f;
    color: white;
}

@media screen and (max-width: 768px) {
    .premium-ads-container {
        padding: 100px 10px;
    }

    .title-holder h2{
        font-size: 24px;
        text-align: center;
    }
    
    .title {
        text-align: center;
        font-size: 32px;
    }

    .register-holder h3{
        font-size: 20px;
    }
    
    .premium-overview-holder {
        flex-direction: column;
        align-items: center;
    }
    
    .free-premium-holder {
        flex-direction: column;
        width: 100%;
        margin-bottom: 20px;
        order: 1;
    }
    
    .phone-icon-holder {
        width: 100%;
        margin-bottom: 20px;
        order:2;
    }
    
    .app-download-links img {
        width: 120px;
    }
    
    .feature-holder {
        width: 90%;
        height: auto;
        margin-bottom: 20px;
    }
    
    .register-holder a {
        width: 100%;
        text-align: center;
    }
}