/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background Elements */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.1) 0%, 
        rgba(139, 92, 246, 0.1) 50%, 
        rgba(236, 72, 153, 0.1) 100%);
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    font-size: 24px;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 15%; right: 20%; animation-delay: 0.5s; }
.particle-3 { bottom: 30%; left: 15%; animation-delay: 1s; }
.particle-4 { bottom: 25%; right: 15%; animation-delay: 1.5s; }
.particle-5 { top: 40%; right: 30%; animation-delay: 2s; }
.particle-6 { bottom: 45%; left: 25%; animation-delay: 2.5s; }

@keyframes float {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.2) rotate(180deg); 
    }
}

.mouse-follower {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    filter: blur(60px);
    pointer-events: none;
    transition: transform 0.3s ease;
    z-index: -1;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: rotate 20s linear infinite;
}

.decorative-1 {
    top: -160px;
    right: -160px;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
}

.decorative-2 {
    bottom: -160px;
    left: -160px;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    animation-direction: reverse;
    animation-duration: 25s;
}

@keyframes rotate {
    from { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    to { transform: rotate(360deg) scale(1); }
}

/* Container */
.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 24px;
    text-align: center;
    animation: slideDown 1s ease-out 0.5s both;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.header-badge:hover {
    transform: scale(1.05);
}

.sparkle {
    color: #06b6d4;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    gap: 48px;
    max-width: 1024px;
    margin: 0 auto;
    width: 100%;
}

/* Title Section */
.title-section {
    text-align: center;
    animation: scaleIn 1s ease-out 0.8s both;
}

.main-title {
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(45deg, #06b6d4, #8b5cf6, #ec4899, #06b6d4);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease-in-out infinite, scaleIn 1s ease-out 0.8s both;
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Motto Section */
.motto-section {
    text-align: center;
    animation: slideUp 1s ease-out 1.2s both;
}

.motto {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 300;
    font-style: italic;
    color: #d1d5db;
    margin-bottom: 16px;
}

.motto-line {
    width: 96px;
    height: 4px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    margin: 0 auto;
    border-radius: 2px;
}

/* Perks Grid */
.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 800px;
    animation: slideUp 1s ease-out 1.6s both;
}

.perk-card {
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.perk-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.perk-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    transition: transform 0.3s ease;
}

.perk-card:hover .perk-icon {
    transform: scale(1.1);
}

.orange-gradient { background: linear-gradient(135deg, #f97316, #ef4444); }
.blue-gradient { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.pink-gradient { background: linear-gradient(135deg, #ec4899, #8b5cf6); }
.green-gradient { background: linear-gradient(135deg, #10b981, #059669); }

.perk-card p {
    font-size: 14px;
    font-weight: 500;
    color: #d1d5db;
    transition: color 0.3s ease;
}

.perk-card:hover p {
    color: white;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
    backdrop-filter: blur(16px);
    border-radius: 50px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    font-size: 18px;
    font-weight: 600;
    animation: slideUp 1s ease-out 2.4s both;
}

.coming-soon-badge svg {
    color: #06b6d4;
}

.sparkle-animated {
    color: #8b5cf6;
    animation: pulse 2s ease-in-out infinite;
}

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

/* App Buttons */
.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    animation: slideUp 1s ease-out 2.6s both;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #000;
    border: 1px solid #374151;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
    min-width: 200px;
}

.app-button:hover {
    transform: scale(1.05);
    background: #1f2937;
}

.app-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-store-btn .app-icon {
    background: white;
    border-radius: 8px;
    color: black;
}

.app-text {
    text-align: left;
}

.app-subtitle {
    font-size: 12px;
    color: #9ca3af;
}

.app-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.platforms-text {
    font-size: 14px;
    color: #9ca3af;
    margin-top: 16px;
}

/* Email Signup */
.email-signup {
    width: 100%;
    max-width: 400px;
    text-align: center;
    animation: slideUp 1s ease-out 2.8s both;
}

.signup-text {
    color: #9ca3af;
    margin-bottom: 24px;
}

.signup-form {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.input-container {
    position: relative;
    flex: 1;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.input-container input {
    width: 100%;
    padding: 12px 12px 12px 44px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.input-container input::placeholder {
    color: #9ca3af;
}

.input-container input:focus {
    outline: none;
    border-color: #06b6d4;
}

.notify-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.notify-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #0891b2, #7c3aed);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.25);
}

/* Footer */
.footer {
    padding: 32px 24px;
    text-align: center;
    animation: slideUp 1s ease-out 3.2s both;
}

.footer-content {
    max-width: 768px;
    margin: 0 auto;
}

.footer-description {
    color: #d1d5db;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1) translateY(-2px);
    border-color: #06b6d4;
    color: #06b6d4;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

.copyright {
    color: #6b7280;
    font-size: 14px;
}

/* Responsive Design */
@media (min-width: 640px) {
    .signup-form {
        flex-direction: row;
    }
    
    .app-buttons {
        flex-direction: row;
    }
    
    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .perks-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    animation: fadeIn 0.5s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

