.day-card:nth-child(7) {
    background: linear-gradient(135deg, #F472B6 0%, #F9A8D4 100%);
    border-color: #EC4899;
}

.day-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.day-card.active {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    animation: activeGlow 2s ease-in-out infinite;
}

.day-card.active:hover {
    transform: translateY(-8px) scale(1.05);
}

@keyframes activeGlow {
    0%, 100% { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35); }
    50% { box-shadow: 0 20px 60px rgba(255, 255, 255, 0.5); }
}

.day-name {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.day-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.3rem;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.day-month {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.message-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #333;
}

/* Voice Messages */
.messages-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.voice-message {
    background: linear-gradient(135deg, #F5DEB3 0%, #EDD5A6 100%);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(210, 180, 140, 0.3);
    border: 3px solid #D2B48C;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.voice-message:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(210, 180, 140, 0.4);
    border-color: #C9A876;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #E6D4B3;
}

.message-info h3 {
    font-size: 1.2rem;
    color: #8B6914;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.message-info p {
    font-size: 0.85rem;
    color: #A0826D;
    font-weight: 600;
}

/* Audio Player */
.audio-player {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 248, 220, 0.6);
    padding: 1.5rem;
    border-radius: 20px;
    border: 2px solid #D2B48C;
}

.play-button {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #DEB887 0%, #D2B48C 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 180, 140, 0.4);
    position: relative;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(210, 180, 140, 0.6);
}

.play-button:active {
    transform: scale(0.95);
}

.play-icon,
.pause-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.play-icon::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0;
    width: 0;
    height: 0;
    border-left: 16px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.pause-icon {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.pause-icon::before,
.pause-icon::after {
    content: '';
    width: 5px;
    height: 20px;
    background: white;
    border-radius: 2px;
}

.audio-controls {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.audio-progress {
    width: 100%;
    height: 8px;
    background: rgba(210, 180, 140, 0.3);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.audio-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #DEB887 0%, #D2B48C 100%);
    border-radius: 10px;
    width: 0%;
    transition: width 0.1s linear;
}

.audio-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #8B6914;
    font-weight: 600;
}

.audio-element {
    display: none;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
    
    .day-title h2 {
        font-size: 1.5rem;
    }
    
    .days-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    }
    
    .audio-player {
        flex-direction: column;
        align-items: stretch;
    }
    
    .back-button {
        top: 1rem;
        left: 1rem;
    }
}

/* LOGIN PAGE STYLES */
.welcome-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 30px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(255, 159, 102, 0.2);
    border: 3px solid #FFD4A3;
}

.welcome-box h2 {
    font-size: 1.8rem;
    color: #FF6B35;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.welcome-box p {
    font-size: 1rem;
    color: #FF8C42;
    font-weight: 600;
    line-height: 1.6;
    margin-top: 1rem;
}

.mango-character-box {
    text-align: center;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.cute-mango {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(255, 159, 102, 0.3));
}

.login-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(255, 159, 102, 0.2);
    border: 3px solid #FFD4A3;
    max-width: 500px;
    margin: 0 auto;
}

.login-title {
    font-size: 1.1rem;
    color: #FF6B35;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: #FF8C42;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    padding: 1rem;
    border: 3px solid #FFE8CC;
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: #FFB347;
    box-shadow: 0 0 0 3px rgba(255, 179, 71, 0.1);
}

.error-message {
    background: #FFE5E5;
    color: #FF1654;
    padding: 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    display: none;
    border: 2px solid #FF1654;
}

.login-button,
.submit-button {
    background: linear-gradient(135deg, #FFB347 0%, #FF9F66 100%);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(255, 159, 102, 0.3);
    font-family: 'Outfit', sans-serif;
}

.login-button:hover,
.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 159, 102, 0.4);
}

.login-button:active,
.submit-button:active {
    transform: translateY(-1px);
}

.forgot-password {
    text-align: center;
    margin-top: 1.5rem;
}

.forgot-password a {
    color: #FF8C42;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.forgot-password a:hover {
    color: #FF6B35;
    text-decoration: underline;
}

/* SECURITY QUESTIONS PAGE */
.back-to-login {
    text-align: center;
    margin-bottom: 2rem;
}

.back-to-login a {
    color: #FF8C42;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #FFD4A3;
}

.back-to-login a:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(255, 159, 102, 0.2);
}

.security-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(255, 159, 102, 0.2);
    border: 3px solid #FFD4A3;
    max-width: 700px;
    margin: 0 auto;
}

.security-title {
    font-size: 2rem;
    color: #FF6B35;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}

.security-subtitle {
    font-size: 1rem;
    color: #FF8C42;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
}

.security-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.question-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.question-label {
    font-size: 1rem;
    color: #FF6B35;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.question-select,
.answer-input {
    padding: 1rem;
    border: 3px solid #FFE8CC;
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.question-select:focus,
.answer-input:focus {
    outline: none;
    border-color: #FFB347;
    box-shadow: 0 0 0 3px rgba(255, 179, 71, 0.1);
}

.question-select {
    cursor: pointer;
    color: #666;
}

.answer-input {
    margin-top: 0.3rem;
}

@media (max-width: 768px) {
    .welcome-box h2 {
        font-size: 1.4rem;
    }
    
    .login-section,
    .security-section {
        padding: 2rem 1.5rem;
    }
    
    .cute-mango {
        max-width: 120px;
    }
}@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, #87CEEB 0%, #B0E6F5 50%, #FFF5E6 100%);
    min-height: 100vh;
    padding: 3rem 2rem;
    overflow-x: hidden;
    position: relative;
}

/* Floating clouds */
.cloud {
    position: fixed;
    background: white;
    border-radius: 50px;
    opacity: 0.7;
    animation: floatCloud 20s infinite linear;
    z-index: 0;
}

.cloud:nth-child(1) {
    width: 100px;
    height: 40px;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.cloud:nth-child(2) {
    width: 150px;
    height: 50px;
    top: 25%;
    left: -150px;
    animation-delay: 7s;
}

.cloud:nth-child(3) {
    width: 120px;
    height: 45px;
    top: 40%;
    left: -120px;
    animation-delay: 14s;
}

@keyframes floatCloud {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 200px)); }
}

/* Sun */
.sun {
    position: fixed;
    top: 50px;
    right: 80px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #FFE66D 0%, #FFB347 100%);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(255, 230, 109, 0.6);
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
}

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

.container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Back Button */
.back-button {
    position: fixed;
    top: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 3px solid #FFB347;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 179, 71, 0.3);
    z-index: 100;
    text-decoration: none;
    font-size: 1.5rem;
    color: #FF6B35;
}

.back-button:hover {
    transform: translateX(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 179, 71, 0.4);
    background: rgba(255, 255, 255, 1);
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.floating-mango {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    animation: float 3s ease-in-out infinite;
    font-size: 5rem;
    line-height: 80px;
}

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

.header h1 {
    font-family: 'Arial Black', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 0 rgba(255, 107, 53, 0.15);
}

.header p {
    font-size: 1rem;
    color: #FF8C42;
    font-weight: 600;
}

/* Day Title */
.day-title {
    text-align: center;
    margin-bottom: 2rem;
}

.day-title h2 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFB347 0%, #FF9F66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(255, 159, 102, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(255, 159, 102, 0.35);
    border-color: #FFD4A3;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #FF6B35;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #FF8C42;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Messages Count Card */
.count-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(255, 159, 102, 0.2);
    margin: 0 auto 2.5rem;
    border: 3px solid #FFD4A3;
    max-width: 280px;
}

.count-card .icon {
    font-size: 2.5rem;
    margin-bottom: 0.6rem;
    display: block;
}

.count-card .number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #FF6B35;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.count-card .label {
    font-size: 0.9rem;
    color: #FF8C42;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Calendar Section */
.calendar-section {
    background: linear-gradient(135deg, #FFE5D4 0%, #FFDAB9 100%);
    padding: 2.5rem 2rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(255, 159, 102, 0.3);
}

.calendar-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calendar-header h3 {
    font-size: 1.5rem;
    color: #FF6B35;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.calendar-header p {
    font-size: 0.9rem;
    color: #FF8C42;
    font-weight: 600;
}

/* Days Grid - Rainbow Colors */
.days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 1.2rem;
}

.day-card {
    padding: 1.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    cursor: pointer;
    position: relative;
}

.day-link {
    text-decoration: none;
    display: block;
}

/* Rainbow gradient backgrounds */
.day-card:nth-child(1) {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8FA3 100%);
    border-color: #FF4D7D;
}

.day-card:nth-child(2) {
    background: linear-gradient(135deg, #FFB347 0%, #FFC470 100%);
    border-color: #FF9F1C;
}

.day-card:nth-child(3) {
    background: linear-gradient(135deg, #FFD93D 0%, #FFE66D 100%);
    border-color: #FFC700;
}

.day-card:nth-child(4) {
    background: linear-gradient(135deg, #6BCF7F 0%, #95E1A5 100%);
    border-color: #4CAF50;
}

.day-card:nth-child(5) {
    background: linear-gradient(135deg, #4FB3D4 0%, #7DC8E3 100%);
    border-color: #2196F3;
}

.day-card:nth-child(6) {
    background: linear-gradient(135deg, #A78BFA 0%, #C4B5FD 100%);
    border-color: #8B5CF6;
}

.day-card:nth-child(7) {
    background: linear-gradient(135deg, #F472B6 0%, #F