 body {
     font-family: 'Arial', sans-serif;
     margin: 0;
     padding: 0;
     color: white;
     background: linear-gradient(90deg, #4e54c8, #8f94fb);
 }

 .header {
     color: white;
     padding: 20px 40px;
     display: center;
     align-items: center;
     text-align: center;
     margin: auto;
 }

 .logo {
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     gap: 5px;
 }

 .logo_image img {
     width: 50px;
     height: 50px;
     border-radius: 50%;
 }

 .logo_text {
     font-size: 24px;
     font-weight: bold;
 }

 .body {
     text-align: center;
     padding: 60px 20px 40px;
 }

 .des {
     font-size: 19px;
     line-height: 1px;
     max-width: 700px;
     width: 80%;
     margin: 0 auto 20px;
     line-height: 1.6;
     font-weight: 500;
 }

 .ad {
     font-size: 17px;
     color: whitesmoke;
     font-weight: 600;
     margin-bottom: 30px;
     background-color: #8f94fb;
     width: fit-content;
     max-width: 70%;
     margin: auto;
     padding: 16px 30px;
     line-height: 1.8rem;
     border-radius: 10px;
 }

 .buy {
     display: inline-block;
     padding: 15px 40px;
     background: #4e54c8;
     color: black;
     font-weight: bold;
     border-radius: 30px;
     cursor: pointer;
     transition: background 0.3s ease;
 }

 .buy:hover {
     background: #8f94fb;
 }

 .info {
     margin-top: 40px;
     font-size: 14px;
     color: #777;
     display: flex;
     justify-content: center;
     gap: 20px;
 }

 .end {
     height: 100px;
 }

 .info-boxes {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-top: 40px;
 }

 .box {
     background: #fff;
     padding: 20px;
     border-radius: 10px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     width: 150px;
     text-align: center;
 }

 .box div:first-child {
     font-weight: bold;
     font-size: 16px;
 }

 .box h2 {
     font-weight: bold;
     font-size: 16px;
     margin: 0;
     color: rgb(46, 50, 53);
 }

 #token-status,
 #token-symbol,
 #token-date {
     margin-top: 10px;
     font-size: 18px;
     color: #4e54c8;
 }

 .copy-token-container {
     margin-top: 20px;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 #token-mint {
     padding: 10px 15px;
     width: 300px;
     height: 44px;
     /* fixed height */
     border: 2px solid #cccddf6d;
     border-right: none;
     /* connect with button */
     border-radius: 12px 0 0 12px;
     background: #cccddf6d;
     color: #fff;
     text-align: center;
     font-size: 17px;
     outline: none;
     transition: all 0.3s ease;
     box-sizing: border-box;
 }

 #token-mint:focus {
     box-shadow: 0 0 8px rgba(78, 84, 200, 0.5);
 }

 .copy-btn {
     width: 44px;
     /* same height as input */
     height: 44px;
     border: 2px solid #cccddf6d;
     border-left: none;
     /* connect with input */
     border-radius: 0 12px 12px 0;
     background: #cccddf6d;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     box-sizing: border-box;
 }

 .copy-btn:hover {
     background: #9597d2;
 }

 .copy-btn img {
     width: 26px;
     height: 20px;
     filter: brightness(0) invert(1);
     /* white icon */
 }

 .buy-section {
     max-width: 900px;
     text-align: center;
     padding: 20px;
 }

 .buy-methods {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
     justify-content: center;
 }

 .buy-card {
     background: linear-gradient(145deg, #ffffff, #f0f0f3);
     border-radius: 16px;
     padding: 15px 12px;
     width: 200px;
     display: flex;
     flex-direction: column;
     align-items: center;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

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

 .buy-method-name {
     font-size: 16px;
     font-weight: 600;
     margin-bottom: 15px;
     color: #333;
 }

 .buy-btn {
     font-size: 16px;
     padding: 10px 20px;
     border: none;
     border-radius: 12px;
     background: #2a76f1;
     color: #fff;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     width: 80%;
 }

 .buy-btn:hover {
     transform: translateY(-2px);
     background: linear-gradient(135deg, #3b3fc1, #6f70f5);
 }