* {
    padding: 0;
    margin: 0;
}

body {
    background-color: rgb(34, 34, 34);
    font-family: "Montserrat", sans-serif;
}

/* Navigation Bar*/
nav {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.nav-music{
    display: flex;
    align-items: center;
    color: white;
    width: 48%;
}

.right-half-p1 {
    display: flex;
    align-items: center;
    height: 1.7rem;
    margin: 0 1rem;
    margin-left: 900px;
    padding: 0 1rem 0 0;
    border-right: 1px solid rgb(179, 179, 179);
}

.nav-text{
    padding: 0 0.5rem;
    display: inline-flex;      /* makes icon+text sit in a row */
    align-items: center;
    white-space: nowrap;
    font-weight: 600;
    color: rgb(179, 179, 179);
    transition: 0.1s;
    padding: 1.1rem;
}

.nav-text:hover {
    color: white;
    transform: scale(1.05);
    cursor: pointer;
}

.nav-text-circle{
    vertical-align: middle;
    background-color: white;
    width: 24px;
    height: 24px;
    -webkit-mask: url('/Icons/circle-down-solid-full.svg') no-repeat center / contain;
    mask: url('/Icons/circle-down-solid-full.svg') no-repeat center / contain;
}

.right-half-p2 {
    display: flex;
    align-items: center;
}

.login-btn {
    height: 3rem;
    width: 7rem;
    border-radius: 15rem;
    border: none;
    background-color: white;
    font-size: 1rem;
    font-weight: 700;
    margin: 1rem;
    transition: 0.2s;
}

.login-btn:hover{
    transform: scale(1.05);
}

/* ==== Banner ==== */
.ban{
    display: flex;
    position: relative;
    background-color: rgb(34, 34, 34);
    overflow: hidden;
    z-index: 0;
}

.ban::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(
        to bottom,
        rgba(128, 0, 255, 0.6),
        rgba(128, 0, 255, 0)
    );
    z-index: -1;
}

.ban-left{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 25px;
    height: 500px;
    width: 1000px;
    padding-left: 10rem;
    /* background-color: aqua; */
}

.ban-right{
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    height: 500px;
    width: 1000px;
    /* background-color: bisque; */
}

.ban-text{
    display: flex;
    align-items: center;
    height: 120px;
    width: 500px;
    font-size: 40px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: white;
    /* background-color: red; */
}

.ban-text-price{
    display: flex;
    align-items: center;
    height: 20px;
    width: fit-content;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200;
    color: white;
    /* background-color: brown; */
}

.ban-btn{
    display: flex;
    gap: 1rem;
}

.ban-btn-try{
    background-color: purple;
    color: black;
    font-weight: 600;
    border-radius: 10rem;
    padding: 0.8rem;
}

.ban-btn-plans{
    background-color: rgb(27, 27, 27);
    color: white;
    font-weight: 600;
    border-radius: 10rem;
    padding: 0.8rem;
}

.ban-btn-try:hover, .ban-btn-plans:hover {
    transform:  scale(1.05);
}

.ban-text-terms{
    color: white;
    display: flex;
    align-items: center;
    font-size: 13px;
    width: 500px;
    font-family: Arial, Helvetica, sans-serif;
    /* background-color: chartreuse; */
}


/* ==== Paid Plan Difference ==== */
.plan-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 160px;
    width: auto;
    /* background-color: aqua; */
}

.plan-title-head{
    display: flex;
    align-items: center;
    font-size: 40px;
    font-weight: 600;
    height: 50px;
    color: white;
    /* background-color: bisque; */
}

.plan-title-text{
    display: flex;
    align-items: center;
    font-size: 20px;
    height: 50px;
    color: white;
    /* background-color: aquamarine; */
}

.plan-com{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 2 rem auto;
    text-align: center;
    font-family: Arial, sans-serif;
    /* background-color: coral; */
}

.plan-com table{
    width: 40%;
    border-collapse: collapse;
    color: white;
}

.plan-com th, .plan-com td{
    padding: 0.8rem 1rem;
    border: 1px solid white;
}

.plan-com th{
    background-color: #202020;
    color: white;
    font-weight: bold;
}

.plan-yes{
    color: greenyellow;
}

.plan-no{
    color: gray;
}

/* ==== Card Paying Methods ==== */
.card-pay{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 160px;
    width: auto;
    padding-top: 100px;
    /* background-color: aqua; */
}

.card-pay-head{
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: white;
    /* background-color: bisque; */
}

.card-pay-text{
    display: flex;
    align-items: center;
    text-align: center;
    height: 60px;
    width: 900px;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: white;
    padding: 2rem;
    /* background-color: blueviolet; */
}

.card-option-img{
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}
.card-option-img img{
    height: 50px;
    width: auto;
}


/* ==== Premium benefits ==== */
.ben-con{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    width: auto;
    /* background-color: crimson; */
}

.ben-plan{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 170px;
    width: 500px;
    font-size: 30px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    /* background-color: blue; */
}

.ben-list{
    display: flex;
    flex-direction: column;
    height: 170px;
    width: 500px;
    /* background-color: blueviolet; */
}

.ben-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
}

.ben-list li{
    margin-bottom: 8px;
    color: white;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
}


/* ==== Premium Plans ==== */
.pre-con{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
    width: auto;
    gap: 50px;
    /* background-color: crimson; */
}

.pre-plan{
    background-color: #616161;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    width: 280px;
    height: 400px;
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    align-items: first baseline;
}

.pre-plan-top-indi{
    display: block;
    text-align: left;
    width: 250px;
    margin-bottom: 16px;
    margin-top: 15px;
}

.pre-plan-top-indi h3{
    font-size: 35px;
    font-weight: 700;
    color: rgb(255, 210, 215);
    margin-bottom: 8px;
    font-family: Arial, Helvetica, sans-serif;
    /* background-color: azure; */
}

.pre-price{
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.pre-price .pre-sub{
    font-size: 15px;
    color: rgb(196, 196, 196);
    display: block;
    margin-top: 4px;
}

.pre-plan-bottom{
    display: block;
    margin-top: 10px;
    height: fit-content;
    width: fit-content;
    /* background-color: blueviolet; */
}

.pre-plan-bottom ul{
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.pre-plan-bottom li{
    list-style-type: disc;
    font-size: 14px;
    color: white;
    font-weight: bold;
    padding-bottom: 5px; 
}

.pre-btn-indi{
    background-color:rgb(255, 210, 215);
    color: black;
    height: 40px;
    width: 290px;
    font-weight:bold;
    text-align: center;
    padding: 10px 0;
    border-radius: 30px;
    border: none;
    cursor: pointer; 
}

.pre-btn-indi:hover{
    transform:  scale(1.05);
}

.pre-plan-terms{
    display: flex;
    height: 110px;
    width: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 13px;
    color: white;
    padding-top: 10px;
    /* background-color: coral; */
}


.pre-plan-top-stu{
    display: block;
    text-align: left;
    width: 250px;
    margin-bottom: 16px;
    margin-top: 15px;
}

.pre-plan-top-stu h3{
    font-size: 35px;
    font-weight: 700;
    color: rgb(196, 177, 212);
    margin-bottom: 8px;
    font-family: Arial, Helvetica, sans-serif;
    /* background-color: azure; */
}

.pre-btn-stu{
    background-color:rgb(196, 177, 212);
    color: black;
    height: 40px;
    width: 290px;
    font-weight:bold;
    text-align: center;
    padding: 10px 0;
    border-radius: 30px;
    border: none;
    cursor: pointer; 
}

.pre-btn-stu:hover{
    transform:  scale(1.05);
}


.pre-plan-top-duo{
    display: block;
    text-align: left;
    width: 250px;
    margin-bottom: 16px;
    margin-top: 15px;
}

.pre-plan-top-duo h3{
    font-size: 35px;
    font-weight: 700;
    color: rgb(255, 200, 98);
    margin-bottom: 8px;
    font-family: Arial, Helvetica, sans-serif;
    /* background-color: azure; */
}

.pre-btn-duo{
    background-color:rgb(255, 200, 98);
    color: black;
    height: 40px;
    width: 290px;
    font-weight:bold;
    text-align: center;
    padding: 10px 0;
    border-radius: 30px;
    border: none;
    cursor: pointer; 
}

.pre-btn-duo:hover{
    transform:  scale(1.05);
}


/* ==== footer ==== */
.site-footer{
    background-color: linear-gradient(#0f0f0f, #090909);
    color: #dcdcdc;
    padding: 48px 20px;
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    font-size: 14px;
}

.footer-inner{
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 24px;
}

.footer-col {}

.footer-heading{
    color: #ffffff;
    font-weight: 700;
    margin: 0 0 12px 0;
    font-size: 15px;
}

.footer-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li{
    margin: 8px 0;
}

.footer-list a{
    color: #bfbfbf;
    text-decoration: none;
    transition: color .15s ease;
}

.footer-list a:hover, .footer-list a:focus{
    color: #ffffff;
    text-decoration: underline;
}

.footer-actions{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin: 8px 0 20px;
}

.footer-country select{
    background: #121212;
    color: #dcdcdc;
    border: 1px solid #2a2a2a;
    padding: 8px 10px;
    border-radius: 6px;
}

.footer-socials{
    display: flex;
    gap: 12px;
}

.social-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1f1f1f;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: background .15s ease, transform .15s ease;
}

.social-icon:hover { background: #21a600; transform: translateY(-2px); }

.footer-sep{
    border: none;
    border-top: 1px solid #222;
    margin: 18px 0;
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.legal-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.legal-list a{
    color: #9e9e9e;
    text-decoration: none;
    font-size: 13px;
}

.footer-bottom-right {
  color: #9e9e9e;
  font-size: 13px;
}

.visually-hidden{
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
    white-space: nowrap;
}

/* Responsiveness */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-actions { flex-direction: column; align-items: stretch; }
  .footer-socials { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-bottom-right { align-self: flex-start; }
}