/* Make sure this is at the top of shared.css */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    min-height: 100vh;
}

/* Glassmorphism Effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

.typing-effect::after {
    content: '|';
    animation: blink 1s step-end infinite;
}

.typing-cursor {
    animation: cursor-blink 1s step-end infinite;
}

.typing-animation {
    opacity: 0;
    animation: fade-in-text 0.5s ease-out forwards 0.5s;
}

/* Interactive Elements */
.feature-card-hover {
    transition: all 0.3s ease;
}

.feature-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon-pulse {
    animation: iconPulse 2s infinite;
}

.feature-tag-hover {
    transition: all 0.2s ease;
}

.feature-tag-hover:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

/* Background Effects */
.hero-gradient {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
}

/* Loading States */
.loading-overlay {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left-color: #3498db;
    animation: spin 1s linear infinite;
}

/* Form Elements */
.input-field {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.input-field:focus {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
}

/* Button Styles */
.primary-button {
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    transition: all 0.3s ease;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Navigation */
.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3b82f6;
}

/* Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes blink {
    50% { opacity: 0; }
}

@keyframes cursor-blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes fade-in-text {
    to { opacity: 1; }
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Dark Mode Overrides */
body.dark-mode .glass-effect {
    background: rgba(0, 0, 0, 0.3);
}

body.dark-mode .input-field {
    background: rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Utility Classes */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, #3b82f6, #8b5cf6);
} 