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

body {
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.6;
    color: #f5f5f5;
    overflow-x: hidden;
    background: #000000;
    position: relative;
}

/* Weather Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    z-index: -2;
    animation: weatherShift 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="rain" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><line x1="5" y1="0" x2="5" y2="10" stroke="rgba(120, 219, 255, 0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23rain)"/></svg>');
    z-index: -1;
    animation: rain 3s linear infinite;
}

@keyframes weatherShift {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

@keyframes rain {
    0% { transform: translateY(-100px); }
    100% { transform: translateY(100px); }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(120, 219, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #78d3ff 0%, #ff77c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(120, 211, 255, 0.3);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #78d3ff 0%, #ff77c6 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #78d3ff;
    text-shadow: 0 0 10px rgba(120, 211, 255, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #78d3ff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(120, 211, 255, 0.5);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Welcome Section */
.welcome-section {
    min-height: 100vh;
    padding-top: 80px; /* Add top padding to account for fixed navbar */
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(120, 211, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    animation: cloudFloat 15s ease-in-out infinite;
}

@keyframes cloudFloat {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    33% { transform: translateX(-20px) translateY(-10px); }
    66% { transform: translateX(20px) translateY(10px); }
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 80vh;
    position: relative;
    z-index: 2;
}

.welcome-text {
    flex: 1;
    text-align: center;
}

.welcome-title {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    background: linear-gradient(135deg, #78d3ff 0%, #ff77c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(120, 211, 255, 0.3);
}

.welcome-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
    color: #d1d5db;
    font-family: 'Inter', sans-serif;
}

.welcome-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
    color: #9ca3af;
    font-family: 'Inter', sans-serif;
}

.cta-button {
    background: rgba(120, 211, 255, 0.05);
    border: 2px solid rgba(120, 211, 255, 0.2);
    color: #78d3ff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease 0.6s both;
    box-shadow: 0 0 20px rgba(120, 211, 255, 0.1);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.cta-button:hover {
    background: rgba(120, 211, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(120, 211, 255, 0.2);
    border-color: rgba(120, 211, 255, 0.4);
}

.welcome-illustration {
    flex: 1;
    position: relative;
    height: 400px;
}

.floating-emoji {
    position: absolute;
    font-size: 4rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(120, 211, 255, 0.5));
}

.floating-emoji:nth-child(1) {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.floating-emoji:nth-child(2) {
    top: 55%;
    right: 15%;
    animation-delay: 2s;
}

.floating-emoji:nth-child(3) {
    bottom: 15%;
    left: 45%;
    animation-delay: 4s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    color: #78d3ff;
}

.scroll-arrow {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(120, 211, 255, 0.5);
}

.scroll-arrow {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Section Styles */
.mood-section, .text-section, .quotes-section {
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.mood-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    color: #f5f5f5;
}

.mood-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(120, 211, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    animation: moodShift 10s ease-in-out infinite;
}

@keyframes moodShift {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.text-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    color: #f5f5f5;
}

.text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 60%, rgba(120, 211, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    animation: textShift 12s ease-in-out infinite;
}

@keyframes textShift {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.15; }
}

.quotes-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    color: #f5f5f5;
}

.quotes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 80%, rgba(120, 211, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    animation: quoteShift 8s ease-in-out infinite;
}

@keyframes quoteShift {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.15; }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #78d3ff 0%, #ff77c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(120, 211, 255, 0.3);
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    text-align: center;
    opacity: 0.9;
    color: #d1d5db;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Mood Grid */
.mood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.mood-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(120, 211, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.mood-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 211, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.mood-card:hover::before {
    left: 100%;
}

.mood-card:hover {
    transform: translateY(-5px);
    border-color: rgba(120, 211, 255, 0.3);
    box-shadow: 0 10px 30px rgba(120, 211, 255, 0.1);
    background: rgba(0, 0, 0, 0.9);
}

.mood-card.selected {
    border-color: #78d3ff;
    background: rgba(120, 211, 255, 0.05);
    box-shadow: 0 0 30px rgba(120, 211, 255, 0.2);
}

.mood-card:active {
    transform: scale(0.95);
}

.mood-emoji {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(120, 211, 255, 0.3));
    transition: all 0.3s ease;
    display: block;
}

.mood-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f5f5f5;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Team Selection */
.team-selection {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.team-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #d1d5db;
    font-family: 'Inter', sans-serif;
}

.team-dropdown {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(120, 211, 255, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #f5f5f5;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 250px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.team-dropdown:focus {
    outline: none;
    border-color: #78d3ff;
    box-shadow: 0 0 20px rgba(120, 211, 255, 0.2);
    background: rgba(0, 0, 0, 0.9);
}

.team-dropdown option {
    background: #000000;
    color: #f5f5f5;
}

/* Text Input */
.text-input-container {
    max-width: 600px;
    margin: 0 auto;
}

.feeling-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(120, 211, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    font-size: 1.1rem;
    color: #f5f5f5;
    resize: vertical;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
}

.feeling-textarea::placeholder {
    color: #9ca3af;
}

.feeling-textarea:focus {
    outline: none;
    border-color: #78d3ff;
    box-shadow: 0 0 20px rgba(120, 211, 255, 0.2);
    background: rgba(0, 0, 0, 0.9);
}

.text-actions {
    margin-top: 2rem;
    text-align: center;
}

/* Quotes */
.quote-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(120, 211, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.quote-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(120, 211, 255, 0.05);
    font-family: 'Playfair Display', serif;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #f5f5f5;
    position: relative;
    z-index: 2;
    font-family: 'Playfair Display', serif;
}

.quote-author {
    font-size: 1.1rem;
    color: #78d3ff;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* Buttons */
.submit-button, .new-quote-button {
    background: linear-gradient(135deg, #78d3ff 0%, #ff77c6 100%);
    border: none;
    color: #000000;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(120, 211, 255, 0.2);
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
}

.submit-button:hover, .new-quote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(120, 211, 255, 0.3);
}

.submit-button:disabled {
    background: #374151;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.95);
    color: #9ca3af;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(120, 211, 255, 0.1);
    backdrop-filter: blur(20px);
    font-family: 'Inter', sans-serif;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .welcome-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .welcome-text {
        text-align: center;
        max-width: 100%;
    }
    
    .welcome-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .welcome-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .welcome-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .welcome-illustration {
        height: 200px;
        margin-top: 1rem;
        position: relative;
    }
    
    .floating-emoji {
        font-size: 2.5rem;
        z-index: -1;
        opacity: 0.15;
    }
    
    .floating-emoji:nth-child(1) {
        top: 15%;
        left: 15%;
    }
    
    .floating-emoji:nth-child(2) {
        top: 60%;
        right: 15%;
    }
    
    .floating-emoji:nth-child(3) {
        bottom: 15%;
        left: 45%;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        gap: 1.5rem;
        border-top: 1px solid rgba(120, 219, 255, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(120, 219, 255, 0.1);
        color: #f5f5f5;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(120, 219, 255, 0.1);
        color: #78d3ff;
        text-shadow: 0 0 10px rgba(120, 211, 255, 0.5);
    }
    
    .hamburger {
        display: flex;
    }
    
    .mood-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .mood-card {
        padding: 1.5rem 1rem;
    }
    
    .mood-emoji {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .team-dropdown {
        min-width: 200px;
        padding: 0.8rem 1rem;
    }
    
    .feeling-textarea {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .quote-card {
        padding: 2rem 1.5rem;
    }
    
    .submit-button, .new-quote-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .welcome-content {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .welcome-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .welcome-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .welcome-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .welcome-illustration {
        height: 150px;
        margin-top: 0.5rem;
    }
    
    .floating-emoji {
        font-size: 2rem;
        z-index: -1;
        opacity: 0.1;
    }
    
    .floating-emoji:nth-child(1) {
        top: 20%;
        left: 20%;
    }
    
    .floating-emoji:nth-child(2) {
        top: 65%;
        right: 20%;
    }
    
    .floating-emoji:nth-child(3) {
        bottom: 20%;
        left: 50%;
    }
    
    .mood-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .mood-card {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .team-dropdown {
        min-width: 180px;
    }
    
    .feeling-textarea {
        padding: 1rem;
    }
    
    .quote-card {
        padding: 1.5rem 1rem;
    }
    
    .nav-links {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
    }
}

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

/* Premium Features Styles */

/* Enhanced Welcome Section */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #78d3ff 0%, #ff77c6 100%);
    color: #000000;
    font-weight: 600;
}

.cta-button.secondary {
    background: rgba(120, 211, 255, 0.1);
    border: 2px solid rgba(120, 211, 255, 0.3);
    color: #78d3ff;
    backdrop-filter: blur(10px);
}

.feature-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(120, 211, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(120, 211, 255, 0.2);
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 1.2rem;
}

/* AI Insights Section */
.ai-insights-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a1a 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.ai-insights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(120, 211, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    animation: aiShift 15s ease-in-out infinite;
}

@keyframes aiShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

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

.insight-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(120, 211, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    text-align: center;
}

.insight-card:hover {
    transform: translateY(-5px);
    border-color: rgba(120, 211, 255, 0.4);
    box-shadow: 0 20px 40px rgba(120, 211, 255, 0.2);
}

.insight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.insight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #78d3ff;
    font-family: 'Playfair Display', serif;
}

.insight-card p {
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.insight-result {
    background: rgba(120, 211, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(120, 211, 255, 0.2);
}

.result-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.7);
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #78d3ff;
}

.ai-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.analyze-button {
    background: linear-gradient(135deg, #78d3ff 0%, #ff77c6 100%);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.analyze-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(120, 211, 255, 0.3);
}

.secondary-button {
    background: rgba(120, 211, 255, 0.1);
    border: 2px solid rgba(120, 211, 255, 0.3);
    color: #78d3ff;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.secondary-button:hover {
    background: rgba(120, 211, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(120, 211, 255, 0.2);
}

/* Analytics Section */
.analytics-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a1a 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.analytics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 80%, rgba(120, 211, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    animation: analyticsShift 20s ease-in-out infinite;
}

@keyframes analyticsShift {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.analytics-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(120, 211, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.analytics-card:hover {
    transform: translateY(-5px);
    border-color: rgba(120, 211, 255, 0.4);
    box-shadow: 0 20px 40px rgba(120, 211, 255, 0.2);
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(120, 211, 255, 0.2);
}

.analytics-header h3 {
    font-size: 1.3rem;
    color: #78d3ff;
    font-family: 'Playfair Display', serif;
}

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

.mood-chart {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 150px;
    margin-bottom: 1rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #78d3ff, #ff77c6);
    border-radius: 5px 5px 0 0;
    transition: all 0.3s ease;
    position: relative;
}

.chart-bar:hover {
    transform: scaleY(1.1);
    box-shadow: 0 0 20px rgba(120, 211, 255, 0.5);
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.9rem;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(120, 211, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(120, 211, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #78d3ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.7);
    font-family: 'Inter', sans-serif;
}

.recommendations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(120, 211, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(120, 211, 255, 0.2);
}

.rec-icon {
    font-size: 1.2rem;
}

.rec-text {
    color: rgba(245, 245, 245, 0.9);
    font-family: 'Inter', sans-serif;
}

.analytics-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.primary-button {
    background: linear-gradient(135deg, #78d3ff 0%, #ff77c6 100%);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(120, 211, 255, 0.3);
}

/* Enhanced Footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #78d3ff;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(245, 245, 245, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-section ul li a:hover {
    color: #78d3ff;
}

.footer-cta {
    background: linear-gradient(135deg, #78d3ff 0%, #ff77c6 100%);
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(120, 211, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(120, 211, 255, 0.2);
    color: rgba(245, 245, 245, 0.7);
    font-family: 'Inter', sans-serif;
}

.creator-credit {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #78d3ff;
    font-weight: 500;
}

.creator-credit strong {
    color: #ff77c6;
    text-shadow: 0 0 10px rgba(255, 119, 198, 0.3);
}

/* Mobile Responsive for Premium Features */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
    }
    
    .ai-actions, .analytics-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
} 