/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  background-color: #f5f5f7;
  color: #1d1d1f;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Header Styles */
header {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: center;
  padding: 0.8rem 1rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link a {
  color: #f5f5f7;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.5rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0071e3;
  transition: width 0.3s ease;
}

.nav-link a:hover {
  color: #ffffff;
}

.nav-link a:hover::after {
  width: 100%;
}

/* CTA Button in Navigation */
.nav-link.cta-nav a {
  background: linear-gradient(90deg, #0071e3, #00a1ff);
  color: white !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 113, 227, 0.3);
}

.nav-link.cta-nav a::after {
  display: none;
}

.nav-link.cta-nav a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4);
  background: linear-gradient(90deg, #0062c4, #0088ff);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  padding: 6rem 2.4rem 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  color: white;
  flex: 1;
  padding-right: 2rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  background: linear-gradient(90deg, #fff, #a0a0a0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
  max-width: 90%;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 400px;
}

.primary-btn {
  background: linear-gradient(90deg, #0071e3, #00a1ff);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 113, 227, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4);
  background: linear-gradient(90deg, #0062c4, #0088ff);
}

.trust-badge {
  color: #a0a0a0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-badge::before,
.trust-badge::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-banner {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
}

.hero-banner img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  width: auto;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Rewards Section */
.rewards {
  padding: 6rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.rewards-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.reward-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background: #f5f5f7;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.reward-card.popular {
  border-color: #0071e3;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 113, 227, 0.2);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0071e3;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.reward-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #1d1d1f;
  margin: 1rem 0;
  background: linear-gradient(135deg, #0071e3, #00a1ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reward-card.popular .reward-amount {
  font-size: 3.5rem;
}

.reward-details p {
  color: #86868b;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.reward-btn {
  background: linear-gradient(90deg, #0071e3, #00a1ff);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 80%;
  margin: 0 auto;
}

.reward-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 113, 227, 0.3);
  background: linear-gradient(90deg, #0062c4, #0088ff);
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 2rem;
  background-color: #f5f5f7;
  text-align: center;
}

.testimonials-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  color: #1d1d1f;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: #0071e3;
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  font-weight: 600;
  color: #0071e3;
  font-size: 0.9rem;
}

/* FAQ Section */
.faq {
  padding: 8rem 2rem;
  background-color: #f5f5f7;
  margin: 0 auto;
  width: 100%;
}

.section-title {
  text-align: center;
  color: #1d1d1f;
  font-size: 2.5rem;
  margin: 0 auto 3rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #0071e3, #00a1ff);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.faq-item {
  margin-bottom: 1.2rem;
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.faq-question {
  padding: 1.5rem 2rem;
  background-color: #fff;
  cursor: pointer;
  font-weight: 500;
  color: #1d1d1f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  font-size: 1.1rem;
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  background-color: #f5f5f7;
  color: #0071e3;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid transparent;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  margin: 0;
  color: #424245;
  line-height: 1.7;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease 0.1s;
}

.faq-item.active {
  border-color: #0071e3;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  border-top-color: #f0f0f0;
}

.faq-item.active .faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

.faq-item.active .faq-question {
  color: #0071e3;
  background-color: #f5f5f7;
}

.toggle-icon {
  font-size: 1.5rem;
  color: #86868b;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
  font-weight: 300;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
  color: #0071e3;
}

/* Products Section */
.products{
  padding: 3.2rem 2.8rem;
  background-color: #f5f5f7;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.product-card{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f5f7;
  padding: 2.4rem 1.6rem;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  overflow: hidden;
}

.product-description{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.product-title{
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 1px 1px 10px rgba(0,0,0,0.3);
}

.btn-group{
  margin-bottom: 1rem;
}

.primary,
.secondary{
  border: none;
  border-radius: 1.6rem;
  padding: 0.8rem 1.2rem;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.primary{
  color: #fff;
  background-color: #0071e3;
}

.primary:hover{
  cursor: pointer;
  background-color: #0160c0;
}

.secondary{
  color: #0071e3;
  border: 1px solid #0071e3;
}

.secondary:hover{
  cursor: pointer;
  color:white;
  background-color: #0077ed;
}

.product4{
  background-color: black;
  color: white;
}

.product-image{
  width: 100%;
  transition: all 0.1s;
}

.product-image:hover{
  transform: scale(1.04);
}

/* Tv Section */

.apple-tv{
  background-color: black;
  padding: 16rem 2.4rem;
}

.tv-container{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.tv-container .details{
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tv-container .details .title{
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
}

.tv-container .details .desc{
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.subscription{
  margin-bottom: 0.6rem;
  padding: 1rem 6rem;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  border-radius: 0.3rem;
  background-color: white;
  transition: all 0.3s;
}

.subscription:hover{
  cursor: pointer;
  background-color: rgb(223, 218, 218);
}

.price{
  color: #4d4d4d;
}

.tv-logo{
  width: 30%;
}

/* Tv  Products */

.tv-products{
  padding: 4rem 1rem;
  background-color: #f5f5f7;
}

.product-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 2rem;
}

.product-box img{
  width: 50%;
  max-width: 500px;
  height: auto;
  margin-bottom: 1.4rem;
  object-fit: contain;
}

.product-desc h1{
  text-align: center;
  font-size: 6.2rem;
  font-weight: 700;
  
}

.product-desc p{
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #86868b;
}

/* Footer */

.footer{
  padding: 3.2rem 6.4rem 0rem 6.4rem;
  background-color: #444445;
}

.footer-grid{
  color: #ccc;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  padding: 0 12rem;
}

.footer-title{
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-card{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.footer-card a{
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-card a:hover{
  color: #fff;
}

.footer p{
  text-align: center;
  color: #ccc;
  padding: 1rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  padding: 20px;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #ffffff;
  margin: 0;
  padding: 16px;
  border-radius: 16px;
  max-width: 720px;
  width: 92%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  color: #1d1d1f;
  animation: modalFadeIn 0.4s ease-out;
  border: 1px solid #e0e0e0;
  max-height: 88vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Center the gift card view inside the modal */
.gift-card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Gift card view primary action */
.unlock-btn {
  background: linear-gradient(90deg, #0071e3, #00a1ff);
  color: #ffffff;
  border: none;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 113, 227, 0.3);
  margin-top: 12px;
}

.unlock-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 113, 227, 0.35);
  background: linear-gradient(90deg, #0062c4, #0088ff);
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: 300;
  color: #86868b;
  cursor: pointer;
  transition: color 0.3s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-btn:hover {
  color: #1d1d1f;
  background-color: #f5f5f7;
}

.locker-header {
  text-align: center;
  margin-bottom: 16px;
}

.locker-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #1d1d1f;
  font-weight: 600;
}

.locker-header p {
  color: #86868b;
  font-size: 16px;
  margin-bottom: 0;
}

.gift-card-highlight {
  background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  margin: 12px 0 16px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gift-card {
  width: 90%;
  max-width: 220px;
  height: 110px;
  margin: 10px auto;
  padding: 12px;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.gift-card-header {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  color: #a0aec0;
  font-weight: 600;
}

.amount {
  font-size: 20px;
  font-weight: 800;
  color: white;
  text-align: center;
  margin-top: 15px;
}

.brand {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 12px;
  font-weight: 700;
  color: white;
}

.brand-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
}

.brand-icon svg {
  width: 16px;
  height: 16px;
}

.gift-card-text {
  font-size: 14px;
  color: #86868b;
  font-weight: 500;
}

/* Offerwall Container */
.offerwall-container {
  margin: 1rem 0 0;
}

.offerwall-offer {
  display: flex;
  align-items: center;
  background: #f5f5f7;
  border-radius: 12px;
  padding: 0.6rem 0.7rem;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  margin-bottom: 0.8rem;
}

/* Compact modal offer row typography to save vertical space */
.modal .offer-icon {
  font-size: 1.2rem;
  min-width: 28px;
}
.modal .offer-details h3 {
  font-size: 0.95rem;
}
.modal .offer-details p {
  font-size: 0.8rem;
}

/* Limit offers by default on desktop to prevent cropping */
/* Desktop shows all offers */

.offerwall-offer:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  border-color: #d2d2d7;
}

.offer-icon {
  font-size: 1.6rem;
  margin-right: 1rem;
  min-width: 40px;
  text-align: center;
  color: #0071e3;
}

/* Circular network icon container */
.offer-icon-img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 1rem;
}
.offer-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-details {
  flex: 1;
}

.offer-details h3 {
  margin: 0 0 0.2rem 0;
  color: #1d1d1f;
  font-size: 1rem;
  font-weight: 600;
}

.offer-details p {
  margin: 0;
  color: #86868b;
  font-size: 0.85rem;
}

.offer-btn {
  background: linear-gradient(90deg, #0071e3, #00a1ff);
  color: white;
  border: none;
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-left: 0.6rem;
  font-size: 0.85rem;
}

.offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 113, 227, 0.3);
  background: linear-gradient(90deg, #0062c4, #0088ff);
}

.offerwall-footer {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.offerwall-footer p {
  color: #86868b;
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.5;
}

/* Animations */
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes modalContentSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalContentFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content-animated {
  animation: modalContentSlideIn 0.6s ease-out forwards;
}

.modal-content-fade-in {
  animation: modalContentFadeIn 0.4s ease-out forwards;
}

/* Header Animation */
.locker-header-animated {
  animation: modalContentSlideIn 0.6s ease-out 0.1s both;
}

/* Gift Card Highlight Animation */
.gift-card-highlight-animated {
  animation: modalContentSlideIn 0.6s ease-out 0.2s both;
}

/* Offer Wall Container Animation */
.offerwall-container-animated {
  animation: modalContentSlideIn 0.6s ease-out 0.3s both;
}

/* Offer Wall Footer Animation */
.offerwall-footer-animated {
  animation: modalContentSlideIn 0.6s ease-out 0.4s both;
}

/* Close Button Animation */
.close-btn-animated {
  animation: modalContentFadeIn 0.3s ease-out 0.5s both;
}

/* Gift Card Code Animation */
.code-segment {
  display: inline-block;
  transition: all 0.5s ease;
}

.code-segment.obscured {
  color: transparent;
  background: #000;
  border-radius: 4px;
  padding: 2px 4px;
  margin: 0 2px;
  position: relative;
  overflow: hidden;
}

.code-segment.obscured::after {
  content: "####";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: monospace;
  font-weight: bold;
  font-size: inherit;
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.slide-up {
  animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Loading Screen */
.loading-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 2rem;
  text-align: center;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 113, 227, 0.2);
  border-top: 5px solid #0071e3;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1.5rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-text {
  font-size: 1.2rem;
  color: #1d1d1f;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.loading-subtext {
  font-size: 0.9rem;
  color: #86868b;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .modal {
    padding: 10px;
  }
  
  .modal-content {
    margin: 2% auto;
    padding: 15px 10px;
    width: 95%;
    max-height: 85vh;
    overflow-y: auto;
  }
  
  .close-btn {
    right: 15px;
    top: 15px;
    font-size: 24px;
  }
  
  .locker-header {
    margin-bottom: 15px;
  }
  
  .locker-header h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .locker-header p {
    font-size: 14px;
  }
  
  .gift-card-highlight {
    padding: 15px 10px;
    margin: 15px 0 20px;
  }
  
  .gift-card {
    width: 90%;
    max-width: 180px;
    height: 90px;
    margin: 10px auto;
    padding: 10px;
  }
  
  .gift-card-header {
    font-size: 8px;
    top: 10px;
    left: 10px;
  }
  
  .amount {
    font-size: 18px;
    margin-top: 12px;
  }
  
  .brand {
    font-size: 11px;
    bottom: 10px;
    left: 10px;
  }
  
  .brand-icon svg {
    width: 14px;
    height: 14px;
  }
  
  .gift-card-text {
    font-size: 13px;
  }
  
  .offerwall-container {
    margin: 1rem 0;
  }
  
  .offerwall-offer {
    flex-direction: row;
    align-items: center;
    padding: 0.8rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
  }
  
  .offer-icon {
    font-size: 1.4rem;
    margin-right: 0;
    margin-bottom: 0.6rem;
  }
  
  .offer-details {
    width: auto;
    flex: 1 1 calc(100% - 56px);
    margin-bottom: 0;
  }
  
  .offer-details h3 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
  }
  
  .offer-details p {
    font-size: 0.8rem;
  }
  
  .offer-btn {
    margin-left: 0;
    width: 100%;
    padding: 0.6rem;
    font-size: 0.8rem;
    margin-top: 0.6rem;
  }
  
  .offerwall-footer {
    margin-top: 1rem;
    padding-top: 1rem;
  }
  
  .offerwall-footer p {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .modal-content {
    margin: 1% auto;
    padding: 12px 8px;
    width: 98%;
    max-height: 82vh;
  }
  
  .locker-header h2 {
    font-size: 20px;
  }
  
  .locker-header p {
    font-size: 13px;
  }
  
  .gift-card-highlight {
    padding: 12px 8px;
    margin: 10px 0 15px;
  }
  
  .gift-card {
    width: 90%;
    max-width: 160px;
    height: 80px;
    margin: 8px auto;
    padding: 8px;
  }
  
  .gift-card-header {
    font-size: 7px;
    top: 8px;
    left: 8px;
  }
  
  .amount {
    font-size: 16px;
    margin-top: 10px;
  }
  
  .brand {
    font-size: 10px;
    bottom: 8px;
    left: 8px;
  }
  
  .brand-icon svg {
    width: 12px;
    height: 12px;
  }
  
  .gift-card-text {
    font-size: 12px;
  }
  
  .offerwall-offer {
    padding: 0.6rem;
    margin-bottom: 0.5rem;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .offer-details {
    width: auto;
    flex: 1 1 calc(100% - 56px);
  }

  .offer-btn {
    width: 100%;
    margin-left: 0;
    margin-top: 0.6rem;
  }
  
  .offer-icon {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  
  .offer-details h3 {
    font-size: 0.9rem;
  }
  
  .offer-details p {
    font-size: 0.75rem;
  }
  
  .offer-btn {
    padding: 0.5rem;
    font-size: 0.75rem;
  }
  
  .offerwall-footer p {
    font-size: 0.7rem;
  }
  
  /* Limit offers on small mobile to improve fit */
  .offerwall-offer:nth-child(n+4) {
    display: none;
  }
}