/* Press Kit Specific Styles */

.presskit-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #1a0a2e 0%, #2a0a3e 100%);
    text-align: center;
    position: relative;
}

.presskit-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Quick Facts */
.quick-facts {
    background: var(--dark);
    padding: 80px 0;
}

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

.fact-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.fact-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.2);
}

.fact-item h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary);
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fact-item p {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
}

/* Game Description */
.game-description {
    background: var(--dark-secondary);
    padding: 80px 0;
}

.description-content {
    max-width: 900px;
    margin: 0 auto;
}

.description-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    font-size: 24px;
    margin: 40px 0 20px;
}

.description-content h3:first-child {
    margin-top: 0;
}

.description-content p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.short-desc {
    color: var(--text-primary) !important;
    font-size: 20px !important;
    font-weight: 600;
}

/* Key Features Detailed */
.key-features-detailed {
    background: var(--dark);
    padding: 80px 0;
}

.features-list {
    list-style: none;
    max-width: 900px;
    margin: 40px auto 0;
}

.features-list li {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 30px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    border-left-color: var(--secondary);
}

.features-list li strong {
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

/* Assets Section */
.assets-section {
    background: var(--dark-secondary);
    padding: 80px 0;
}

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

.asset-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.asset-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.2);
}

.asset-preview {
    background: rgba(255, 0, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.asset-icon {
    font-size: 48px;
}

.asset-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 10px;
}

.asset-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
}

.asset-card .btn {
    width: 100%;
    justify-content: center;
}

/* Media Gallery */
.media-gallery {
    background: var(--dark);
    padding: 80px 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid rgba(255, 0, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
}

.gallery-item:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.4);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
	pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

/* Videos Section */
.videos-section {
    background: var(--dark-secondary);
    padding: 80px 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.video-item h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
}

.video-item .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
    border: 2px solid rgba(255, 0, 255, 0.3);
}

.video-item .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Contact Section */
.contact-section {
    background: var(--dark);
    padding: 80px 0;
}

.contact-info {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: center;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary);
    text-shadow: var(--glow-secondary);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.social-links a {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 0, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .presskit-header {
        padding: 120px 0 60px;
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .assets-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .facts-grid {
        grid-template-columns: 1fr;
    }
}
