/* Blue Color Palette */
:root {
    --blue-light: #E3F2FD;
    --blue-lighter: #BBDEFB;
    --blue-medium: #90CAF9;
    --blue-primary: #64B5F6;
    --blue-dark: #42A5F5;
    --blue-darker: #2196F3;
    --blue-deepest: #1E88E5;
    --blue-accent: #1976D2;
    --blue-cream: #F0F8FF;

    --primary-gradient: linear-gradient(135deg, #64B5F6 0%, #42A5F5 50%, #2196F3 100%);
    --secondary-gradient: linear-gradient(135deg, #90CAF9 0%, #64B5F6 100%);
    --card-gradient: linear-gradient(145deg, #ffffff 0%, #f5fbff 100%);

    --text-primary: #4a4a4a;
    --text-secondary: #7a7a7a;
    --text-light: #9a9a9a;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);

    --border-radius-sm: 12px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.logo i {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

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

.logo h1 {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Section Styles */
section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

section h2 i {
    color: var(--blue-primary);
}

section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-align: center;
}

/* Search Section */
.search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.search-form input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--blue-lighter);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.search-form input:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1);
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, #42A5F5 0%, #2196F3 100%);
    box-shadow: var(--shadow-sm);
}

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

.btn-secondary {
    background: linear-gradient(135deg, #90CAF9 0%, #64B5F6 100%);
    color: white;
    box-shadow: var(--shadow-sm);
}

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

.btn-search {
    background: linear-gradient(135deg, #64B5F6 0%, #42A5F5 100%);
    padding: 16px 32px;
}

.btn-spotify {
    background: #1DB954;
    color: white;
    margin-top: 15px;
}

.btn-spotify:hover {
    background: #1ed760;
}

.btn-large {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    justify-content: center;
}

.btn-icon {
    padding: 12px 16px;
    background: var(--blue-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--blue-dark);
    transform: scale(1.05);
}

/* Search Results */
.search-results {
    margin-top: 30px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.no-results i {
    font-size: 4rem;
    color: var(--blue-lighter);
    margin-bottom: 20px;
}

.no-results p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.hint {
    font-size: 0.95rem !important;
    color: var(--text-light) !important;
}

/* Dedications Grid */
.dedications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.dedication-card {
    background: var(--card-gradient);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

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

/* New Dedication Highlight Effect */
.dedication-card.new-dedication {
    animation: flashHighlight 3s ease-in-out;
    border: 3px solid var(--blue-primary);
}

@keyframes flashHighlight {
    0%, 100% {
        box-shadow: 0 0 0 rgba(33, 150, 243, 0);
        border-color: var(--blue-primary);
    }
    25% {
        box-shadow: 0 0 30px rgba(33, 150, 243, 0.8);
        border-color: #FFD700;
    }
    50% {
        box-shadow: 0 0 40px rgba(33, 150, 243, 1);
        border-color: var(--blue-primary);
    }
    75% {
        box-shadow: 0 0 30px rgba(33, 150, 243, 0.8);
        border-color: #FFD700;
    }
}

.dedication-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--blue-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dedication-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    font-size: 4rem;
    color: white;
}

.dedication-info {
    padding: 20px;
}

.dedication-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #000000;
}

.dedication-info .artist {
    color: #333333;
    margin-bottom: 12px;
}

.dedication-info .recipient {
    color: #000000;
    margin-bottom: 8px;
    font-weight: 500;
}

.dedication-info .date {
    color: #555555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Form Styles */
.dedication-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--blue-primary);
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--blue-lighter);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1);
}

.search-input-wrapper {
    display: flex;
    gap: 10px;
}

.search-input-wrapper input {
    flex: 1;
}

.char-count {
    text-align: right;
    margin-top: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Spotify Results */
.spotify-results {
    margin-top: 15px;
    max-height: 400px;
    overflow-y: auto;
    border-radius: var(--border-radius-md);
}

.spotify-tracks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spotify-track {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: white;
    border: 2px solid var(--blue-lighter);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.spotify-track:hover {
    border-color: var(--blue-primary);
    background: var(--blue-cream);
    transform: translateX(5px);
}

.track-image {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
}

.track-info {
    flex: 1;
}

.track-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.track-artist {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.track-select-icon {
    color: var(--blue-primary);
    font-size: 1.5rem;
}

.loading {
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
}

.loading i {
    font-size: 2rem;
    color: var(--blue-primary);
}

.error-msg {
    text-align: center;
    padding: 30px;
    color: #e74c3c;
    background: #ffe6e6;
    border-radius: var(--border-radius-md);
}

/* Selected Track Preview */
.selected-track-preview {
    background: var(--secondary-gradient);
    padding: 25px;
    border-radius: var(--border-radius-md);
    margin-bottom: 25px;
}

.selected-track-preview h4 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.selected-track-card {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.selected-track-card img {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
}

.selected-track-info {
    flex: 1;
}

.selected-track-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.selected-track-artist {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.preview-audio {
    width: 100%;
    height: 40px;
    margin-top: 10px;
}

.no-preview {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.btn-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover {
    background: #c0392b;
    transform: scale(1.1);
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    left: -9999px;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border: 2px dashed var(--blue-lighter);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition);
    background: var(--blue-cream);
    text-align: center;
}

.file-upload-label:hover {
    border-color: var(--blue-primary);
    background: white;
}

.file-upload-label i {
    font-size: 3rem;
    color: var(--blue-primary);
    margin-bottom: 15px;
}

.file-upload-label span {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: block;
}

.file-upload-label small {
    color: var(--text-light);
    font-size: 0.85rem;
}

.file-preview {
    margin-top: 15px;
}

.preview-item {
    position: relative;
    background: white;
    padding: 15px;
    border-radius: var(--border-radius-md);
    border: 2px solid var(--blue-lighter);
}

.preview-item img,
.preview-item video {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    margin-bottom: 10px;
}

.btn-remove-preview {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-remove-preview:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.file-name {
    color: var(--text-secondary);
    font-size: 0.9rem;
    word-break: break-all;
}

/* Form Message */
.form-message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    display: none;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    display: flex;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: flex;
}

.form-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 2px solid #bee5eb;
    display: flex;
}

.form-message i {
    font-size: 1.3rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: var(--card-gradient);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature i {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.feature h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Dedication View Page */
.dedication-view {
    max-width: 900px;
    margin: 0 auto;
}

.dedication-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.dedication-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--blue-lighter);
}

.dedication-header h2 {
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.recipient-name {
    font-size: 1.4rem;
    color: #000000;
    font-weight: 700;
}

/* Song Section */
.song-section {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--secondary-gradient);
    border-radius: var(--border-radius-md);
}

.album-art {
    flex-shrink: 0;
}

.album-art img {
    width: 200px;
    height: 200px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.no-album-art {
    width: 200px;
    height: 200px;
    background: var(--blue-lighter);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.song-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.song-info h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-align: left;
}

.artist-name {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.audio-player {
    width: 100%;
    margin-bottom: 15px;
}

/* Message Section */
.message-section {
    margin-bottom: 40px;
}

.message-section h3 {
    margin-bottom: 20px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000;
}

.message-content {
    background: var(--blue-cream);
    padding: 30px;
    border-radius: var(--border-radius-md);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
    border-left: 4px solid var(--blue-primary);
}

/* Message Highlighted (TOP SECTION) */
.message-highlighted {
    background: linear-gradient(135deg, #FFE5F4 0%, #FFD4ED 100%);
    padding: 30px;
    border-radius: var(--border-radius-md);
    border: 3px solid var(--blue-primary);
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.3);
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(33, 150, 243, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(33, 150, 243, 0.5);
    }
}

.message-highlighted .message-content {
    background: white;
    font-weight: 500;
    font-size: 1.2rem;
    color: #000000;
}

/* Media Section */
.media-section {
    margin-bottom: 40px;
}

.media-section h3 {
    margin-bottom: 25px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000;
}

.media-item {
    margin-bottom: 20px;
}

.dedication-image-full {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.dedication-video {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

/* Spotify Player Section (BOTTOM SECTION) */
.spotify-player-section {
    margin-bottom: 40px;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.spotify-player-section h3 {
    margin-bottom: 20px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000;
}

.song-info-header {
    margin-bottom: 20px;
}

.song-details {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.album-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.track-details {
    flex: 1;
}

.track-details h4 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 5px;
    font-weight: 600;
}

.track-details .artist-name {
    font-size: 1rem;
    color: #333333;
}

.spotify-embed-wrapper {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.spotify-embed-wrapper iframe {
    display: block;
}

/* Share Section */
.share-section {
    text-align: center;
    padding: 30px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-md);
    margin-bottom: 30px;
}

.share-section h3 {
    margin-bottom: 25px;
    color: var(--text-primary);
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
}

.share-link-wrapper {
    max-width: 600px;
    margin: 0 auto 15px;
}

.share-link-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid white;
    border-radius: var(--border-radius-md);
    font-size: 0.95rem;
    text-align: center;
    background: white;
    color: var(--text-primary);
}

.view-count {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.back-home {
    text-align: center;
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.error-message i {
    font-size: 5rem;
    color: var(--blue-primary);
    margin-bottom: 25px;
}

.error-message h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.error-message p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
    color: var(--text-primary);
}

.footer p {
    margin: 8px 0;
    opacity: 0.8;
}

.footer i {
    color: #e74c3c;
    animation: heartbeat 1.5s infinite;
}

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

.footer-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

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

    .logo h1 {
        font-size: 1.8rem;
    }

    .logo i {
        font-size: 2rem;
    }

    section {
        padding: 25px;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .search-form {
        flex-direction: column;
    }

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

    .song-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .song-info h3 {
        text-align: center;
    }

    .album-art img,
    .no-album-art {
        width: 100%;
        max-width: 300px;
    }

    .dedication-container {
        padding: 25px;
    }

    .dedication-header h2 {
        font-size: 1.6rem;
        flex-direction: column;
    }

    .recipient-name {
        font-size: 1.2rem;
    }

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

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

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

    .song-details {
        flex-direction: column;
        text-align: center;
    }

    .album-thumbnail {
        width: 120px;
        height: 120px;
    }

    .spotify-player-section {
        padding: 20px;
    }

    .message-highlighted {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 30px 15px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

    section {
        padding: 20px;
    }

    section h2 {
        font-size: 1.3rem;
    }

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

    .dedication-info h4 {
        font-size: 1.05rem;
    }

    .message-content {
        padding: 20px;
        font-size: 1rem;
    }

    .file-upload-label {
        padding: 30px 15px;
    }

    .file-upload-label i {
        font-size: 2.5rem;
    }
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--blue-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-dark);
}
