/* Stories Page Styles */

/* Stories Statistics */
.stories-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) 0;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(13, 79, 60, 0.2);
    transition: all var(--transition-medium);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 79, 60, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Story Categories */
.story-categories {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.category-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
}

.category-count {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 79, 60, 0.3);
}

.category-btn i {
    font-size: 1rem;
}

/* Featured Story */
.featured-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.featured-story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.featured-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.featured-story:hover .featured-story-image img {
    transform: scale(1.05);
}

.story-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--accent-color);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-badge.featured {
    background: linear-gradient(135deg, var(--accent-color), #ff6b35);
}

.reading-time {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.featured-story-content {
    padding: var(--spacing-md);
}

.story-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.story-category {
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-category.gorilla-encounters {
    background: rgba(34, 139, 34, 0.1);
    color: var(--secondary-color);
}

.story-category.safari-adventures {
    background: rgba(13, 79, 60, 0.1);
    color: var(--primary-color);
}

.story-category.cultural-journeys {
    background: rgba(218, 165, 32, 0.1);
    color: var(--accent-color);
}

.story-category.conservation-stories {
    background: rgba(50, 205, 50, 0.1);
    color: #32cd32;
}

.story-category.travel-tips {
    background: rgba(70, 130, 180, 0.1);
    color: #4682b4;
}

.story-category.guest-stories {
    background: rgba(139, 69, 19, 0.1);
    color: #8b4513;
}

.story-date,
.story-location {
    color: var(--medium-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.featured-story h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 2rem;
    line-height: 1.3;
}

.story-excerpt {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

/* Story Author */
.story-author {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--honeydew-overlay);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.author-info p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.author-bio p {
    font-style: italic;
    line-height: 1.5;
    color: var(--dark-color);
}

/* Story Engagement */
.story-engagement {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.engagement-stats {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.engagement-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--medium-gray);
    font-size: 0.9rem;
    cursor: default;
}

.engagement-stats span i {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
}

.btn-read-more {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-medium);
    border: none;
    cursor: pointer;
}

.btn-read-more:hover {
    background: #1e4620;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 79, 60, 0.3);
}

.story-badge.featured {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

/* Stories Controls */
.stories-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    padding-right: 50px;
    border: 2px solid rgba(13, 79, 60, 0.2);
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-box i {
    position: absolute;
    right: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
}

.sort-options select {
    padding: var(--spacing-md) var(--spacing-lg);
    border: 2px solid rgba(13, 79, 60, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    background: var(--white);
    cursor: pointer;
}

/* Stories Grid */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.story-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-medium);
    cursor: pointer;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.story-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-content {
    padding: var(--spacing-lg);
}

.story-content .story-meta {
    margin-bottom: var(--spacing-md);
}

.story-content h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.3rem;
    line-height: 1.4;
}

.story-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.story-content .story-author {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
}

.story-content .author-avatar {
    width: 40px;
    height: 40px;
}

.story-content .author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.author-role {
    color: var(--medium-gray);
    font-size: 0.8rem;
}

.story-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.action-btn {
    width: 36px;
    height: 36px;
    background: var(--honeydew-overlay);
    border: 1px solid rgba(13, 79, 60, 0.2);
    border-radius: 50%;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.action-btn i {
    width: 18px;
    height: 18px;
    display: block;
}

.action-btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

.action-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.action-btn i,
.action-btn [data-lucide] {
    width: 18px !important;
    height: 18px !important;
    display: block !important;
    color: inherit;
}

.action-btn svg {
    width: 18px !important;
    height: 18px !important;
    display: block !important;
    stroke: currentColor;
    fill: none;
}

/* Ensure Lucide icons are visible throughout the page */
[data-lucide] {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

[data-lucide] svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* Share Story CTA */
/* Share Story Section - Redesigned */
.share-story-section {
    background: linear-gradient(135deg, rgba(13, 79, 60, 0.03) 0%, rgba(44, 95, 45, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.share-story-cta {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(13, 79, 60, 0.08);
    border: 1px solid rgba(13, 79, 60, 0.1);
    overflow: hidden;
}

/* Decorative Background Elements */
.cta-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 79, 60, 0.05) 0%, rgba(44, 95, 45, 0.08) 100%);
    animation: float 6s ease-in-out infinite;
}

.decoration-circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.decoration-circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation-delay: 2s;
}

.decoration-circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

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

.cta-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(13, 79, 60, 0.1) 0%, rgba(44, 95, 45, 0.15) 100%);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(13, 79, 60, 0.2);
}

.cta-badge i {
    width: 16px;
    height: 16px;
}

.cta-content h2 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #0d4f3c 0%, #2c5f2d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.15rem;
}

.cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(13, 79, 60, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(13, 79, 60, 0.12);
    border-color: rgba(13, 79, 60, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 79, 60, 0.1) 0%, rgba(44, 95, 45, 0.15) 100%);
    border-radius: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(13, 79, 60, 0.15);
}

.feature-icon i {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.feature-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-content p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #0d4f3c 0%, #2c5f2d 100%);
    color: white;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 79, 60, 0.3);
    border: none;
    cursor: pointer;
    flex: 1;
    min-width: 280px;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 79, 60, 0.4);
}

.btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.btn-icon i {
    width: 20px;
    height: 20px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    text-align: left;
}

.btn-main-text {
    font-size: 1.1rem;
}

.btn-sub-text {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

.btn-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-cta-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    background: white;
    color: var(--primary-color);
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(13, 79, 60, 0.1);
    border: 2px solid rgba(13, 79, 60, 0.2);
}

.btn-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 79, 60, 0.2);
    border-color: var(--primary-color);
}

.btn-cta-secondary i {
    width: 20px;
    height: 20px;
}

/* Image Section */
.cta-image-wrapper {
    position: relative;
}

.cta-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(13, 79, 60, 0.15);
    aspect-ratio: 4/5;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 79, 60, 0.3) 100%);
    pointer-events: none;
}

.image-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.image-badge i {
    width: 18px;
    height: 18px;
    color: #ff6b6b;
}

.image-stats {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    gap: 12px;
    z-index: 2;
}

.stat-bubble {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.cta-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

/* Newsletter Signup */
.newsletter-signup {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.newsletter-content {
    margin-bottom: var(--spacing-lg);
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: var(--honeydew-overlay);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

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

.newsletter-content h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.8rem;
}

.newsletter-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.newsletter-form .form-group {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.newsletter-form input {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 2px solid rgba(13, 79, 60, 0.2);
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    color: var(--medium-gray);
    font-size: 0.85rem;
}

.newsletter-privacy i {
    color: var(--success);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-story {
        grid-template-columns: 1fr;
    }
    
    .featured-story-image {
        height: 300px;
    }
    
    .share-story-cta {
        padding: 40px;
    }
    
    .cta-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stories-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: var(--spacing-sm);
    }
    
    .category-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .stories-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: none;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .story-engagement {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .engagement-stats {
        flex-wrap: wrap;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .stories-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .featured-story {
        padding: var(--spacing-md);
    }
    
    .featured-story h2 {
        font-size: 1.5rem;
    }
    
    .story-content {
        padding: var(--spacing-md);
    }
    
    .story-author {
        flex-direction: column;
        text-align: center;
    }
    
    .share-story-cta {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .btn-cta-primary {
        min-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .image-stats {
        flex-direction: column;
        gap: 8px;
    }
    
    .stat-bubble {
        padding: 12px;
    }
}

/* Animation Classes */
.story-card.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

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

.story-card.filtering {
    transition: all 0.3s ease-out;
}

.story-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Loading States */
.stories-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    color: var(--medium-gray);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(13, 79, 60, 0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
