/**
 * Resources Page Styles - Self-Contained
 * JKUAT Innovation and Entrepreneurship Club
 */

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

html {
    scroll-behavior: smooth;
}

.resources-page.bg-pattern {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    background: url('/pages/shared/assets/images/backgrounds/tech-meeting-flatlay.jpg') center/cover fixed,
        linear-gradient(135deg, #1e40af 0%, #3730a3 50%, #1e3a8a 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

.resources-page.bg-pattern::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    pointer-events: none;
}

/* Container */
.resources-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0 4rem 0;
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: white;
}

.badge-indicator {
    width: 8px;
    height: 8px;
    background: #8b5cf6;
    border-radius: 50%;
    margin-right: 0.75rem;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.accent-text {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    line-height: 1.6;
    color: white;
    max-width: 50rem;
    margin: 0 auto 3rem auto;
    font-weight: 400;
}

/* Section Headers */
.section-header h2 {
    color: white !important;
    font-weight: 700;
}

.section-subtitle {
    color: white !important;
    opacity: 0.9;
}

/* Buttons */
.btn,
.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn:hover,
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Glass Cards */
.resources-page .glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resources-page .glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
    margin-top: 4rem;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer h3 {
    color: #10b981;
    margin-bottom: 1rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #10b981;
}

/* Resources Grid - 3 Column Layout */
#resourcesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 1024px) {
    #resourcesGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #resourcesGrid {
        grid-template-columns: 1fr;
    }
}

.resource-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Additional Resources Page Styles */

/* Category Filter Buttons */
.category-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.875rem;
    white-space: nowrap;
    margin: 0.25rem;
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.category-btn.active {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* Resource Cards Enhanced */
.resource-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.resource-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.resource-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.resource-category-badge.constitution {
    background: #8b5cf6;
    color: white;
    border: none;
}

.resource-category-badge.handbook {
    background: #10b981;
    color: white;
    border: none;
}

.resource-category-badge.templates {
    background: #f59e0b;
    color: white;
    border: none;
}

.resource-category-badge.guidelines {
    background: #06b6d4;
    color: white;
    border: none;
}

.resource-category-badge.innovation {
    background: #3b82f6;
    color: white;
    border: none;
}

.resource-category-badge.technical {
    background: #ec4899;
    color: white;
    border: none;
}

.resource-access-level {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.resource-access-level.public {
    background: #10b981;
    color: white;
    border: none;
}

.resource-access-level.members {
    background: #f59e0b;
    color: white;
    border: none;
}

.resource-access-level.leadership {
    background: #ef4444;
    color: white;
    border: none;
}

.resource-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.resource-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.resource-description {
    color: white;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.resource-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: white;
    opacity: 0.8;
}

.meta-item i {
    color: #8b5cf6;
    width: 14px;
}

.resource-uploader {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: white;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.resource-uploader i {
    color: #10b981;
}

.resource-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tag-more {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.resource-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.resource-actions .btn {
    flex: 1;
    justify-content: center;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
}

/* Modal Styles */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 2rem;
}

.modal-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    color: white;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Resource Preview */
.resource-preview {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.preview-icon {
    width: 80px;
    height: 80px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #8b5cf6;
    flex-shrink: 0;
}

.preview-details {
    flex: 1;
}

.preview-details h3 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.preview-details p {
    margin: 0 0 1.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.preview-meta {
    margin-bottom: 1.5rem;
}

.meta-row {
    display: flex;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.meta-row strong {
    min-width: 100px;
    color: white;
}

.preview-tags {
    margin-top: 1rem;
}

.preview-tags strong {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Upload Form */
.upload-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #8b5cf6;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: white;
    opacity: 0.7;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: white;
    opacity: 0.8;
}

/* Loading and Empty States */
.loading-state,
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    grid-column: 1 / -1;
}

.loading-spinner,
.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #8b5cf6;
}

.loading-state p,
.empty-state p {
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.empty-state h3 {
    margin: 0 0 0.5rem 0;
    color: white;
    font-size: 1.25rem;
}

/* Button Sizes */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Button Group */
.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}



/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}



/* Preview Modal Styles */
.preview-modal {
    max-width: 800px;
    max-height: 90vh;
}

.preview-container {
    max-height: 60vh;
    overflow-y: auto;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

/* PDF Preview */
.pdf-preview {
    color: white;
}

.pdf-header,
.doc-header,
.txt-header,
.generic-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    color: #8b5cf6;
}

.pdf-content h3,
.doc-content .document-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.sample-content,
.document-body {
    margin-top: 1.5rem;
}

.content-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 3px solid #8b5cf6;
}

.content-block ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-block li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Document Preview */
.document-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-list {
    margin-top: 1rem;
}

.section-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.section-item strong {
    color: #10b981;
    display: block;
    margin-bottom: 0.5rem;
}

.section-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.875rem;
}

/* Text Preview */
.txt-content {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
    padding: 1rem;
}

.text-content {
    color: #10b981;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Generic Preview */
.generic-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.file-info {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.file-info p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Preview Notes */
.preview-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #3b82f6;
}

.preview-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row strong {
    color: white;
}

/* Responsive Design for Preview */
@media (max-width: 768px) {
    .preview-modal {
        max-width: 95vw;
        margin: 1rem;
    }

    .preview-container {
        max-height: 50vh;
        padding: 1rem;
    }

    .text-content {
        font-size: 0.75rem;
    }

    .section-item {
        padding: 0.75rem;
    }
}

@media (max-width: 768px) {
    .resources-page .container {
        padding: 0 1rem;
    }

    .resource-preview {
        flex-direction: column;
        text-align: center;
    }

    .preview-icon {
        align-self: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-backdrop {
        padding: 1rem;
    }

    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }

    .resource-actions {
        flex-direction: column;
    }

    .resource-meta {
        grid-template-columns: 1fr;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-group .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .resource-card {
        padding: 1.5rem;
    }

    .resource-title {
        font-size: 1.125rem;
    }

    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
}

/* Print Styles */
@media print {
    body.bg-pattern {
        background: white !important;
        color: black !important;
    }

    body.bg-pattern::before {
        display: none;
    }

    .glass-card,
    .modal-content {
        background: white !important;
        border: 1px solid #ddd !important;
        color: black !important;
    }

    .resource-title,
    .modal-header h2,
    .hero-title {
        color: black !important;
    }

    .resource-actions,
    .modal-actions {
        display: none;
    }
}


/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .resource-card,
    .btn,
    .glass-input {
        transform: none !important;
        transition: none !important;
    }

    .pulse {
        animation: none !important;
    }

    .loading-spinner {
        animation: none !important;
    }
}

/* Minimal Resource Card Styles */
.resource-card.resource-minimal {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.resource-card.resource-minimal:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.resource-card.resource-minimal .resource-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-card.resource-minimal .resource-category-badge.constitution {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #3b82f6;
}

.resource-card.resource-minimal .resource-category-badge.policies {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #8b5cf6;
}

.resource-card.resource-minimal .resource-category-badge.minutes {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.resource-card.resource-minimal .resource-category-badge.guides {
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #f59e0b;
}

.resource-card.resource-minimal .resource-category-badge.reports {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.resource-card.resource-minimal .resource-category-badge.other {
    background: rgba(107, 114, 128, 0.2);
    border: 1px solid rgba(107, 114, 128, 0.4);
    color: #6b7280;
}

.resource-card.resource-minimal .resource-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.resource-card.resource-minimal .resource-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.resource-card.resource-minimal .btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    width: 100%;
}

.resource-card.resource-minimal .btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.resource-card.resource-minimal .btn-download:active {
    transform: translateY(0);
}
