:root {
    --emph6:black;
} 


.premium-wrapper{
    position: relative;
    width: 100%;
    display:flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    padding-bottom: 25vh;
}

.premium-content {
    display:flex;
    width: 90%;
    max-width: 1200px;
    justify-content: space-between;
    margin-top: 60px;
    gap:30px;
}

.premium-plan {
    z-index: 1;
    background-color: white;
    border-radius: 15px;
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
}

.premium-plan h2{
    margin-top:0px;
}

.buy-button {
    text-decoration: none;
    border-radius: 8px;
    color: white;
    display: inline-block;
    padding: 8px 16px;
    background-color: black;
}

#twoweeks {
    background: white;
    border: 1px solid #919191;
}

#onemonth {
    background: #F7F7F7;   
    border: 1px solid #D6D6D6;
}

#sixmonths {
    background: linear-gradient(45deg, #FFEDD9, #FFD7BF);
    box-shadow: 0px 0px 100px rgba(215, 95, 0, 0.25); /* Soft shadow */
    border: 2px solid #FFC98F;
    
}


.access-list {
    line-height: 1.8; /* Adjust vertical spacing */
}

.access-list i {
    margin-right: 10px; /* Space between icon and text */
}

.access-list span {
    margin-bottom: -40px !important; /* Space under the heading */
    display: block;
    text-align: center;
}

.gumroad-button {
    background-color: black !important;
    color:white !important;
}

a.gumroad-button:hover:not(:disabled) {
    background-color: rgb(var(--accent));
    --color: var(--contrast-accent);
    --parent-color: inherit;
    color: rgb(var(--color));
    --active-bg: rgb(var(--color)/0.1);
    box-shadow: .25rem .25rem 0rem white !important; /* Red shadow */
  }
  
  .premo {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    background-color: white;
    z-index: 2;
    padding: 20px 60px;
    border: 1px solid rgba(250, 127, 0, 0.2);
  }

  .kaka{
    margin-top: 0px !important;
  }

  .premo p{
    font-size: 20px;
    margin-top: -10px;
  }
  

.premo h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-top: 10px;
    color: var(--darkgrey);
}

.premium-plan h1 {
    font-weight: 500;
}

.description {
    text-align: center;
}

/* Mobile-friendly styles for screens 768px or smaller */
@media (max-width: 768px) {

    .premium-wrapper {
        /* margin-top: 20px !important; */
        margin-bottom:20px !important;
    }
    .premium-content {
        flex-direction: column;
    }

    .premium-plan {
        padding: 10px !important;
    }

}
.plan-badge {
    display: inline-block;
    background: #ffde59;
    color: #000;
    font-weight: bold;
    font-size: 13px;
    padding: 3px 8px;
    border-radius: 8px;
    margin-top: 5px;
  }
  
