* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: 'Poppins', sans-serif;
        background-color: var(--background-color-dark);
        color: var(--text-color-dark);
        transition: background-color 0.3s ease, color 0.3s ease;
        line-height: 1.6;
      }

      body.light-mode {
        background-color: var(--background-color-light);
        color: var(--text-color-light);
      }

      .sr-only {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        margin: -1px !important;
        overflow: hidden !important;
        clip: rect(0,0,0,0) !important;
        white-space: nowrap !important;
        border: 0 !important;
      }

      .coming-soon {
        background-color: var(--accent-color);
        color: var(--text-color-light);
        text-align: center;
        padding: 10px;
        font-size: 14px;
        font-weight: 500;
        position: sticky;
        top: 0;
        z-index: 999;
      }

     .fa-arrow-right {
        transform: rotate(-45deg);
      }

      .coming-soon a {
        color: var(--text-color-light);
        text-decoration: none;
        font-weight: 600;

        text-decoration: underline;
      }

      .coming-soon a:hover {
        text-decoration: underline;
      }

      .theme-toggle {
        position: fixed;
        top: 80px;
        right: 20px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1000;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.3s ease;
      }

      .theme-toggle:hover {
        transform: scale(1.1);
        background: rgba(255, 255, 255, 0.15);
      }

      body.light-mode .theme-toggle {
        background: rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.1);
      }

      .theme-toggle i {
        position: absolute;
        transition: opacity 0.3s ease;
      }

      .theme-toggle .fa-moon {
        opacity: 1;
      }

      .theme-toggle .fa-sun {
        opacity: 0;
      }

      body.light-mode .theme-toggle .fa-moon {
        opacity: 0;
      }

      body.light-mode .theme-toggle .fa-sun {
        opacity: 1;
      }

      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 5%;
        z-index: 100;
        background: rgba(15, 18, 20, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      body.light-mode nav {
        background: rgba(245, 245, 245, 0.8);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      }

      nav img {
        width: 80px;
        height: auto;
      }

      .menu ul {
        display: flex;
        list-style: none;
        gap: 30px;
      }

      .menu a {
        color: var(--text-color-dark);
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        text-transform: lowercase;
        transition: color 0.3s ease;
      }

      body.light-mode .menu a {
        color: var(--text-color-light);
      }

      .menu a:hover {
        color: var(--accent-color);
      }

      .support-btn {
        color: var(--text-color-dark);
        font-weight: 500;
        font-size: 16px;
        text-transform: lowercase;
        cursor: pointer;
        transition: color 0.3s ease;
      }

      body.light-mode .support-btn {
        color: var(--text-color-light);
      }

      .support-btn:hover {
        color: var(--accent-color);
      }

      /* Store Page Styles */
      .store-hero {
        text-align: center;
        padding: 60px 5% 40px;
        max-width: 1200px;
        margin: 0 auto;
        line-height: 1;
      }

      .store-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        background: linear-gradient(90deg, #b2a3ff, #ffa3d4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .store-hero p {
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto 30px;
        color: var(--menu-content-color-dark);
      }

      body.light-mode .store-hero p {
        color: var(--menu-content-color-light);
      }

      .category-filter {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 40px;
      }

      .category-btn {
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 30px;
        color: var(--text-color-dark);
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
      }

      body.light-mode .category-btn {
        background: rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.1);
        color: var(--text-color-light);
      }

      .category-btn:hover, .category-btn.active {
        background: var(--accent-color);
        color: var(--text-color-light);
        transform: translateY(-2px);
      }

      .affiliate-section {
        max-width: 1200px;
        margin: 0 auto 60px;
        padding: 0 5%;
      }

      .affiliate-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        text-align: center;
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
      }

      .affiliate-section h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #b2a3ff, #ffa3d4);
        border-radius: 3px;
      }

      /* Carousel Styles */
      .carousel-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        margin-bottom: 40px;
        padding: 10px 0;
        overflow-x: scroll;
        
        /* Hide scrollbar for Chrome, Safari and Opera */
        -webkit-overflow-scrolling: touch;
        }

        .carousel-container::-webkit-scrollbar {
        display: none;
        }

        /* Hide scrollbar for IE, Edge and Firefox */
        .carousel-container {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
        }


      .carousel-track {
        display: flex;
        gap: 20px;
        transition: transform 0.5s ease-in-out;
        will-change: transform;
      }

      .affiliate-item {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 25px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
        max-width: 320px;
        flex-shrink: 0;
      }

      .affiliate-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
        border: 1px solid rgba(255, 255, 255, 0.25);
      }

      body.light-mode .affiliate-item {
        background-color: #e0e0e0;
        border: 1px solid #d1d1d1;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      }

      body.light-mode .affiliate-item:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        border: 1px solid #b2a3ff;
      }

      .affiliate-item img {
        width: 150px;
        height: 200px;
        object-fit: contain;
        border-radius: 4px;
      }

      .affiliate-item h3 {
        font-size: 18px;
        font-weight: 500;
        min-height: 54px;
        display: flex;
        align-items: center;
      }

      .affiliate-item p {
        font-size: 14px;
        line-height: 1.5;
        color: var(--menu-content-color-dark);
        flex-grow: 1;
      }

      body.light-mode .affiliate-item p {
        color: var(--menu-content-color-light);
      }

      .affiliate-button {
        display: inline-block;
        padding: 10px 25px;
        background-color: var(--accent-color);
        color: var(--text-color-light);
        border-radius: 0.3rem;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        width: 100%;
      }

      .affiliate-button:hover {
        background-color: var(--accent-hover);
      }

      .carousel-nav {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
      }

      .carousel-btn {
        background: var(--accent-color);
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.3s ease, opacity 0.3s ease;
        color: white;
      }

      .carousel-btn:hover:not(:disabled) {
        background: var(--accent-hover);
      }

      .carousel-btn:disabled {
        background: rgba(178, 163, 255, 0.5);
        cursor: not-allowed;
        opacity: 0.5;
      }

      .more-button {
        text-align: center;
        text-decoration: underline;
        margin-top: 20px;
        cursor: pointer;
        color: var(--accent-color);
        font-weight: 500;
      }

      .more-button:hover {
        color: var(--accent-hover);
      }

      footer {
        text-align: center;
        padding: 40px 5%;
        margin-top: 60px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--menu-content-color-dark);
      }

      body.light-mode footer {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        color: var(--menu-content-color-light);
      }

      .footer-links {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-bottom: 20px;
      }

      .footer-links a {
        color: var(--menu-content-color-dark);
        text-decoration: none;
        transition: color 0.3s ease;
      }

      body.light-mode .footer-links a {
        color: var(--menu-content-color-light);
      }

      .footer-links a:hover {
        color: var(--accent-color);
      }

      /* Responsive Styles */
      @media (max-width: 768px) {
        .store-hero h1 {
          font-size: 2rem;
        }
        
        .category-filter {
          gap: 10px;
        }
        
        .category-btn {
          padding: 8px 16px;
          font-size: 14px;
        }
        
        .footer-links {
          flex-direction: column;
          gap: 15px;
        }
        
        nav {
          padding: 15px 5%;
        }
        
        .menu ul {
          gap: 20px;
        }
      }

      @media (max-width: 480px) {
        .store-hero h1 {
          font-size: 1.8rem;
        }
        
        .theme-toggle {
          top: 70px;
          right: 15px;
          width: 45px;
          height: 45px;
        }
      }
a{
    text-decoration: none;
    color: inherit;
}

@media (max-width: 414px) {
  .donations {
    font-size: 0.7em;
    padding: 8px 12px;
  }
  .coming-soon{
    padding: 8px 8px;
    font-size: 12px;
  }
}

.footer{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-top: 140px;
    margin-bottom: 140px;
    padding: 0 5%;
}

.footer-left{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 40%;
    padding-right: 140px;
}

.footer-left p{
    font-size: 12px;
    color: #89908b;
}

.footer-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    column-gap: 60px;
}

.footer-grid div{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-grid div h4{
    font-size: 14.8;
    color: #89908b;
    font-weight: 400;
}
.footer-grid div p{
    font-size: 14px;
}

@media (max-width: 709px){
    .footer{
        flex-direction: column;
        gap: 40px;
    }
    .footer-left .rights{
        width: 300px;
    }

    .footer-grid{
        gap: 30px;
    }
}

.pwlogo img{
    width: 25px;
    vertical-align: middle;
}

.fa-copy{
    cursor: pointer;
    font-weight: 200;
}

.btn{
  margin-left: 6px;
}