@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Welcome Page CSS Styles Start*/
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: "Inter", sans-serif;
   background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
   color: #ffffff;
   overflow-x: hidden;
   min-height: 100vh;
}

.container {
   margin: 0 auto;
   padding: 0 20px;
   min-height: 30vh;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   position: relative;
}

.background-pattern {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   opacity: 0.05;
   background-image: radial-gradient(circle at 25% 25%, #ff6b6b 0%, transparent 50%),
                     radial-gradient(circle at 75% 75%, #4ecdc4 0%, transparent 50%);
   animation: pulse 4s ease-in-out infinite alternate;
   z-index: -1;
}

@keyframes pulse {
   0% { opacity: 0.03; }
   100% { opacity: 0.08; }
}

.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
}

.title {
   font-size: 4rem;
   font-weight: 900;
   margin-bottom: 2rem;
   background: linear-gradient(45deg, #F7C12B, #ffffff, #F7C12B, #ffffff);
   background-size: 300% 300%;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   animation: gradientShift 3s ease-in-out infinite;
   opacity: 0;
   transform: translateY(50px);
   animation: fadeInUp 1s ease-out 0.5s forwards, gradientShift 3s ease-in-out infinite 1.5s;
}

@keyframes gradientShift {
   0%, 100% { background-position: 0% 50%; }
   50% { background-position: 100% 50%; }
}

@keyframes fadeInUp {
   to {
       opacity: 1;
       transform: translateY(0);
   }
}

.message {
   font-size: clamp(1.1rem, 3vw, 1.5rem);
   line-height: 1.8;
   margin-bottom: 3rem;
   opacity: 1;
   transform: translateY(30px);
}

.message p {
   animation: fadeInUp 1s ease-out forwards;
}

.message p:nth-child(1) { animation-delay: 1s; }
.message p:nth-child(2) { animation-delay: 1.3s; }
.message p:nth-child(3) { animation-delay: 1.6s; }
.message p:nth-child(4) { animation-delay: 1.9s; }

.highlight {
   color: #F7C12B;
   font-weight: bold;
   position: relative;
}

.highlight::after {
   content: '';
   position: absolute;
   bottom: -2px;
   left: 0;
   width: 0;
   height: 2px;
   background: linear-gradient(90deg, #F7C12B, #ffffff);
}


.cta-section {
   margin-top: 2rem;
   opacity: 0;
   transform: translateY(30px);
   animation: fadeInUp 1s ease-out 2.2s forwards;
}

.cta-button {
   margin-top: 20px;
   display: inline-block;
   padding: 18px 40px;
   font-size: 1.2rem;
   font-weight: bold;
   text-decoration: none;
   color: #000000;
   background: linear-gradient(45deg, #F7C12B, #ffffff);
   border-radius: 50px;
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
   text-transform: uppercase;
   letter-spacing: 1px;
   box-shadow: 0 10px 30px rgba(247, 193, 43, 0.3);
}

.cta-button::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
   transition: left 0.5s ease;
}

.cta-button:hover {
   transform: translateY(-3px);
   box-shadow: 0 15px 40px rgba(247, 193, 43, 0.4);
}

.cta-button:hover::before {
   left: 100%;
}

.particles {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
   z-index: -1;
}

.particle {
   position: absolute;
   width: 2px;
   height: 2px;
   background: #ffffff;
   border-radius: 50%;
   opacity: 0.3;
   animation: float 6s ease-in-out infinite;
}

@keyframes float {
   0%, 100% { transform: translateY(0px) rotate(0deg); }
   50% { transform: translateY(-20px) rotate(180deg); }
}

.scroll-indicator {
   position: absolute;
   bottom: 30px;
   left: 50%;
   transform: translateX(-50%);
   opacity: 0;
   animation: fadeIn 1s ease-out 3s forwards;
}

.scroll-arrow {
   width: 30px;
   height: 30px;
   border: 2px solid #ffffff;
   border-top: none;
   border-right: none;
   transform: rotate(-45deg);
   animation: bounce 2s infinite;
}

@keyframes bounce {
   0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(-45deg); }
   40% { transform: translateY(-10px) rotate(-45deg); }
   60% { transform: translateY(-5px) rotate(-45deg); }
}

@keyframes fadeIn {
   to { opacity: 1; }
}

@media (max-width: 768px) {
   .container {
       padding: 0 15px;
   }
   
   .message {
       font-size: 1.1rem;
   }
   
   .cta-button {
       padding: 15px 30px;
       font-size: 1rem;
   }
}

.header {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px;
   z-index: 1000;
   background: #000000;
   backdrop-filter: blur(10px);
}

.logo {
   display: flex;
   align-items: center;
   transform: translateY(-20px);
   animation: fadeInUp 1s ease-out 0.2s forwards;
   border: none;
}

.logo a{
   border: none;
}

.logo img{
width: 60px;
height: 60px;
margin-left: -15px;
}

.share-container {
   position: relative;
   opacity: 0;
   transform: translateY(-20px);
   animation: fadeInUp 1s ease-out 0.4s forwards;
}

.share-button {
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 12px;
   background: rgba(247, 193, 43, 0.1);
   border: 2px solid #F7C12B;
   border-radius: 50%;
   color: #F7C12B;
   cursor: pointer;
   transition: all 0.3s ease;
   width: 48px;
   height: 48px;
}

.share-dropdown {
   position: absolute;
   top: 100%;
   right: 0;
   margin-top: 10px;
   background: #000000;
   border: 2px solid #F7C12B;
   border-radius: 15px;
   /* padding: 10px 0; */
   min-width: 180px;
   opacity: 0;
   visibility: hidden;
   transform: translateY(-10px);
   transition: all 0.3s ease;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.share-dropdown.active {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}

.share-item {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 12px 20px;
   color: #ffffff;
   text-decoration: none;
   transition: all 0.3s ease;
   font-weight: 500;
}

.share-item:hover {
   background: rgba(247, 193, 43, 0.1);
   color: #F7C12B;
   padding-left: 25px;
}

.share-item svg {
   flex-shrink: 0;
}

/* Mobile responsiveness for header */
@media (max-width: 768px) {
   .header {
       padding: 15px 20px;
       flex-direction: row;
       justify-content: space-between;
   }
   
   .container {
       padding-top: 80px;
   }
   
      .title {
       font-size: 3rem;
   }
   
   .share-button {
       width: 40px;
       height: 40px;
       padding: 8px;
   }
   
   .share-dropdown {
       right: 0;
       transform: translateY(-10px);
   }
   
   .share-dropdown.active {
       transform: translateY(0);
   }
}

@media (max-width: 480px) {
   .header {
       padding: 10px 15px;
   }
   
   .container {
       padding-top: 70px;
       padding-left: 15px;
       padding-right: 15px;
   }
   
   
   .title {
       font-size: 2rem;
   }
   
   .message {
       font-size: 1rem;
   }
   
   .cta-button {
       padding: 12px 25px;
       font-size: 0.9rem;
   }
}

.container {
   padding-top: 100px;
}

/* Welcome Page CSS Styles End*/

/* Follow Page CSS Styles Start*/

.back-button {
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 10px 20px;
   background: rgba(247, 193, 43, 0.1);
   border: 2px solid #F7C12B;
   border-radius: 25px;
   color: #F7C12B;
   text-decoration: none;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   font-size: 0.9rem;
   opacity: 0;
   transform: translateY(-20px);
   animation: fadeInUp 1s ease-out 0.4s forwards;
}

.back-button:hover {
   background: #F7C12B;
   color: #000000;
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(247, 193, 43, 0.3);
}

.Follow_Wrapper,
.Success_Wrapper{
   padding: 0 20px;
   width: 100%;
   height: auto;
   display: flex;
   justify-content: center;
   align-items: center;
}

.main-content {
   text-align: center;
   width: 100%;
   max-width: 600px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}

.title2 {
   font-size: clamp(2rem, 6vw, 3.5rem);
   font-weight: 900;
   margin-bottom: 1rem;
   background: linear-gradient(45deg, #F7C12B, #ffffff, #F7C12B, #ffffff);
   background-size: 300% 300%;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   animation: gradientShift 3s ease-in-out infinite;
   opacity: 0;
   transform: translateY(30px);
   animation: fadeInUp 1s ease-out 0.6s forwards, gradientShift 3s ease-in-out infinite 1.5s;
}

@keyframes gradientShift {
   0%, 100% { background-position: 0% 50%; }
   50% { background-position: 100% 50%; }
}

@keyframes fadeInUp {
   to {
       opacity: 1;
       transform: translateY(0);
   }
}

.subtitle {
   font-size: 1.2rem;
   margin-bottom: 3rem;
   opacity: 0.8;
   opacity: 0;
   transform: translateY(20px);
   animation: fadeInUp 1s ease-out 0.8s forwards;
}

.follow-section {
   width: 100%;
   opacity: 0;
   transform: translateY(20px);
   animation: fadeInUp 1s ease-out 1s forwards;
   transition: all 0.5s ease;
}

.follow-section.hidden {
   opacity: 0;
   transform: translateY(-30px);
   pointer-events: none;
   position: absolute;
   visibility: hidden;
   display: none !important;
}

.follow-title {
   font-size: 1.5rem;
   font-weight: bold;
   margin-bottom: 2rem;
   color: #F7C12B;
}

.social-buttons {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
   margin-bottom: 2rem;
}

.social-button {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 20px 25px;
   background: rgba(255, 255, 255, 0.05);
   border: 2px solid rgba(247, 193, 43, 0.3);
   border-radius: 15px;
   color: #ffffff;
   text-decoration: none;
   font-weight: 600;
   font-size: 1.1rem;
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
}

.social-button:hover {
   border-color: #F7C12B;
   background: rgba(247, 193, 43, 0.1);
   transform: translateY(-2px);
   box-shadow: 0 10px 30px rgba(247, 193, 43, 0.2);
}

.social-button.completed {
   border-color: #4CAF50;
   background: rgba(76, 175, 80, 0.1);
}

.social-button.completed:hover {
   border-color: #4CAF50;
   background: rgba(76, 175, 80, 0.2);
}

.social-info {
   display: flex;
   align-items: center;
   gap: 15px;
}

.social-icon {
   width: 30px;
   height: 30px;
   flex-shrink: 0;
}

.check-icon {
   width: 24px;
   height: 24px;
   color: #4CAF50;
   opacity: 0;
   transform: scale(0);
   transition: all 0.3s ease;
}

.check-icon.visible {
   opacity: 1;
   transform: scale(1);
}

.form-section {
   width: 100%;
   opacity: 0;
   transform: translateY(30px);
   transition: all 0.5s ease;
   pointer-events: none;
   position: absolute;
   visibility: hidden;
}

.form-section.visible {
   opacity: 1;
   transform: translateY(0);
   pointer-events: all;
   position: relative;
   visibility: visible;
}

.form-title {
   font-size: 1.5rem;
   font-weight: bold;
   margin-bottom: 2rem;
   color: #F7C12B;
}

.form-group {
   margin-bottom: 1.5rem;
   text-align: left;
}

.form-label {
   display: block;
   margin-bottom: 0.5rem;
   font-weight: 600;
   color: #F7C12B;
}

.form-input {
   width: 100%;
   padding: 15px 20px;
   background: rgba(255, 255, 255, 0.05);
   border: 2px solid rgba(247, 193, 43, 0.3);
   border-radius: 10px;
   color: #ffffff;
   font-size: 1rem;
   transition: all 0.3s ease;
}

.form-input:focus {
   outline: none;
   border-color: #F7C12B;
   background: rgba(247, 193, 43, 0.1);
   box-shadow: 0 0 20px rgba(247, 193, 43, 0.2);
}

.form-input::placeholder {
   color: rgba(255, 255, 255, 0.5);
}

/* Wallet Type Selector Styles */
.wallet-type-selector {
   display: flex;
   gap: 1rem;
   margin-bottom: 0.5rem;
}

.wallet-option {
   flex: 1;
   cursor: pointer;
   position: relative;
}

.wallet-option input[type="radio"] {
   position: absolute;
   opacity: 0;
   pointer-events: none;
}

.wallet-option-content {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 15px 20px;
   background: rgba(255, 255, 255, 0.05);
   border: 2px solid rgba(247, 193, 43, 0.3);
   border-radius: 10px;
   transition: all 0.3s ease;
   position: relative;
}

.wallet-option input[type="radio"]:checked + .wallet-option-content {
   border-color: #F7C12B;
   background: rgba(247, 193, 43, 0.1);
   box-shadow: 0 0 20px rgba(247, 193, 43, 0.2);
}

.wallet-option:hover .wallet-option-content {
   border-color: #F7C12B;
   background: rgba(247, 193, 43, 0.05);
   transform: translateY(-2px);
}

.wallet-icon {
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: rgba(247, 193, 43, 0.1);
   border-radius: 8px;
   font-weight: bold;
   color: #F7C12B;
   font-size: 1.2rem;
   flex-shrink: 0;
}

.wallet-svg {
   width: 24px;
   height: 24px;
   object-fit: contain;
}

.wallet-info {
   flex: 1;
   text-align: left;
}

.wallet-name {
   font-weight: 600;
   color: #F7C12B;
   margin-bottom: 2px;
}

.wallet-desc {
   font-size: 0.9rem;
   color: rgba(255, 255, 255, 0.7);
}

.wallet-hint {
   font-size: 0.85rem;
   color: rgba(247, 193, 43, 0.8);
   margin-top: 0.5rem;
   font-style: italic;
}

/* Mobile responsive for wallet selector */
@media (max-width: 768px) {
   .wallet-type-selector {
       flex-direction: column;
       gap: 0.75rem;
   }
   
   .wallet-option-content {
       padding: 12px 15px;
   }
   
   .wallet-icon {
       width: 35px;
       height: 35px;
       font-size: 1rem;
   }
}

.submit-button {
   width: 100%;
   margin: 0 0 10px 0;
   padding: 15px;
   font-size: 1rem;
   font-weight: bold;
   text-decoration: none;
   color: #000000;
   background: linear-gradient(45deg, #F7C12B, #ffffff);
   border: none;
   border-radius: 50px;
   cursor: pointer;
   transition: all 0.3s ease;
   text-transform: uppercase;
   letter-spacing: 1px;
   box-shadow: 0 10px 30px rgba(247, 193, 43, 0.3);
}

.submit-button:hover {
   transform: translateY(-3px);
   box-shadow: 0 15px 40px rgba(247, 193, 43, 0.4);
}

.submit-button:disabled {
   opacity: 0.6;
   cursor: not-allowed;
   transform: none;
}

.progress-indicator {
   display: flex;
   justify-content: center;
   gap: 10px;
   margin-bottom: 2rem;
}

.progress-dot {
   width: 12px;
   height: 12px;
   border-radius: 50%;
   background: rgba(247, 193, 43, 0.3);
   transition: all 0.3s ease;
}

.progress-dot.active {
   background: #F7C12B;
   transform: scale(1.2);
}

@media (max-width: 768px) {
   .header {
       padding: 15px 20px;
   }
   
   .container {
       padding: 0 15px;
   }
   
   .main-content {
       min-height: calc(100vh - 100px);
   }
   
   .social-button {
       padding: 15px 20px;
       font-size: 1rem;
   }
   
   .form-input {
       padding: 12px 15px;
   }
}

@media (max-width: 480px) {
   .header {
       padding: 10px 15px;
   }
   
   .main-content {
       min-height: calc(100vh - 80px);
   }
   
   .title {
       font-size: 1.8rem;
   }
   
   .subtitle {
       font-size: 1rem;
   }
}

/* Follow Page CSS Styles End*/


/* Success Page CSS Styles Start*/
.container {
   min-height: 20vh;
}

.success-content {
   text-align: center;
   width: 100%;
   max-width: 600px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}

.success-icon {
   width: 120px;
   height: 120px;
   margin-bottom: 2rem;
   opacity: 0;
   transform: scale(0);
   animation: scaleIn 0.8s ease-out 0.5s forwards;
}

@keyframes scaleIn {
   to {
       opacity: 1;
       transform: scale(1);
   }
}

.title3 {
   font-size: clamp(2.5rem, 6vw, 4rem);
   font-weight: 900;
   margin-bottom: 1rem;
   background: linear-gradient(45deg, #4CAF50, #81C784, #4CAF50, #81C784);
   background-size: 300% 300%;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   animation: gradientShift 3s ease-in-out infinite;
   opacity: 0;
   transform: translateY(30px);
   animation: fadeInUp 1s ease-out 0.8s forwards, gradientShift 3s ease-in-out infinite 1.5s;
}

@keyframes gradientShift {
   0%, 100% { background-position: 0% 50%; }
   50% { background-position: 100% 50%; }
}

@keyframes fadeInUp {
   to {
       opacity: 1;
       transform: translateY(0);
   }
}

.subtitle2 {
   font-size: 1.5rem;
   font-weight: bold;
   margin-bottom: 1rem;
   color: #F7C12B;
   opacity: 0;
   transform: translateY(20px);
   animation: fadeInUp 1s ease-out 1s forwards;
}

.message2 {
   font-size: 1.2rem;
   line-height: 1.6;
   margin-bottom: 3rem;
   opacity: 0.9;
   opacity: 0;
   transform: translateY(20px);
   animation: fadeInUp 1s ease-out 1.2s forwards;
}

.phase-info {
   background: rgba(247, 193, 43, 0.1);
   border: 2px solid rgba(247, 193, 43, 0.3);
   border-radius: 15px;
   padding: 2rem;
   margin-bottom: 3rem;
   opacity: 0;
   transform: translateY(20px);
   animation: fadeInUp 1s ease-out 1.4s forwards;
}

.phase-title {
   font-size: 1.3rem;
   font-weight: bold;
   color: #F7C12B;
   margin-bottom: 1rem;
}

.phase-description {
   font-size: 1rem;
   line-height: 1.6;
   opacity: 0.9;
}

.action-buttons {
   display: flex;
   gap: 1.5rem;
   flex-wrap: wrap;
   justify-content: center;
   opacity: 0;
   transform: translateY(20px);
   animation: fadeInUp 1s ease-out 1.6s forwards;
}

.action-button {
   display: inline-block;
   padding: 15px 30px;
   font-size: 1.1rem;
   font-weight: bold;
   text-decoration: none;
   border-radius: 50px;
   transition: all 0.3s ease;
   text-transform: uppercase;
   letter-spacing: 1px;
   cursor: pointer;
}

.primary-button {
   color: #000000;
   background: linear-gradient(45deg, #F7C12B, #ffffff);
   box-shadow: 0 10px 30px rgba(247, 193, 43, 0.3);
}

.primary-button:hover {
   transform: translateY(-3px);
   box-shadow: 0 15px 40px rgba(247, 193, 43, 0.4);
}

.secondary-button {
   color: #F7C12B;
   background: rgba(247, 193, 43, 0.1);
   border: 2px solid #F7C12B;
}

.secondary-button:hover {
   background: #F7C12B;
   color: #000000;
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(247, 193, 43, 0.3);
}

.particles {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
   z-index: -1;
}

.particle {
   position: absolute;
   width: 3px;
   height: 3px;
   background: #4CAF50;
   border-radius: 50%;
   opacity: 0.6;
   animation: float 8s ease-in-out infinite;
}

@keyframes float {
   0%, 100% { transform: translateY(0px) rotate(0deg); }
   50% { transform: translateY(-30px) rotate(180deg); }
}

@media (max-width: 768px) {
   .header {
       padding: 15px 20px;
   }
   
   .container {
       padding: 0 15px;
   }
   
   .success-content {
       min-height: calc(100vh - 100px);
   }
   
   .success-icon {
       width: 100px;
       height: 100px;
   }
   
   .action-buttons {
       flex-direction: column;
       align-items: center;
   }
   
   .action-button {
       width: 100%;
       max-width: 300px;
       text-align: center;
   }
}

@media (max-width: 480px) {
   .header {
       padding: 10px 15px;
   }
   
   .success-content {
       min-height: calc(100vh - 80px);
   }
   
   .title3 {
       font-size: 2rem;
   }
   
   .subtitle2 {
       font-size: 1.2rem;
   }
   
   .message2 {
       font-size: 1rem;
   }
   
   .phase-info {
       padding: 1.5rem;
   }
}

/* Success Page CSS Styles End*/

 /* Toast Alert Styles */
 .toast-container {
   position: fixed;
   top: 20px;
   right: 20px;
   z-index: 10000;
   pointer-events: none;
}

.toast {
   display: flex;
   align-items: center;
   gap: 12px;
   min-width: 320px;
   max-width: 400px;
   background: #1f2937;
   color: #ffffff;
   border-radius: 12px;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
   padding: 16px 20px;
   margin-bottom: 12px;
   font-size: 14px;
   font-weight: 500;
   pointer-events: auto;
   cursor: pointer;
   position: relative;
   overflow: hidden;
   
   /* Initial state - hidden */
   opacity: 0;
   transform: translateX(100%) translateY(-20px);
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
   opacity: 1;
   transform: translateX(0) translateY(0);
}

.toast.hide {
   opacity: 0;
   transform: translateX(100%) translateY(-20px);
}

.toast-icon {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 24px;
   height: 24px;
   border-radius: 50%;
   flex-shrink: 0;
   font-size: 14px;
}

.toast-message {
   flex: 1;
   line-height: 1.4;
}

.toast-close {
   width: 20px;
   height: 20px;
   border: none;
   background: none;
   color: inherit;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 4px;
   opacity: 0.7;
   transition: opacity 0.2s ease;
   font-size: 16px;
}

.toast-close:hover {
   opacity: 1;
   background: rgba(255, 255, 255, 0.1);
}

/* Progress bar */
.toast-progress {
   position: absolute;
   bottom: 0;
   left: 0;
   height: 3px;
   background: rgba(255, 255, 255, 0.3);
   border-radius: 0 0 12px 12px;
   transform-origin: left;
   animation: progress 4s linear forwards;
}

@keyframes progress {
   from {
       transform: scaleX(1);
   }
   to {
       transform: scaleX(0);
   }
}

/* Toast Types */
.toast.success {
   background: #059669;
   border-left: 4px solid #10b981;
}

.toast.success .toast-icon {
   background: rgba(16, 185, 129, 0.2);
   color: #10b981;
}

.toast.error {
   background: #dc2626;
   border-left: 4px solid #ef4444;
}

.toast.error .toast-icon {
   background: rgba(239, 68, 68, 0.2);
   color: #f87171;
}

.toast.warning {
   background: #d97706;
   border-left: 4px solid #f59e0b;
}

.toast.warning .toast-icon {
   background: rgba(245, 158, 11, 0.2);
   color: #fbbf24;
}

.toast.info {
   background: #2563eb;
   border-left: 4px solid #3b82f6;
}

.toast.info .toast-icon {
   background: rgba(59, 130, 246, 0.2);
   color: #60a5fa;
}

/* Mobile Responsive */
@media (max-width: 480px) {
   .toast-container {
       top: 10px;
       right: 10px;
       left: 10px;
   }

   .toast {
       min-width: unset;
       max-width: 100%;
       margin-bottom: 8px;
   }

}