.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

header {
background-color: rgba(0, 0, 0, 0.9);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
padding: 15px 0;
transition: all 0.3s ease;
}

header.scrolled {
background-color: rgba(0, 0, 0, 0.95);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
display: flex;
align-items: center;
}

.logo img {
height: 40px;
}

.nav-links {
display: flex;
list-style: none;
}

.nav-links li {
margin-left: 30px;
}

.nav-links a {
font-weight: 700;
font-size: 16px;
transition: color 0.3s;
}

.nav-links a:hover {
color: var(--spotify-green);
}

.mobile-menu {
display: none;
font-size: 24px;
cursor: pointer;
}

.hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(29, 185, 84, 0.2)), 
  url('Images/Home-Background.jpg');
  background-size: cover;
  background-position: center;
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
}

.black-friday-badge {
  background: linear-gradient(45deg, var(--black-friday-red), var(--black-friday-orange));
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  display: inline-block;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
  animation: pulse 2s infinite;
}

.black-friday-badge::before {
  content: "★";
  margin-right: 8px;
  font-size: 14px;
}

.black-friday-badge::after {
  content: "★";
  margin-left: 8px;
  font-size: 14px;
}
.hero h1 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
#spotify-premium-span {
  color: var(--spotify-green);
  background: linear-gradient(45deg, var(--spotify-green), #1ed760);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.deal-highlight {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 13px;
  color: var(--spotify-white);
}
.price-comparison {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 35px;
  gap: 25px;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.old-price {
  text-decoration: line-through;
  color: var(--spotify-light-gray);
  font-size: 22px;
  font-weight: 600;
  opacity: 0.8;
}
.new-price {
  font-size: 42px;
  font-weight: 900;
  color: var(--spotify-green);
  text-shadow: 0 2px 8px rgba(29, 185, 84, 0.3);
}
.cta-button {
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50px;
  padding: 22px 65px;
  font-size: 20px;
  font-weight: 800;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  animation: pulseButton 2s infinite;
  border: 2px solid transparent;
  color: var(--spotify-black);
  background: linear-gradient(135deg, var(--spotify-green), #1ed760);
}
.cta-button:hover {
  transform: scale(1.08);
  border-color: rgba(255, 255, 255, 0.2);
}

@keyframes pulseButton {
0% {
  transform: scale(1);
}
50% {
  transform: scale(1.05);
}
100% {
  transform: scale(1);
}
}

.urgency-text {
  margin-top: 15px;
  font-size: 16px;
  color: var(--spotify-light-gray);
  font-weight: 600;
}
.urgency-text strong {
  color: var(--black-friday-orange);
}

.urgency-text::before {
  content: "⏱";
  margin-right: 8px;
  font-size: 14px;
}

.features {
padding: 100px 0;
background-color: var(--section-bg);
}
.section-title {
text-align: center;
font-size: 40px;
font-weight: 900;
margin-bottom: 70px;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}
.feature-card {
background-color: var(--card-bg);
border-radius: 8px;
padding: 30px;
text-align: center;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.05);
}
.feature-card:hover {
background-color: #252525;
transform: translateY(-5px);
}
.feature-icon {
width: 80px;
height: 80px;
background-color: rgba(29, 185, 84, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
color: var(--spotify-green);
font-size: 32px;
}
.feature-card h3 {
font-size: 24px;
margin-bottom: 15px;
}
.feature-card p {
color: var(--spotify-light-gray);
font-size: 16px;
}

.how-it-works {
padding: 100px 0;
background-color: var(--section-bg);
}
.steps {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-top: 50px;
}
.step {
flex: 1;
min-width: 250px;
text-align: center;
padding: 0 20px;
margin-bottom: 30px;
}
.step-number {
width: 60px;
height: 60px;
background-color: var(--spotify-green);
color: var(--spotify-black);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 900;
margin: 0 auto 20px;
}
.step h3 {
font-size: 20px;
margin-bottom: 15px;
}
.step p {
color: var(--spotify-light-gray);
}

.faq {
padding: 100px 0;
background-color: var(--section-bg);
}
.faq-container {
max-width: 800px;
margin: 0 auto;
}
.faq-item {
margin-bottom: 15px;
border-radius: 8px;
overflow: hidden;
background-color: var(--card-bg);
}
.faq-question {
padding: 20px 25px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 700;
font-size: 18px;
transition: background-color 0.3s;
}
.faq-question:hover {
background-color: #252525;
}
.faq-answer {
padding: 0 25px 20px;
color: var(--spotify-light-gray);
display: none;
}
.faq-answer.active {
display: block;
}
.faq-toggle {
font-size: 24px;
transition: transform 0.3s;
}
.faq-toggle.rotate {
transform: rotate(45deg);
}

footer {
background-color: #000;
padding: 60px 0 30px;
}
.footer-content {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 40px;
}
.footer-column {
flex: 1;
min-width: 200px;
margin-bottom: 30px;
}
.footer-column h3 {
color: var(--spotify-light-gray);
font-size: 14px;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 1px;
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 15px;
}
.footer-links a {
color: var(--spotify-white);
transition: color 0.3s;
}
.footer-links a:hover {
color: var(--spotify-green);
}

.social-icons {
display: flex;
gap: 20px;
margin-top: 20px;
}
.social-icon {
width: 40px;
height: 40px;
background-color: var(--spotify-dark-gray);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
color: white;
}
.social-icon:hover {
background-color: var(--spotify-green);
transform: scale(1.1);
}

.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 30px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.footer-logo {
height: 40px;
margin-bottom: 20px;
}
.footer-links-bottom {
display: flex;
list-style: none;
flex-wrap: wrap;
}
.footer-links-bottom li {
margin-right: 20px;
margin-bottom: 10px;
}
.footer-links-bottom a {
color: var(--spotify-light-gray);
font-size: 12px;
transition: color 0.3s;
}
.footer-links-bottom a:hover {
color: var(--spotify-green);
}

.copyright {
color: var(--spotify-light-gray);
font-size: 12px;
width: 100%;
text-align: center;
margin-top: 20px;
}

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

@media (min-width: 992px) {
.features-grid {
  grid-template-columns: repeat(4, 1fr);
}
}

@media (max-width: 991px) and (min-width: 768px) {
.features-grid {
  grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
/*
.nav-links {
  display: none;
}
.mobile-menu {
  display: block;
}
*/
.nav-links {
  gap: -3px;
  flex-wrap: wrap;
  justify-content: center;
}
#download-li {
  display: none;
}

.hero h1 {
  font-size: 36px;
}
.hero p {
  font-size: 18px;
}

.price-comparison {
  flex-direction: column;
  gap: 10px;
}

.steps {
  flex-direction: column;
}
.step {
  margin-bottom: 40px;
}

.footer-content {
  flex-direction: column;
}
}

@media (min-width: 768px) {
.price-comparison {
  max-width: 50%;
}
}

@media (max-width: 480px) {
.hero h1 {
  font-size: 28px;
}
.hero p {
  font-size: 16px;
}
.section-title {
  font-size: 28px;
}
.feature-card {
  padding: 20px;
}
.faq-question {
  padding: 15px 20px;
  font-size: 16px;
}
}

