
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body,
      html {
        height: 100vh;
        overflow: hidden;
        font-family: "Cormorant Garamond", serif;
      }

      body {
        background: linear-gradient(
          135deg,
          #8b7b6b 0%,
          #a69584 50%,
          #8b7b6b 100%
        );
        position: relative;
      }
      /* Dekstop */
      @media (min-width: 768px) {
        section {
          padding: 48px 64px;
        }

        .wedding-opening .opening-text p,
        .wedding-profile .profile-text p {
          font-size: 16px;
        }

        .wedding-opening .opening-text h2,
        .wedding-profile .profile-text h3 {
          font-size: 24px;
        }
      }

      /* end dekstop */
      /* Background ornaments */
      body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q50,10 80,20 Q70,50 80,80 Q50,70 20,80 Q30,50 20,20 Z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>')
          repeat;
        opacity: 0.3;
        pointer-events: none;
      }

      .container {
        width: 100vw;
        /* height: 100vh; */
        max-width: 375px;
        margin: 0 auto;
        background: rgba(139, 123, 107, 0.95);
        position: relative;
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }

      /* Main content */
      .main-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 25px 25px 30px 25px;
        text-align: center;
        color: white;
        position: relative;
      }

      /* Top section */
      .top-section {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      /* Logo */
      .logo {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #d4a574 0%, #f2d49b 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 700;
        color: #8b7b6b;
        font-style: italic;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        margin-bottom: 15px;
      }

      /* Title */
      .title {
        font-family: "Playfair Display", serif;
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 6px;
        color: #f5f5dc;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        margin-bottom: 20px;
      }

      /* Photo section */
      .photo-section {
        position: relative;
        margin: 0 auto;
      }

      .photo-container {
        width: 220px;
        height: 280px;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        margin: 0 auto;
        position: relative;
      }

      .photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      /* Side texts - positioned outside photo */
      .photo-text-left {
        position: absolute;
        left: -114px;
        top: 65%;
        transform: translateY(-50%) rotate(-90deg);
        font-size: 18px;
        color: rgba(255, 255, 255, 0.7);
        letter-spacing: 0.8px;
        font-weight: 300;
        white-space: nowrap;
        transform-origin: center;
      }

      .photo-text-right {
        position: absolute;
        right: -120px;
        top: 40%;
        transform: translateY(-50%) rotate(90deg);
        font-size: 18px;
        color: rgba(255, 255, 255, 0.7);
        letter-spacing: 0.8px;
        font-weight: 300;
        white-space: nowrap;
        transform-origin: center;
      }

      /* Bottom section */
      .bottom-section {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      /* Names */
      .names {
        font-family: "Playfair Display", serif;
        font-size: 22px;
        font-weight: 400;
        letter-spacing: 4px;
        color: #f5f5dc;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        margin-bottom: 12px;
      }

      /* Heart */
      .heart {
        font-size: 16px;
        color: #f5f5dc;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        margin-bottom: 20px;
      }

      /* Event details */
      .event-details {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.4;
        font-weight: 400;
        margin-bottom: 20px;
      }

      .event-details .kepada {
        font-weight: 500;
        margin-bottom: 2px;
      }

      .event-details .guest-name {
        font-weight: 500;
        color: #f2d49b;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        margin-bottom: 8px;
        font-size: 22px;
      }

      .event-details .venue {
        font-weight: 400;
        opacity: 0.85;
        font-size: 11px;
      }

      /* Button */
      .invitation-button {
        background: rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 0.8px;
        backdrop-filter: blur(5px);
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }

      .invitation-button:hover {
        background: rgba(0, 0, 0, 0.6);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-1px);
      }

      .invitation-button::before {
        content: "🏠";
        font-size: 10px;
      }

      /* Floating particles */
      .particle {
        position: absolute;
        width: 3px;
        height: 3px;
        background: rgba(255, 255, 255, 0.25);
        border-radius: 50%;
        animation: float 8s ease-in-out infinite;
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0px) rotate(0deg);
          opacity: 0.3;
        }
        50% {
          transform: translateY(-15px) rotate(180deg);
          opacity: 0.7;
        }
      }

      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .main-content > * {
        animation: fadeInUp 0.6s ease-out forwards;
      }

      .top-section > *:nth-child(1) {
        animation-delay: 0.1s;
      }
      .top-section > *:nth-child(2) {
        animation-delay: 0.2s;
      }
      .photo-section {
        animation-delay: 0.3s;
      }
      .bottom-section > *:nth-child(1) {
        animation-delay: 0.4s;
      }
      .bottom-section > *:nth-child(2) {
        animation-delay: 0.5s;
      }
      .bottom-section > *:nth-child(3) {
        animation-delay: 0.6s;
      }
      .bottom-section > *:nth-child(4) {
        animation-delay: 0.7s;
      }

      /* Responsive for smaller screens */
      @media (max-width: 320px) {
        .main-content {
          padding: 20px 20px 25px 20px;
        }

        .photo-container {
          width: 200px;
          height: 250px;
        }

        .names {
          font-size: 20px;
          letter-spacing: 3px;
        }

        .title {
          font-size: 16px;
          letter-spacing: 5px;
        }

        .photo-text-left,
        .photo-text-right {
          font-size: 8px;
        }
      }

      /* Ensure no overflow */
      .container * {
        max-width: 100%;
      }

      /* Global Reset */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      section {
        padding: 24px 16px;
        font-family: "Helvetica Neue", sans-serif;
        color: #333;
      }
      section.wedding-opening {
        /* padding: 24px 16px; */
        font-family: "Helvetica Neue", sans-serif;
        color: #333;
        background-color: #ffffff;
        margin-top: 35px;
      }

      /* Opening Text */
      .opening-text p {
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 12px;
      }

      .opening-text h2 {
        font-size: 18px;
        text-align: center;
        font-weight: bold;
        color: #000;
        margin-bottom: 24px;
      }

      /* Couple Profile */
      .couple-profile {
        display: flex;
        flex-direction: column;
        gap: 32px;
      }

      .person img {
        width: 100%;
        border-radius: 12px;
        object-fit: cover;
        margin-bottom: 12px;
      }

      .person h3 {
        font-size: 20px;
        text-align: center;
        font-weight: bold;
        margin-bottom: 8px;
        line-height: 1.4;
      }

      .person p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 8px;
        line-height: 1.6;
      }

      .person a {
        display: block;
        text-align: center;
        font-size: 14px;
        color: #0077cc;
        text-decoration: none;
      }

      section.wedding-photo-highlight {
        object-fit: contain;
        background-size: contain;
        margin-top: 16px;
        background-repeat: no-repeat;
        background-position: center;
      }
      .wedding-photo-highlight {
        padding: 24px 16px;
      }

      .wedding-photo-highlight .photo-wrapper {
        width: 100%;
        overflow: hidden;
        border-radius: 12px;
        margin-top: -44px;
      }

      .wedding-photo-highlight .photo-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
      }

      /* Save the Date */
      .save-date-card {
        margin: 32px auto;
        padding: 24px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        max-width: 360px;
        text-align: center;
        color: #fff;
      }

      .save-date-card h2 {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 12px;
      }

      .save-date-card p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
      }

      /* Countdown */
      .countdown {
        display: flex;
        justify-content: space-between;
        gap: 12px;
      }

      .countdown div {
        flex: 1;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 12px 8px;
        box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2);
      }

      .countdown span {
        display: block;
        font-size: 20px;
        font-weight: bold;
        color: #fff;
      }

      .countdown label {
        font-size: 12px;
        color: #eee;
        margin-top: 4px;
      }

      .wedding-event-section {
  padding: 32px 16px;
  background: no-repeat center;
  background-size: cover;
}

.event-card {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 24px;
  max-width: 360px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.event-card h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}

.event-card > p {
  font-size: 14px;
  margin-bottom: 24px;
}

.event-detail {
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.event-detail h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.event-detail p {
  font-size: 14px;
  margin-bottom: 4px;
}

.location-button {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.location-button:hover {
  background: rgba(255, 255, 255, 0.4);
}
/* Gallery Section */
.gallery-section {
    background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(160, 82, 45, 0.8));
    color: #fff;
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #ffd700;
}

.gallery-container {
    margin-bottom: 40px;
}

.gallery-subtitle {
    text-align: center;
    color: #8b4513;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.gallery-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-slider.landscape .gallery-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-slider.portrait .gallery-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.gallery-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.gallery-slide {
    min-width: 100%;
    padding: 0;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #8b4513;
    z-index: 2;
    transition: all 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: #fff;
    color: #8b4513;
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 3px solid rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .gallery-slider.landscape .gallery-slide img {
        height: auto;
        max-height: 100vh;
        object-fit: contain;
    }

    .gallery-slider.portrait .gallery-slide img {
        height: auto;
        max-height: 100vh;
        object-fit: contain;
    }
    
    .gallery-slide {
        min-width: 100%;
        padding: 0;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .gallery-slide img {
        height: auto;
        max-height: 100vh;
        max-width: 100%;
        width: auto;
        object-fit: contain;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .gallery-slider {
        padding: 0;
        margin: 0;
        height: 100vh;
    }

    .wedding-info .container {
        padding: 40px 15px;
    }

    .info-content {
        padding: 20px;
        margin: 0 15px;
    }

    .couple-title {
      color: #ffffff;
        font-size: 2em;
    }
}
.wedding-verse-section {
  padding: 32px 16px;
  /* background: url('/path-to-floral-background.jpg') no-repeat center; */
  background-size: cover;
}

.verse-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 24px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.verse-text {
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 12px;
}

.verse-ref {
  font-size: 14px;
  font-weight: bold;
  color: #eee;
}
.thank-you-section {
  padding: 32px 16px;
  /* background: url('/path-to-floral-background.jpg') no-repeat center; */
  background-size: cover;
}

.thank-you-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 24px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.thank-you-card h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 16px;
}

.thank-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.closing-text {
  font-size: 14px;
  font-style: italic;
  margin-bottom: 8px;
}

.couple-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

.family-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 13px;
  line-height: 1.6;
}

@media (min-width: 600px) {
  .family-info {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  color: #ebb812;
  text-decoration: none;
}

.nav-item img {
  width: 20px;
  height: 20px;
  margin-bottom: 4px;
  filter: brightness(0) invert(1); /* putihkan ikon */
}
.nav-item.active span {
  font-weight: bold;
  color: #ffcc00;
}
#bottomNav {
  display: none;
  opacity: 0;
}
.wedding-footer {
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: #fff;
  font-family: 'Helvetica Neue', sans-serif;
  height: 275px;
}

.footer-content p {
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.footer-note {
  font-size: 11px;
  color: #ccc;
}
.social-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  color: #8b4513;
  font-size: 24px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #cd853f;
  transform: translateY(-2px);
}

/* Music Button */
/* Default tersembunyi */
.music-button {
    position: fixed;
    bottom: 50px;
    left: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid #8b4513;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Saat dimunculkan */
.music-button.show {
    opacity: 1;
    visibility: visible;
}

.music-button i {
    color: #8b4513;
    font-size: 20px;
}

.music-button.playing {
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.music-button:hover {
    transform: scale(1.1);
    background: #fff;
}
/* RSVP Section */
.rsvp-section {
  background: linear-gradient(
    rgba(222, 184, 135, 0.9),
    rgba(210, 180, 140, 0.9)
  );
  color: #8b4513;
}

.rsvp-content {
  max-width: 500px;
  text-align: center;
}

.rsvp-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.rsvp-subtitle {
  font-size: 16px;
  margin-bottom: 40px;
}

.rsvp-form {
  background: rgba(255, 255, 255, 0.3);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 20px;
}
style.css */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid #4CAF50;
    color: #2E7D32;
}

.notification.error {
    border-left: 4px solid #f44336;
    color: #c62828;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid rgba(139, 69, 19, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  color: #8b4513;
  font-size: 16px;
  font-family: "Georgia", serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8b4513;
}

.submit-btn {
  background: #8b4513;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: "Georgia", serif;
}

.submit-btn:hover {
  background: #a0522d;
  transform: translateY(-2px);
}

/* Wishes Section */
.wishes-section {
  background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(160, 82, 45, 0.8));
  color: #fff;
}

.wishes-content {
  max-width: 600px;
}

.wishes-title {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

.wishes-list {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.wish-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
  backdrop-filter: blur(10px);
}

.wish-avatar {
  width: 50px;
  height: 50px;
  background: rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
  font-size: 20px;
  flex-shrink: 0;
}

.wish-content-text {
  flex: 1;
}

.wish-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #ffd700;
}

.wish-message {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
  opacity: 0.9;
}

.wish-time {
  font-size: 0.8em;
  color: #0f0d0d;
  margin-top: 5px;
}

/* Wedding Gift Section */
.wedding-gift {
  background: linear-gradient(rgba(182, 103, 12, 0.8), rgba(160, 82, 45, 0.8));
  color: #fff;
  height: 575px;
}

.gift-content {
  max-width: 500px;
  text-align: center;
}

.gift-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.gift-subtitle {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.gift-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.gift-option {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(10px);
}

.bank-logo {
  font-size: 32px;
  color: #ffd700;
  min-width: 60px;
}

.bank-info {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bank-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.account-number {
  font-size: 20px;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 5px;
  letter-spacing: 1px;
  word-break: break-word;
}

.account-name {
  font-size: 14px;
  opacity: 0.8;
}

.copy-btn {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: #ffd700;
  color: #8b4513;
}

.gift-address {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.gift-address h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ffd700;
}