/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fafafa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Dotted Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0.3;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 0.4rem 2rem;
    margin: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.logo-icon:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 0.8rem;
}

.nav-link {
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    color: #333;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    font-size: 0.9rem;
    padding-left: 2rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border: 2px solid #333;
    border-radius: 50%;
    background: transparent;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-link.active {
    background: transparent;
    color: #333;
    border-color: #e0e0e0;
    box-shadow: none;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #DCB7FB;
    border-radius: 50%;
    
}

.login-btn {
    background: #DCB7FB;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

.login-btn:hover {
    background: #b671ef;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Status Tag */
.status-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    animation: slideInUp 0.6s ease-out 1.2s both;
    align-self: center;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

.status-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #065f46;
}

/* Main Content */
.main-content {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    text-align: center;
}

/* Background Text */
.background-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    overflow: hidden;
}

.bg-text {
    font-size: 15vw;
    font-weight: 900;
    color: transparent;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    transform: rotate(-5deg);
    animation: float 6s ease-in-out infinite;
    -webkit-text-stroke: 3px rgba(220, 183, 251, 0.25);
    text-stroke: 3px rgba(220, 183, 251, 0.25);
}

/* Floating Tags */
.floating-tags {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    animation: floatTag var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.floating-tag:nth-child(1) { font-size: 0.8rem; }
.floating-tag:nth-child(2) { font-size: 1rem; }
.floating-tag:nth-child(3) { font-size: 0.9rem; }
.floating-tag:nth-child(4) { font-size: 0.85rem; }
.floating-tag:nth-child(5) { font-size: 0.95rem; }
.floating-tag:nth-child(6) { font-size: 0.9rem; }

.left-tag {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.right-tag {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.floating-tag:nth-child(1) { 
    top: 15%; 
    left: 20px;
    transform: translateY(-50%) rotate(-5deg);
}
.floating-tag:nth-child(2) { 
    top: 35%; 
    left: 30px;
    transform: translateY(-50%) rotate(3deg);
}
.floating-tag:nth-child(3) { 
    top: 65%; 
    left: 25px;
    transform: translateY(-50%) rotate(-2deg);
}
.floating-tag:nth-child(4) { 
    top: 25%; 
    right: 20px;
    transform: translateY(-50%) rotate(4deg);
}
.floating-tag:nth-child(5) { 
    top: 55%; 
    right: 30px;
    transform: translateY(-50%) rotate(-3deg);
}
.floating-tag:nth-child(6) { 
    top: 75%; 
    right: 25px;
    transform: translateY(-50%) rotate(2deg);
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: #6366f1;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

.tag-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4338ca;
    white-space: nowrap;
}

.floating-tag:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-50%) scale(1.05);
}

/* Waitlist Section */
.waitlist-section {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.5s both;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.waitlist-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 100%;
}

.waitlist-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 0.5rem;
}

.waitlist-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.waitlist-form {
    position: relative;
}

.input-group {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 100%;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    background: transparent;
}

.email-input::placeholder {
    color: #999;
}

.waitlist-btn {
    background: #10b981;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 140px;
    border-radius: 0;
}

.waitlist-btn:hover {
    background: #b671ef;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.waitlist-btn:active {
    transform: translateY(0);
}

.btn-text {
    transition: opacity 0.3s ease;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.waitlist-btn.loading .btn-text {
    opacity: 0;
}

.waitlist-btn.loading .btn-loading {
    opacity: 1;
}

.success-message {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 12px;
    color: #155724;
    font-weight: 500;
    animation: slideInUp 0.5s ease-out;
}

.success-message.show {
    display: flex;
}

.success-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Error Message */
.error-message {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 12px;
    color: #721c24;
    font-weight: 500;
    animation: slideInUp 0.5s ease-out;
    margin-top: 1rem;
}

.error-message.show {
    display: flex;
}

.error-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Benefits Section */
.benefits-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.checkmark {
    color: #10b981;
    font-weight: bold;
    font-size: 0.8rem;
}

.benefit-text {
    color: #666;
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
        transform: scale(1);
    }
    25% {
        opacity: 0.7;
        transform: scale(0.8);
    }
    75% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: rotate(-5deg) translateY(0px);
    }
    50% {
        transform: rotate(-5deg) translateY(-20px);
    }
}

@keyframes floatTag {
    0%, 100% {
        transform: translateY(-50%) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    20% {
        transform: translateY(-50%) translateX(15px) rotate(5deg) scale(1.1);
        opacity: 1;
    }
    40% {
        transform: translateY(-50%) translateX(-8px) rotate(-3deg) scale(0.9);
        opacity: 0.8;
    }
    60% {
        transform: translateY(-50%) translateX(12px) rotate(2deg) scale(1.05);
        opacity: 0.9;
    }
    80% {
        transform: translateY(-50%) translateX(-5px) rotate(-1deg) scale(0.95);
        opacity: 0.85;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .input-group {
        flex-direction: column;
    }
    
    .waitlist-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .waitlist-title {
        font-size: 2.5rem;
    }
    
    .navbar {
        margin: 0 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Hide floating tags on mobile */
    .floating-tags {
        display: none;
    }
}

/* Music Control */
.music-control {
    position: fixed;
    top: 100px;
    left: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 2.5s ease-in-out;
    opacity: 0;
    cursor: pointer;
    animation: slideInDown 0.6s ease-out 0.5s forwards;
    /* Removed floatAround animation */
}

/* Floating animation for music control - left side only */
@keyframes floatAround {
    0% {
        top: 15%;
        left: 5%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        top: 35%;
        left: 8%;
        transform: translate(0, 0) rotate(2deg);
    }
    50% {
        top: 55%;
        left: 12%;
        transform: translate(0, 0) rotate(-1deg);
    }
    75% {
        top: 75%;
        left: 8%;
        transform: translate(0, 0) rotate(1deg);
    }
    100% {
        top: 15%;
        left: 5%;
        transform: translate(0, 0) rotate(0deg);
    }
}

.music-control:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.music-control.playing .music-icon {
    animation: musicPulse 3s ease-in-out infinite;
}

.music-control.playing::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid white;
    animation: indicatorPulse 2s ease-in-out infinite;
}

.music-control:not(.playing) .music-icon {
    opacity: 0.5;
}

.music-control:not(.playing)::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid white;
}

.music-icon {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

@keyframes musicPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes indicatorPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}



@keyframes slideInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Confetti Animation */
@keyframes confettiFall {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}



/* Hand Tap Animation */
.hand-tap {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    z-index: 10;
    animation: handTap 2s ease-in-out infinite;
    pointer-events: none;
}

.hand-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes handTap {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-50%) translateX(-10px);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) translateX(-20px);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-50%) translateX(-10px);
        opacity: 1;
    }
}

/* Hide hand tap on mobile */
@media (max-width: 768px) {
    .hand-tap {
        display: none;
    }
}

/* Celebration Success Animation */
.success-message.show {
    animation: celebrationBounce 0.6s ease-out;
}

@keyframes celebrationBounce {
    0% {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) translateY(-5px);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }

} 



