/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    color: white;
    overflow-x: hidden;
  }
  
  /* Main Container */
  .main-container {
    min-height: 100vh;
    background: linear-gradient(to bottom, #065f46, #022c22);
    position: relative;
    overflow: hidden;
  }
  
  .content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    position: relative;
    z-index: 10;
  }
  
  /* Loader */
  .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #022c22;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease-out;
  }
  
  .loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .loader-moon {
    animation: pulse 2s infinite;
  }
  
  .loader-moon i {
    font-size: 4rem;
    color: #fcd34d;
  }
  
  .orbiting-stars {
    position: absolute;
    top: 35%;
    /* left: 50%; */
    /* transform: translate(-50%,0%); */
    width: 8rem;
    height: 8rem;
  }
  
  .star-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: spin linear infinite;
  }
  
  .star-orbit i {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fef3c7;
    opacity: 0.8;
    font-size: 1rem;
  }
  
  .loader-text {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fcd34d;
    animation: bounce 1s infinite;
  }
  
  .loader-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  
  .loader-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #fcd34d;
    animation: bounce 1s ease-in-out infinite;
  }
  
  /* Floating Elements */
  .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .floating-element {
    position: absolute;
    opacity: 0.3;
    transition: transform 0.5s ease-out;
  }
  
  /* Header */
  .header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .moon-icon {
    font-size: 3rem;
    color: #fcd34d;
  }
  
  .star-icon {
    font-size: 2.5rem;
    color: #fcd34d;
  }
  
  .title {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(to right, #fcd34d, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .subtitle {
    font-size: 1.25rem;
    color: #fef3c7;
    max-width: 32rem;
    margin: 0 auto;
  }
  
  /* Grid Layout */
  .grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  @media (min-width: 768px) {
    .grid-container {
      grid-template-columns: 1fr 1fr;
    }
    
    .wishes-section {
      order: 1;
    }
    
    .qr-section {
      order: 2;
    }
    
    .title {
      font-size: 5rem;
    }
    
    .subtitle {
      font-size: 1.5rem;
    }
  }
  
  /* Wishes Section */
  .wishes-section {
    order: 2;
  }
  
  .wishes-card {
    background-color: rgba(6, 95, 70, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(4, 120, 87, 0.5);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  .section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #fcd34d;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .wishes-carousel {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .wish-text {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
  }
  
  .carousel-button {
    background: transparent;
    border: none;
    color: #fcd34d;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 9999px;
    transition: background-color 0.3s;
  }
  
  .carousel-button:hover {
    background-color: rgba(252, 211, 77, 0.2);
  }
  
  .carousel-indicators {
    display: flex;
    gap: 0.25rem;
  }
  
  .indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: rgba(252, 211, 77, 0.3);
  }
  
  .indicator.active {
    background-color: #fcd34d;
  }
  
  /* QR Code Section */
  .qr-section {
    order:1;
  }
  #eidi{
    width: 25px;
    height: 25px;
    filter: grayscale(50%);
  }
  .qr-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(252, 211, 77, 0.3);
  }
  
  .qr-header {
    background: linear-gradient(to right, rgba(245, 158, 11, 0.2), rgba(252, 211, 77, 0.2));
    padding: 1.5rem 1rem 1rem;
    text-align: center;
  }
  
  .qr-title {
    font-size: 1.5rem;
    color: #fcd34d;
    margin-bottom: 0.5rem;
  }
  
  .qr-description {
    color: #fef3c7;
  }
  
  .qr-content {
    padding: 1.5rem;
    display: flex;
    justify-content: center;
  }
  
  .qr-code-container {
    position: relative;
    width: 16rem;
    height: 16rem;
    background-color: rgba(255, 255, 255, 0.529);
    border-radius: 0.5rem;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }
  
  .qr-code {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .qr-code img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  .qr-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background-color: #f59e0b;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
  }
  
  .qr-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
  }
  
  .upi-id {
    color: #fef3c7;
    font-size: 0.875rem;
  }
  
  .copy-button {
    background: transparent;
    color: #fcd34d;
    border: 1px solid rgba(252, 211, 77, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .copy-button:hover {
    background-color: rgba(252, 211, 77, 0.2);
  }
  
  /* Footer */
  .footer {
    margin-top: 5rem;
    text-align: center;
  }
  
  .footer-text {
    color: rgba(254, 243, 199, 0.7);
    animation: pulse 2s infinite;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.7;
    }
  }
  
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  .fade-in {
    animation: fadeIn 1.5s ease-out forwards;
  }
  
  .slide-up {
    animation: slideUp 1s ease-out forwards;
  }