:root {
    --pink-100: #E0F4F1;
    --pink-200: #B2E4DE;
    --pink-300: #4ECDC4;
    --pink-400: #26A69A;
    --pink-500: #1A8A7E;
    --blue-100: #FFF3E0;
    --blue-200: #FFE0B2;
    --blue-300: #FF8C42;
    --blue-400: #FF6B00;
    --orange-100: #E0F7FA;
    --orange-200: #B2EBF2;
    --orange-300: #4DD0E1;
    --orange-400: #00ACC1;
    --bg-light: #F5FAFA;
    --bg-white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --shadow: 0 4px 20px rgba(78, 205, 196, 0.15);
    --shadow-hover: 0 8px 30px rgba(78, 205, 196, 0.25);
    --gradient: linear-gradient(135deg, var(--blue-300), var(--pink-300), var(--orange-300));
    --gradient-light: linear-gradient(135deg, var(--blue-100), var(--pink-100), var(--orange-100));
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: #FF6B9D;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Day Counter Banner */
.day-counter-banner {
    background: var(--gradient);
    padding: 10px 20px;
    text-align: center;
    color: white;
    font-size: 0.95rem;
}

.day-counter-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.day-counter-content strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.day-counter-icon {
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.brand-heart {
    font-size: 1.4rem;
    display: inline-block;
    animation: heartPulse 1.2s ease-in-out infinite;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.3); }
    30% { transform: scale(1); }
    45% { transform: scale(1.2); }
    60% { transform: scale(1); }
}

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

.nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover, .nav-links a.active {
    background: var(--gradient-light);
    color: var(--pink-500);
}

.nav-links a.logout-btn {
    background: var(--pink-100);
    color: var(--pink-400);
}

.nav-links a.logout-btn:hover {
    background: var(--pink-400);
    color: white;
}

.badge {
    background: var(--orange-400);
    color: white;
    padding: 2px 8px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--pink-500);
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--pink-100);
    color: var(--pink-500);
}

.btn-secondary:hover {
    background: var(--pink-200);
}

.btn-danger {
    background: #FFE5E5;
    color: #E53935;
}

.btn-danger:hover {
    background: #E53935;
    color: white;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--pink-100);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--pink-300);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Cards */
.card {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-header {
    padding: 20px;
    background: var(--gradient-light);
    border-bottom: 1px solid var(--pink-100);
}

.card-body {
    padding: 20px;
}

/* Login Page */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-light);
    padding: 20px;
}

.login-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-box .logo {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: heartbeat 1.5s infinite;
}

.login-box h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.login-box .subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.login-box .form-control {
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.login-box .btn {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 1.1rem;
}

.login-box .register-link {
    margin-top: 20px;
    color: var(--text-light);
}

.login-box .register-link a {
    color: var(--pink-500);
    font-weight: 500;
}

.login-box .register-link a:hover {
    text-decoration: underline;
}

/* Hearts Animation */
.hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.floating-heart {
    position: absolute;
    bottom: -50px;
    animation: floatUp 10s linear infinite;
    opacity: 0.6;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Gallery */
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.gallery-header h1 {
    font-size: 2.5rem;
}

.gallery-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-buttons {
    display: flex;
    gap: 5px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.photo-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.photo-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-card:hover img {
    transform: scale(1.05);
}

.photo-card .photo-info {
    padding: 15px;
}

.photo-card .photo-title {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: #FF6B9D;
    margin-bottom: 5px;
}

.photo-card .photo-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

.photo-card .photo-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.photo-card .photo-author i {
    color: var(--blue-300);
}

.photo-card .photo-actions {
    padding: 10px 15px;
    border-top: 1px solid var(--pink-100);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Photo Detail */
.photo-detail {
    max-width: 900px;
    margin: 0 auto;
}

.photo-detail .main-photo {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.photo-detail .photo-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 20px 0;
}

.photo-detail .photo-title {
    font-size: 2rem;
}

.photo-detail .photo-meta {
    color: var(--text-light);
    display: flex;
    gap: 20px;
}

/* Comments */
.comments-section {
    margin-top: 30px;
}

.comments-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.comment-form {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.comment-form textarea {
    flex: 1;
    padding: 15px;
    border: 2px solid var(--pink-100);
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    resize: none;
    height: 60px;
}

.comment-form textarea:focus {
    outline: none;
    border-color: var(--pink-400);
}

.comment-form button {
    padding: 15px 25px;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 15px;
}

.comment-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
    overflow: hidden;
}

.reply-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
    overflow: hidden;
}

.reply-list {
    margin-top: 12px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reply-item {
    display: flex;
    gap: 10px;
}

.reply-content {
    flex: 1;
}

.reply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}

.reply-author {
    font-weight: 600;
    font-size: 0.85rem;
    color: #FF6B9D;
}

.reply-date {
    font-size: 0.7rem;
    color: var(--text-light);
}

.reply-text {
    font-size: 0.85rem;
    line-height: 1.4;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.comment-author {
    font-weight: 600;
    color: #FF6B9D;
}

.comment-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.comment-text {
    color: var(--text-dark);
    line-height: 1.5;
}

.comment-actions {
    margin-top: 8px;
}

.comment-actions button {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
}

.comment-actions button:hover {
    color: #E53935;
}

/* Upload Page */
.upload-container {
    max-width: 600px;
    margin: 0 auto;
}

.upload-area {
    border: 3px dashed var(--pink-200);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.upload-area:hover, .upload-area.dragover {
    border-color: var(--pink-400);
    background: var(--pink-100);
}

.upload-area i {
    font-size: 4rem;
    color: var(--pink-300);
    margin-bottom: 15px;
}

.upload-area h3 {
    color: var(--pink-500);
    margin-bottom: 10px;
}

.upload-area p {
    color: var(--text-light);
}

.upload-preview {
    margin-top: 20px;
    text-align: center;
}

.upload-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Messages */
.messages-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 15px;
    height: 550px;
}

.messages-sidebar {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    overflow-y: auto;
}

.messages-sidebar .sidebar-header {
    padding: 20px;
    background: var(--gradient-light);
    border-bottom: 1px solid var(--pink-100);
}

.messages-sidebar .sidebar-header h3 {
    font-size: 1.3rem;
}

.message-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-bottom: 1px solid var(--pink-100);
}

.message-user:hover, .message-user.active {
    background: var(--pink-100);
}

.message-user .user-avatar {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    overflow: hidden;
}

.message-user .user-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.message-user .user-info p {
    font-size: 0.75rem;
    color: var(--text-light);
}

.chat-container {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    padding: 15px 20px;
    background: var(--gradient-light);
    border-bottom: 1px solid var(--pink-100);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.chat-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message-bubble {
    max-width: 70%;
    padding: 10px 16px;
    border-radius: 16px;
    position: relative;
}

.message-bubble.sent {
    align-self: flex-end;
    background: var(--gradient);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-bubble.received {
    align-self: flex-start;
    background: var(--pink-100);
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
}

.message-bubble p {
    margin: 0;
    line-height: 1.4;
}

.message-bubble .message-time {
    font-size: 0.65rem;
    opacity: 0.7;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-end;
}

.chat-input {
    padding: 12px 15px;
    border-top: 1px solid var(--pink-100);
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    background: var(--bg-white);
}

.chat-input input {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid var(--pink-100);
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    outline: none;
}

.chat-input input:focus {
    border-color: var(--pink-400);
}

.chat-input button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Special Days */
.special-days-container {
    max-width: 900px;
    margin: 0 auto;
}

.days-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.day-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.day-card .day-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.day-card .day-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.day-card .day-date {
    color: var(--pink-500);
    font-weight: 500;
    margin-bottom: 10px;
}

.day-card .day-countdown {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gradient-light);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--pink-500);
    font-weight: 500;
}

.day-card .day-description {
    color: var(--text-light);
    margin-top: 10px;
    font-size: 0.9rem;
}

.day-card .day-actions {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Profile */
.profile-container {
    max-width: 600px;
    margin: 0 auto;
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 600;
    margin: 0 auto 15px;
    position: relative;
}

.profile-avatar .edit-avatar {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-500);
    cursor: pointer;
    box-shadow: var(--shadow);
}

.profile-header h2 {
    font-size: 2rem;
    color: #FF6B9D;
}

.profile-header p {
    color: var(--text-light);
}

.profile-section {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.profile-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--pink-100);
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state i {
    font-size: 4rem;
    color: #FFB3D1;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: #FF6B9D;
    margin-bottom: 10px;
}

.empty-state p {
    margin-bottom: 20px;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.alert-error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}

.alert-info {
    background: var(--blue-100);
    color: var(--blue-400);
    border: 1px solid var(--blue-200);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .day-counter-banner {
        padding: 8px 12px;
        font-size: 0.82rem;
    }

    .day-counter-content strong {
        font-size: 1.05rem;
    }

    .navbar {
        padding: 12px 15px;
    }

    .nav-brand .brand-name {
        font-size: 1.4rem;
    }

    .nav-brand .brand-heart {
        font-size: 1.1rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 70px 20px 30px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        z-index: 1001;
        overflow-y: auto;
        gap: 5px;
        visibility: hidden;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.3s ease;
    }

    .nav-links.active {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a {
        padding: 14px 18px;
        border-radius: 15px;
        font-size: 1rem;
        justify-content: flex-start;
    }

    .nav-links a.logout-btn {
        margin-top: 15px;
        justify-content: center;
        background: var(--pink-400);
        color: white;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .form-control {
        padding: 14px 16px;
        font-size: 16px;
    }

    textarea.form-control {
        min-height: 80px;
    }

    .gallery-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .gallery-actions {
        flex-direction: column;
        width: 100%;
    }

    .filter-buttons {
        width: 100%;
        justify-content: center;
    }

    .filter-buttons .btn {
        flex: 1;
        justify-content: center;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .photo-card img {
        height: 220px;
    }

    .photo-card .photo-title {
        font-size: 1.1rem;
    }

    /* Photo Detail */
    .photo-detail .photo-header {
        flex-direction: column;
        gap: 10px;
    }

    .photo-detail .photo-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .photo-detail .photo-title {
        font-size: 1.5rem;
    }

    /* Comments */
    .comment-form {
        flex-direction: column;
    }

    .comment-form button {
        width: 100%;
        justify-content: center;
    }

    .comment-item {
        flex-direction: column;
        gap: 10px;
    }

    .comment-avatar {
        width: 40px;
        height: 40px;
    }

    /* Upload */
    .upload-area {
        padding: 30px 15px;
    }

    .upload-area i {
        font-size: 3rem;
    }

    /* Messages */
    .messages-container {
        grid-template-columns: 1fr;
        height: 450px;
        gap: 0;
    }

    .messages-sidebar {
        display: none;
    }

    .messages-sidebar.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2000;
        border-radius: 0;
    }

    .messages-sidebar .sidebar-header {
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .chat-container {
        border-radius: 15px;
        height: 100%;
    }

    .chat-header {
        padding: 12px 15px;
    }

    .chat-header .user-avatar {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 0.8rem;
    }

    .chat-messages {
        padding: 10px;
        gap: 8px;
    }

    .message-bubble {
        max-width: 85%;
        padding: 8px 12px;
        font-size: 0.9rem;
        border-radius: 14px;
    }

    .message-bubble.sent {
        border-bottom-right-radius: 4px;
    }

    .message-bubble.received {
        border-bottom-left-radius: 4px;
    }

    .chat-input {
        padding: 8px 10px;
        gap: 8px;
    }

    .chat-input input {
        padding: 10px 14px;
        font-size: 16px;
    }

    .chat-input button {
        width: 42px;
        height: 42px;
    }

    /* Special Days */
    .days-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .days-grid {
        grid-template-columns: 1fr;
    }

    /* Profile */
    .profile-avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .profile-section {
        padding: 20px 15px;
    }

    /* Love Buttons */
    .love-buttons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 5px;
    }

    .love-btn-card {
        padding: 25px 15px;
    }

    .love-btn-icon {
        font-size: 2.5rem;
    }

    .love-btn-title {
        font-size: 1.3rem;
    }

    .total-love-section {
        padding: 25px 15px;
    }

    .total-love-section .total-number {
        font-size: 3rem;
    }

    /* Login */
    .login-box {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .login-box .logo {
        font-size: 2.5rem;
    }

    .login-box h1 {
        font-size: 2rem;
    }

    /* Alert */
    .alert {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    /* Card */
    .card-body {
        padding: 15px;
    }

    /* Empty State */
    .empty-state {
        padding: 40px 15px;
    }

    .empty-state i {
        font-size: 3rem;
    }
}

@media (max-width: 380px) {
    .nav-links {
        width: 100%;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-buttons .btn {
        width: 100%;
    }

    .login-box {
        padding: 25px 15px;
    }

    .love-btn-card {
        padding: 20px 12px;
    }
}

/* Footer */
.footer {
    background: var(--gradient);
    padding: 25px 20px;
    text-align: center;
    margin-top: auto;
}

.footer-heart-big {
    font-size: 2.5rem;
    letter-spacing: 15px;
}

@media (max-width: 768px) {
    .footer {
        padding: 20px 15px;
    }
    .footer-heart-big {
        font-size: 2rem;
        letter-spacing: 10px;
    }
}

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

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

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

.pulse {
    animation: pulse 2s infinite;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--blue-100);
}

::-webkit-scrollbar-thumb {
    background: var(--orange-300);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pink-300);
}

/* v3.6 - bildirim sistemi eklendi */

.notif-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.notif-bell {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 8px;
    position: relative;
    transition: transform 0.2s;
}
.notif-bell:hover { transform: scale(1.1); }
.notif-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #E53935;
    color: #fff;
    font-size: 0.6rem;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
}
.notif-panel {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 340px;
    max-height: 420px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    z-index: 1000;
    overflow: hidden;
}
.notif-panel.open { display: block; }
.notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
}
.notif-header h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.notif-list {
    overflow-y: auto;
    max-height: 360px;
}
.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f8f8f8;
    transition: background 0.2s;
}
.notif-item:hover { background: #f9f9f9; }
.notif-item.unread { background: #FFF8E1; }
.notif-item.unread:hover { background: #FFF3CD; }
.notif-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    flex-shrink: 0;
    overflow: hidden;
}
.notif-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.notif-content { flex: 1; min-width: 0; }
.notif-content p {
    font-size: 0.82rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}
.notif-time {
    font-size: 0.7rem;
    color: var(--text-light);
}
.notif-empty {
    text-align: center;
    padding: 30px 16px;
    color: var(--text-light);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .notif-panel {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 60vh;
        border-radius: 16px 16px 0 0;
    }
}

.mention-dropdown .mention-item:hover {
    background: #f0f0f0;
}
.mention-dropdown .mention-item.selected {
    background: var(--orange-100);
}
