.resources-page {
    padding: 120px 5% 60px;
    background-color: var(--bg-color);
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 213, 0.3);
}

section {
    margin-bottom: 4rem;
}

section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 213, 0.3);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 213, 0.1);
    border: 1px solid rgba(0, 255, 213, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-shadow);
    border-color: rgba(0, 255, 213, 0.3);
}

.info-image {
    height: 200px;
    overflow: hidden;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.info-card:hover .info-image img {
    transform: scale(1.1);
}

.info-content {
    padding: 1.5rem;
}

.info-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 213, 0.3);
}

.info-content p {
    color: #cccccc;
    line-height: 1.6;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.award-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 213, 0.1);
    border: 1px solid rgba(0, 255, 213, 0.1);
    transition: transform 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-shadow);
    border-color: rgba(0, 255, 213, 0.3);
}

.award-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 213, 0.3);
}

.award-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 213, 0.3);
}

.award-content p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.award-date {
    color: var(--accent-color);
    font-size: 0.9rem;
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 255, 213, 0.3);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.download-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 213, 0.1);
    border: 1px solid rgba(0, 255, 213, 0.1);
    text-decoration: none;
    color: #cccccc;
    transition: transform 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-shadow);
    border-color: rgba(0, 255, 213, 0.3);
}

.download-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 213, 0.3);
}

.download-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 213, 0.3);
}

.download-info p {
    color: #cccccc;
}

@media (max-width: 768px) {
    .video-grid,
    .gallery-grid,
    .download-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        aspect-ratio: 16/9;
    }

    .gallery-caption {
        transform: translateY(0);
    }
} 