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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header - Elevated Spacing Aesthetic */
.header {
    background-color: #fafbfc;
    border-bottom: 1px solid #e1e5e9;
    padding: 36px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
}

.header-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.header-right {
    flex: 0 0 auto;
}

.site-title {
    font-size: 22px;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.tagline {
    font-size: 11px;
    color: #7f8c8d;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 18px;
    color: #2c3e50;
    cursor: pointer;
    padding: 8px;
}

/* Hamburger Menu - Exact Match */
.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    font-size: 18px;
    color: #34495e;
}

.hamburger-menu:hover {
    background-color: #f8f9fa;
}

/* Consolidated Slide Menu */
.slide-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background-color: #f8f9fa;
    z-index: 200;
    transition: right 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.slide-menu.open {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.menu-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #2c3e50;
}

.menu-section {
    margin-bottom: 30px;
    border-bottom: 1px solid #e1e5e9;
    padding-bottom: 20px;
}

.menu-section:last-child {
    border-bottom: none;
}

.menu-section-title {
    font-size: 16px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-weight: 500;
}

.menu-items {
    list-style: none;
}

.menu-items li {
    margin-bottom: 8px;
}

.menu-items a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: 12px 0;
    transition: color 0.2s ease;
}

.menu-items a:hover {
    color: #495057;
}

/* Newsletter Navigation in Menu */
.newsletter-nav-section {
    display: none; /* Hidden by default, shown when in newsletter view */
}

.newsletter-nav-section.active {
    display: block;
}

.newsletter-nav .year-header {
    font-size: 13px;
    color: #2c3e50;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.newsletter-nav .month-header {
    font-size: 11px;
    color: #6c757d;
    margin-bottom: 6px;
    margin-left: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.newsletter-nav .newsletter-list {
    list-style: none;
    margin-bottom: 15px;
}

.newsletter-nav .newsletter-item {
    padding: 6px 30px;
    cursor: pointer;
    font-size: 11px;
    color: #7f8c8d;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}

.newsletter-nav .newsletter-item:hover {
    background-color: #e9ecef;
    color: #495057;
}

.newsletter-nav .newsletter-item.active {
    background-color: #2c3e50;
    color: white;
}

/* Layout Container */
.layout-container {
    display: flex;
    min-height: calc(100vh - 80px);
}

/* Sidebar - Elevated Spacing Aesthetic */
.sidebar {
    width: 300px;
    background-color: #fafbfc;
    border-right: 1px solid #e1e5e9;
    padding: 28px 24px;
    overflow-y: auto;
}

.sidebar-header h2 {
    font-size: 13px;
    color: #2c3e50;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    padding: 0;
}

.year-section h3 {
    font-size: 13px;
    color: #2c3e50;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 0 24px;
}

.month-section h4 {
    font-size: 11px;
    color: #6c757d;
    margin-bottom: 12px;
    margin-left: 48px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.newsletter-list {
    list-style: none;
    margin-bottom: 20px;
}

.newsletter-item {
    padding: 8px 72px;
    cursor: pointer;
    font-size: 11px;
    color: #7f8c8d;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.newsletter-item:hover {
    background-color: #e9ecef;
    color: #495057;
}

.newsletter-item.active {
    background-color: #2c3e50;
    color: white;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

/* Content Sections */
.content-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Newsletter Component - Unstyled container */
newsletter-component {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

/* Gallery Header - Elevated Spacing Aesthetic */
.content-header h2 {
    font-size: 16px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-weight: 500;
}

.content-description {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 32px;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.article-placeholder {
    background-color: #f8f9fa;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
}

.article-placeholder h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}



.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.gallery-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-info {
    padding: 24px;
}

.gallery-theme {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-date {
    font-size: 11px;
    color: #7f8c8d;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.gallery-inspiration {
    font-size: 13px;
    line-height: 1.6;
    color: #6c757d;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Header mobile layout */
    .header {
        padding: 24px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .header-left {
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .header-center {
        width: 100%;
        text-align: left;
        flex: none;
    }

    .header-right {
        position: absolute;
        top: 24px;
        right: 20px;
    }

    .site-title {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 10px;
        margin-top: 2px;
    }

    .sidebar {
        display: none; /* Hide desktop sidebar on mobile */
    }

    .main-content {
        width: 100%;
        padding: 0;
    }

    /* Newsletter section: no padding on mobile for full-width display */
    #newsletter-section {
        padding: 0;
    }

    /* Gallery section: keep padding on mobile for proper spacing */
    #gallery-section {
        padding: 20px;
    }

    .layout-container {
        display: block;
    }

    /* Show newsletter navigation in menu when in newsletter view */
    .newsletter-nav-section.active {
        display: block;
    }



    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-image {
        height: 200px;
    }

    .gallery-info {
        padding: 20px;
    }
}

/* Vault Chat Interface Styles */
.vault-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 280px);
    max-height: 800px;
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
}

.vault-results {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    background: #fafbfc;
}

.vault-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px 20px;
}

.vault-example-queries {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 700px;
}

.vault-example-query {
    padding: 12px 20px;
    background: #fafbfc;
    border: 1px solid #e1e5e9;
    border-radius: 24px;
    font-size: 14px;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.vault-example-query:hover {
    background: #f8f9fa;
    border-color: #2c3e50;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.1);
}

.vault-input-container {
    border-top: 1px solid #e1e5e9;
    background: #ffffff;
    padding: 20px;
}

.vault-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.vault-search-icon {
    font-size: 16px;
    color: #7f8c8d;
    flex-shrink: 0;
}

.vault-search-input {
    flex: 1;
    padding: 14px 18px;
    font-size: 15px;
    border: 1px solid #dee2e6;
    border-radius: 24px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
}

.vault-search-input:focus {
    border-color: #2c3e50;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.08);
}

.vault-search-button {
    width: 48px;
    height: 48px;
    padding: 0;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vault-search-button:hover {
    background: #34495e;
    transform: translateY(-1px);
}

.vault-search-button:active {
    transform: translateY(0);
}

.vault-search-button:disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Vault Message Styles */
.vault-message {
    margin-bottom: 24px;
    animation: fadeIn 0.3s ease-in;
}

.vault-user-message {
    background: #f8f9fa;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-size: 15px;
    border: 1px solid #e1e5e9;
    max-width: 80%;
    margin-left: auto;
    text-align: right;
}

.vault-assistant-message {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e1e5e9;
    line-height: 1.7;
    color: #333;
    font-size: 15px;
}

.vault-message-content {
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Markdown styling within vault responses */
.vault-message-content p {
    margin: 0 0 12px 0;
}

.vault-message-content ul, .vault-message-content ol {
    margin: 0 0 12px 0;
    padding-left: 24px;
}

.vault-message-content li {
    margin-bottom: 6px;
}

.vault-message-content strong {
    font-weight: 600;
    color: #2c3e50;
}

.vault-message-content em {
    font-style: italic;
}

.vault-message-content code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.vault-loading {
    display: inline-block;
    animation: pulse 1.5s ease-in-out infinite;
    color: #7f8c8d;
    font-size: 24px;
}

/* Progress message styling - matches The Signal aesthetic */
.vault-progress {
    display: inline-block;
    color: #7f8c8d;
    font-size: 14px;
    font-style: italic;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Citations Styles */
.vault-citations {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.citations-header {
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.citation-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.5;
}

.citation-number {
    color: #2c3e50;
    font-weight: 600;
    flex-shrink: 0;
}

.citation-headline {
    color: #495057;
    flex: 1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.citation-headline:hover {
    color: #3498db;
    text-decoration: underline;
}

.citation-meta {
    color: #7f8c8d;
    font-size: 12px;
    flex-shrink: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.gallery-modal-content {
    position: relative;
    width: 680px;
    max-width: 90vw;
    height: 85vh;
    max-height: 85vh;
    margin: 7.5vh auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

/* Modal Header - Three Section Layout */
.gallery-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 36px;
    background: #fafbfc;
    border-bottom: 1px solid #e1e5e9;
}

.gallery-modal-header-info {
    flex: 1;
}

.gallery-modal-header-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #6c757d;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-header-close:hover {
    background: #e9ecef;
    color: #495057;
}

.gallery-modal-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 20px;
    flex: 1;
    min-height: 0; /* Allow flex shrinking */
    position: relative; /* For video overlay positioning */
}

.gallery-modal-image img,
.gallery-modal-image video {
    width: 100%;
    max-width: 480px;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border: 1px solid #e1e8ed;
    transition: opacity 0.3s ease;
}

/* Video Play Button Overlay */
.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    position: absolute;
    left: 25%;
    top: 25%;
    width: 40px;
    height: 40px;
    fill: white;
}

.gallery-modal-info {
    flex: 0 0 auto;
    height: 140px;
    background: white;
    border-top: 1px solid #e1e8ed;
    overflow-y: auto;
    padding: 24px 36px;
}

.gallery-modal-theme {
    font-size: 18px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 6px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.gallery-modal-date {
    font-size: 11px;
    color: #7f8c8d;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 400;
}

.gallery-modal-inspiration {
    font-size: 15px;
    line-height: 1.7;
    color: #6c757d;
    font-weight: 300;
    margin: 0;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .gallery-modal-content {
        width: 95vw;
        height: 90vh;
        max-height: 90vh;
        margin: 5vh auto;
    }

    .gallery-modal-header {
        padding: 20px 24px;
    }

    .gallery-modal-image {
        padding: 15px;
    }

    .gallery-modal-info {
        height: 160px; /* More space for mobile finger scrolling */
        padding: 20px 24px;
    }

    .gallery-modal-theme {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .gallery-modal-image img,
    .gallery-modal-image video {
        max-width: 100%;
        border-radius: 8px;
    }

    /* Mobile video play button */
    .video-play-overlay {
        width: 70px;
        height: 70px;
    }

    .play-icon {
        width: 35px;
        height: 35px;
    }

    /* Subscribe Modal Mobile */
    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .modal-header {
        padding: 24px 20px 20px;
    }

    .modal-title {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .modal-body {
        padding: 24px 20px;
    }

    .form-group {
        flex-direction: column;
        gap: 12px;
    }

    .subscribe-button {
        width: 100%;
        padding: 16px;
    }
}

/* Gallery Loading State */
.gallery-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: #6c757d;
    font-size: 16px;
    min-height: 300px;
}

.gallery-loading p {
    margin: 8px 0;
    font-size: 14px;
    color: #7f8c8d;
}

/* Gallery Sentinel (for infinite scroll) */
#gallery-sentinel {
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#gallery-sentinel .gallery-loading {
    min-height: 100px;
    padding: 30px 20px;
    font-size: 14px;
}

/* Gallery End State */
.gallery-end {
    text-align: center;
    padding: 40px 20px;
    color: #7f8c8d;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

/* Subscribe Modal - Elevated Spacing Aesthetic */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    backdrop-filter: blur(2px);
}

.modal-content {
    background-color: white;
    border-radius: 16px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 36px 48px 24px;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafbfc;
    border-radius: 16px 16px 0 0;
}

.modal-title {
    font-size: 22px;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #6c757d;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #e9ecef;
    color: #495057;
}

.modal-body {
    padding: 36px 48px;
}

/* Subscription Form */
.subscribe-description {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 32px;
    line-height: 1.7;
    text-align: center;
    font-weight: 300;
}

.subscribe-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

#email {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: #fafbfc;
    transition: all 0.2s ease;
}

#email:focus {
    outline: none;
    border-color: #2c3e50;
    background: white;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.subscribe-button {
    padding: 16px 28px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscribe-button:hover {
    background-color: #34495e;
    transform: translateY(-1px);
}

.subscribe-button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    font-size: 11px;
    color: #7f8c8d;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* Error Message */
.subscription-error {
    background: #f8d7da;
    color: #721c24;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin: 12px 0;
    border: 1px solid #f5c6cb;
    text-align: center;
    display: none;
}

/* Success State */
.subscribe-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-title {
    font-size: 20px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-message {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 28px;
    line-height: 1.6;
    font-weight: 300;
}

.success-button {
    padding: 12px 24px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-button:hover {
    background-color: #34495e;
    transform: translateY(-1px);
}
