body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 10px;
    margin-top: 1px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 25%, #16213e 50%, #0f0f23 75%, #000000 100%);
    background-attachment: fixed;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

p, .instructions-container p {
    font-size: 18px;
    font-weight: 400;
    color: #e8e8e8;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    line-height: 1.7;
}

#playPauseOriginalButton, #playPauseSnippetButton {
    margin: 10px auto 0;
    padding: 10px 10px;
    background: linear-gradient(207deg, #4285f438, #af72f6, #f7551a5c);
    color: #ffffff;
    border-radius: 30px;


}

@media (max-width: 600px) {

    .promotion-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-direction: column;
    }

    .promotion-image img {

        height: 200px;
        width: 100px;
        }


    .upload-button{

        margin-top: 15px;
    }


    .features{
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 30px;
       
    }

    }


#intro{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;

}

footer{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.features {
    display: flex;
    align-items: center;
    align-content: flex-end;
    justify-content: center;
}

#policiesheaders{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    margin-left: 20%;
    margin-right: 20%;
}

.loader-container {
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}




.music-loader {
  position:relative;
  width:115px;
  .bar {
    height: 20px;
    width: 10px;
    display:inline-block;
    margin-right:5px;
    position:absolute;
    bottom:0;
    animation:loader 1.5s ease-out infinite;
    box-shadow: 0 0 10px #7dffb1, 0 0 40px #7dffb1, 0 0 80px #7dffb1;
        background-color: #7dffb1;

&.bar-2 {
  animation-delay: 0.4s;
  left:15px;
}

&.bar-3 {
  animation-delay: 0.8s;
  left:30px;
}

&.bar-4 {
  animation-delay: 1.2s;
  left:45px;
}

&.bar-5 {
  animation-delay: 0.6s;
  left:60px;
}
    &.bar-6 {
  animation-delay: 0.4s;
  left:75px;
}
    &.bar-7 {
  animation-delay: 1s;
  left:90px;
}
    &.bar-8 {
  animation-delay: 0.8s;
  left:105px;
}

  }
}


@keyframes loader {
0% {
  height: 30px;
}
15% {
  height: 40px;
}
35% {
  height: 50px;
}
45% {
  height: 40px;
}
75% {
  height: 30px;
}
100% {
  height: 20px;
}
}
.loading-message {
    margin-top: 20px;
    text-align: center;
    font-size: 15px;
    color: #fff;
}
.waveform-container {
    margin-bottom: 30px;
}
.controls {
    margin-top: 20px;
}
.controls button {
    margin-right: 10px;
}
.waveform-box {
    display: none; /* Initially hidden */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 2000;
}
.waveform-box.show {
    display: block;
    max-height: 600px;
    overflow-y: auto;
}
.waveform-box .close-btn {
    position: absolute;
    top: 30px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #ffffff;
}
.waveform-box .download-btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 20px auto 0;
    padding: 10px 20px;
    background: linear-gradient(207deg, #4285f438, #af72f6, #f7551a5c);;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    cursor: pointer;
}
.waveform-box .download-btn:hover {
    background-color: #45a049;
}




/* Background Video */
#vd-h {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.85) saturate(1.2) contrast(1.05);
  transition: opacity 1.5s ease-in-out;
}

/* Optional: fade in the video */
#vd-h.hidden {
  opacity: 0;
}

/* Overlay */
#video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.4),
    rgba(33, 30, 207, 0.35)
  );
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: -1;
  animation: pulseOverlay 6s ease-in-out infinite alternate;
}

/* Frosty container */
.glass-container {
  position: relative;
  z-index: 1;
  margin: 5vh auto;
  max-width: 600px;
  padding: 30px;
  background: rgba(17, 150, 222, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Add some animation to the overlay (optional) */
@keyframes pulseOverlay {
  0% {
    backdrop-filter: blur(5px) brightness(1);
  }
  100% {
    backdrop-filter: blur(8px) brightness(1.15);
  }
}






.h1-head-intro {
    font-size: 40px;
    background-image: linear-gradient(45deg, #4285f4, #af72f6, #f7551a);
    background-size: 200%; /* Increased to create the effect of movement */
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    animation: fadeIn 0.5s ease-in-out, gradientMove 5s alternate infinite;
}

.head-instruction{

    font-size: 22px;
    background-image: linear-gradient(45deg, #8c42f4, #d58a19, #f7551a);
    background-size: 200%; /* Increased to create the effect of movement */
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    animation: fadeIn 0.5s ease-in-out, gradientMove 5s alternate infinite;
}

#promotion {
    display: flex;
    flex-direction: column;
    font-size: 20px;

}

.promotion-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.promotion-text {
    flex: 1; /* Make the text container take up available space */
    padding-right: 10px; /* Add some space between the text and the image */
    margin-right: 50px;
}

.promotion-image {
    flex-shrink: 0; /* Prevent the image from shrinking */
}

.promotion-image img {
    max-width: 100%; /* Ensure the image does not overflow */
    height: 700px; /* Maintain aspect ratio */
    width: 400px;
}


h4{
    margin-top: 300px;
}



.instructions-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.instructions-container p {
    max-width: 600px;
    font-size: 20px;
    line-height: 1.6em;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}

#usage-info{
    display: flex;
    font-size: 14px;
}


#uploadForm {
    text-align: center;
    background:  linear-gradient(207deg, #4285f438, #af72f6, #f7551a5c);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#fileInput {
    display: none;
}

b{
    color: #5a96e4;
}

a {
    color: white;
    margin-right: 20px;

}

a:visited {
    color: white;
}

a:hover {
    color: white;
}

a:active {
    color: white;
}


.custom-file-upload {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.custom-file-upload:hover {
    background-color: #0990ce;
}

.picker{
    height: 300px;
}

#fileName {
    margin-left: 10px;
    font-size: 14px;
    color: #ffffff;
}

.upload-button {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #ff8000;
    color: #fff;
    border: none;
    border-radius: 5px;
    margin-left:20px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.upload-button:hover {
    background-color: #8879ea;
}





.instructions-container p::before {
    content: '🎵';
    display: inline-block;
    margin-right: 10px;
    color: #4CAF50;
    font-weight: bold;
}

.instructions-container p:nth-of-type(2)::before {
    content: '🎵';
}

.instructions-container p:nth-of-type(3)::before {
    content: '🎵';
}

.logo {
    height: 150px;
    width: 300px;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Gradient movement animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}


form {
    margin-bottom: 20px;
}

input[type="file"] {
    margin-bottom: 10px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 10px 0;
}

.waveform {
    margin-top: 20px;
}


/* Add these styles to your existing CSS file */

#subscription-info {
    margin: 20px auto;
    max-width: 800px;
    text-align: center;
}

.upgrade-section {
    background: linear-gradient(207deg, #4285f438, #af72f6, #f7551a5c);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.upgrade-button {
    display: inline-block;
    background: linear-gradient(135deg, #ef7512, #7873f5, #f1285e);
    background-size: 200% 200%;
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(120, 115, 245, 0.4);
    transition: all 0.3s ease;
    animation: pulseGlow 3s ease-in-out infinite, gradientShift 6s ease infinite;
    position: relative;
    overflow: hidden;
}

.upgrade-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(225, 77, 18, 0.15), transparent 60%);
    transform: rotate(25deg);
    pointer-events: none;
    animation: shimmer 3s infinite linear;
}

.upgrade-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.8); /* Neon Pink glow */
}

/* Animations */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 200, 36, 0.7); /* Neon Pink */
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 191, 255, 0.9); /* Deep Sky Blue */
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes shimmer {
    0% {
        transform: rotate(25deg) translateX(-100%);
    }
    100% {
        transform: rotate(25deg) translateX(100%);
    }
}


.login-button, .signup-button {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px 5px;
    transition: background-color 0.3s;
}

.login-button {
    background-color: #a8112a;
    color: white;
}

.login-button:hover {
    background-color: #0b7dda;
}

.signup-button {
      display: inline-block;
    background: linear-gradient(135deg, #030303, #055169, #f1285e);
    background-size: 200% 200%;
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(120, 115, 245, 0.4);
    transition: all 0.3s ease;
    animation: gradientShift 6s ease infinite;
    position: relative;
    overflow: hidden;
}

.signup-button:hover {
    background-color: #3e8e41;
}

.pro-badge {
    display: inline-block;
    background-color: #ffd700;
    color: #000;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Style for navigation links in header */
.auth-links {
    position: absolute;
    top: 20px;
    right: 20px;
}



.auth-links a {
    margin-left: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* ADDICTIVE UI ENHANCEMENTS - Add these to your existing styles.css */

/* Floating particles background animation */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: linear-gradient(45deg, #4285f4, #af72f6, #f7551a);
    border-radius: 50%;
    animation: float 15s infinite linear;
    opacity: 0.6;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Glassmorphism effect for upload form */
#uploadForm {
    backdrop-filter: blur(20px);
    background: rgba(66, 133, 244, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

#uploadForm:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(66, 133, 244, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Pulsing glow effect for buttons */
.custom-file-upload, .upload-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(66, 133, 244, 0.3);
}

.custom-file-upload::before, .upload-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.custom-file-upload:hover::before, .upload-button:hover::before {
    animation: shimmer 0.6s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

/* Magnetic hover effect for buttons */
.custom-file-upload:hover, .upload-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 40px rgba(66, 133, 244, 0.6);
}

/* Glowing & breathing animation for logo */
.logo {
    animation: breathe 40s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(66, 133, 244, 0.7));
    transition: filter 0.3s ease;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 25px rgba(66, 133, 244, 0.7));
    }
    50% {
        transform: scale(1.07);
        filter: drop-shadow(0 0 40px rgba(175, 114, 246, 1));
    }
}


/* Modern card hover effects */
.waveform-box {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.waveform-box.show {
    animation: slideInScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInScale {
    0% {
        transform: translate(-50%, -50%) scale(0.8) rotateX(10deg);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1) rotateX(0deg);
        opacity: 1;
    }
}

/* Interactive waveform containers */
.waveform-container {
    position: relative;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(175, 114, 246, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin: 15px 0;
}

.waveform-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.3);
    border-color: rgba(66, 133, 244, 0.5);
}

/* Floating action buttons */
#playPauseOriginalButton, #playPauseSnippetButton {
    position: relative;
    overflow: hidden;
    transform: perspective(1px) translateZ(0);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
}

#playPauseOriginalButton:hover, #playPauseSnippetButton:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 35px rgba(66, 133, 244, 0.4);
}

#playPauseOriginalButton:active, #playPauseSnippetButton:active {
    transform: scale(0.95);
}

/* Text reveal animation */
.instructions-container p {
    opacity: 0;
    transform: translateY(30px);
    animation: revealText 0.8s ease forwards;
}

.instructions-container p:nth-child(1) { animation-delay: 0.1s; }
.instructions-container p:nth-child(2) { animation-delay: 0.2s; }
.instructions-container p:nth-child(3) { animation-delay: 0.3s; }
.instructions-container p:nth-child(4) { animation-delay: 0.4s; }
.instructions-container p:nth-child(5) { animation-delay: 0.5s; }

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced gradient animations */
.h1-head-intro, .head-instruction {
    background-size: 400%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

/* Micro-interactions for social proof badges */
.features a img {
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    filter: grayscale(20%) brightness(0.9);
}

.features a:hover img {
    transform: scale(1.05) rotate(2deg);
    filter: grayscale(0%) brightness(1.1);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
}

/* Loading animation enhancement */
.music-loader {
    filter: drop-shadow(0 0 20px #7dffb1);
}

.loader-container {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.95);
}

.loading-message {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

/* Pro badge floating effect */
.pro-badge {
    animation: float-badge 3s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Upgrade section with magnetic effect */
.upgrade-section {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}


@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.upgrade-section:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(66, 133, 244, 0.3);
}

/* Scroll-triggered animations */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Promotion section enhancement */
.promotion-content {
    opacity: 0;
    animation: slideInFromLeft 1s ease 0.5s forwards;
}

.promotion-image {
    opacity: 0;
    animation: slideInFromRight 1s ease 0.7s forwards;
}

/* Interactive close button */
.waveform-box .close-btn {
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.waveform-box .close-btn:hover {
    background: rgba(255, 82, 82, 0.2);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 82, 82, 0.3);
}

/* Enhanced download button */
.download-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.download-btn::after {
    content: '⬇';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 40px rgba(175, 114, 246, 0.4);
}

.download-btn:hover::after {
    animation: bounce 0.6s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(-70%);
    }
}

/* Mobile optimizations */
@media (max-width: 600px) {
    .particle {
        width: 2px;
        height: 2px;
    }
    
    .h1-head-intro {
        font-size: 28px;
    }
    
    .waveform-box {
        width: 95%;
        margin: 10px;
    }
}


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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            background: #0a0a0a;
            color: #ffffff;
        }

        #hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        #vd-h {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        #video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(30,30,30,0.8) 100%);
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            z-index: 1;
        }

        .logo {
            max-width: 300px;
            margin-bottom: 2rem;
            filter: drop-shadow(0 4px 20px rgba(255,255,255,0.1));
        }

        .usage-stats {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .usage-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            padding: 1rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 120px;
        }

        .usage-label {
            font-size: 0.8rem;
            opacity: 0.8;
            margin-bottom: 0.25rem;
        }

        .usage-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: #00f5ff;
        }

        .usage-note {
            font-size: 0.75rem;
            opacity: 0.6;
            margin-top: 0.5rem;
        }

        .subscription-status {
            margin-bottom: 3rem;
        }

        .pro-plan-active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .pro-badge-large {
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #fff;
        }

        .pro-benefits {
            font-size: 1rem;
            opacity: 0.9;
        }

        .upgrade-cta {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 2rem;
        }

        .upgrade-cta h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #00f5ff, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .benefit-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .benefit-icon {
            font-size: 1.5rem;
        }

        .main-headline h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .highlight {
            background: linear-gradient(135deg, #00f5ff, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .subtitle {
            font-size: 1.2rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .upload-section {
            max-width: 600px;
            margin: 0 auto;
        }

        .modern-upload-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .file-upload-wrapper {
            position: relative;
        }

        .file-upload-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1.5rem;
            background: rgba(255,255,255,0.1);
            border: 2px dashed rgba(255,255,255,0.3);
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .file-upload-label:hover {
            background: rgba(255,255,255,0.15);
            border-color: #00f5ff;
        }

        #fileInput {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .file-name {
            display: block;
            margin-top: 0.5rem;
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .upload-submit-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1.2rem 2rem;
            background: linear-gradient(135deg, #00f5ff, #ff00ff);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .upload-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,245,255,0.3);
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            text-align: center;
        }

        .cta-button.primary {
            background: linear-gradient(135deg, #360909, #0e6006);
            color: white;
        }

        .cta-button.secondary {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,245,255,0.3);
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* API Marketing Section */
        .api-marketing {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 5rem 0;
        }

        .api-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .api-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .api-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #00f5ff, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .api-plans {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .api-plan {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .api-plan:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .api-plan.featured {
            border-color: #00f5ff;
            background: rgba(0,245,255,0.05);
        }

        .featured-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #00f5ff, #ff00ff);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .plan-header h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 800;
            color: #00f5ff;
            margin-bottom: 2rem;
        }

        .plan-price span {
            font-size: 1rem;
            opacity: 0.7;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            position: relative;
            padding-left: 1.5rem;
        }

        .plan-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #00f5ff;
            font-weight: bold;
        }

        .api-cta-btn {
            display: block;
            width: 100%;
            padding: 1rem;
            text-align: center;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .free-btn {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
        }

        .pro-btn {
            background: linear-gradient(135deg, #2f080f, #ff00ff);
            color: white;
        }

        .api-code-example {
            background: rgba(0,0,0,0.3);
            border-radius: 16px;
            padding: 2rem;
        }

        .api-code-example h3 {
            margin-bottom: 1rem;
            color: #00f5ff;
        }

        .code-block {
            background: #000;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            overflow-x: auto;
        }

        .code-block code {
            color: #00f5ff;
            font-family: 'Fira Code', monospace;
            font-size: 0.9rem;
        }

        .docs-link {
            color: #00f5ff;
            text-decoration: none;
            font-weight: 600;
        }

        /* Modern Sections */
        .modern-section {
            padding: 5rem 0;
            background: #111;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #00f5ff, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .step-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.08);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #00f5ff, #ff00ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            margin: 0 auto 1.5rem;
        }

        .step-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .step-detail {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-top: 1rem;
        }

        .upgrade-hint {
            color: #ff00ff;
            font-weight: 600;
        }

        /* FAQ Section */
        .faq-section {
            background: #0a0a0a;
            padding: 5rem 0;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
        }

        .faq-item {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 2rem;
        }

        .faq-item h4 {
            color: #00f5ff;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .faq-image {
            max-width: 200px;
            margin-top: 1rem;
            border-radius: 8px;
        }

        /* Social Promotion */
        .promotion-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 5rem 0;
        }

        .promotion-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #00f5ff;
        }

        .social-cta {
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
        }

        .hashtag-pills {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }