/* Press Kit Styles */

/* Press Kit Layout */
.press-kit-layout {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    min-height: 600px;
}

/* Sidebar Styles */
.press-kit-sidebar {
    flex: 0 0 280px;
    padding: 1.5rem;
    position: relative;
    background-color: #f8f8f8;
    border-radius: 10px;
    border: 1px solid #000000;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    margin-right: 1.5rem;
}

.press-kit-sidebar::after {
    content: none;
}

.press-kit-sidebar h3 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.press-kit-sidebar h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 3px;
    background-color: var(--primary-yellow);
    border-radius: 3px;
}

.press-kit-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.press-kit-list li {
    margin-bottom: 12px;
}

.press-kit-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1rem 1.2rem;
    background: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.press-kit-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: transparent;
    transition: all 0.2s ease;
}

.press-kit-item:hover {
    background-color: #FFFFFF;
    border-color: #000000;
    color: var(--text-primary);
    transform: translateX(3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.press-kit-item:hover::before {
    background-color: #000000;
}

.press-kit-item.active {
    background-color: #FFFFFF;
    color: var(--text-primary);
    font-weight: 600;
    border: 2px solid #000000;
    transform: translateX(5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.press-kit-item.active::before {
    background-color: #000000;
}

/* Press Kit Icons */
.press-kit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.press-kit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    color: #000000;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.press-kit-item:hover .press-kit-icon {
    border-color: #000000;
    color: #000000;
    transform: scale(1.05);
}

.press-kit-item.active .press-kit-icon {
    border: 2px solid #000000;
    color: #000000;
    transform: scale(1.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.press-kit-icon svg {
    width: 24px;
    height: 24px;
}

/* Add animation for selection */
@keyframes selectPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.press-kit-item.active {
    animation: selectPulse 1s ease-in-out;
}

/* Press Kit Content Area */
.press-kit-content {
    flex: 1;
}

.press-kit-details {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #000000;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.press-kit-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #000000;
}

.press-kit-details h3 {
    margin-top: 0;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-size: 2rem;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.press-kit-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 3px;
    background-color: var(--primary-yellow-medium);
    border-radius: 3px;
}

.press-kit-details p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.press-kit-contents {
    background-color: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #000000;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.press-kit-contents h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.contents-list {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.contents-list li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.download-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-style: italic;
}

.game-preview {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Enhanced Download Button */
.btn-primary.btn-large {
    padding: 0.9rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 218, 97, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary.btn-large::before {
    content: '⬇️';
    font-size: 1.2rem;
    margin-right: 5px;
}

.btn-primary.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 218, 97, 0.5);
}

.btn-primary.btn-large:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(255, 218, 97, 0.3);
}

/* Helper class to hide elements */
.hidden {
    display: none;
}

/* Press Kit Hero Styling */
.press-kit-hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--yellow-bright) 50%, var(--bg-primary) 100%);
    padding: 2rem 0 2rem 0; /* Increased top padding to make room for the header */
    text-align: center;
    margin-bottom: 0rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 0; /* Make sure there's no gap between header and hero section */
}

.press-kit-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.03) 20%, rgba(0, 0, 0, 0.03) 21%, transparent 21%, transparent);
    background-size: 20px 20px;
    animation: movePattern 60s linear infinite;
    opacity: 0.6;
    z-index: 1;
}

.press-kit-hero .container {
    position: relative;
    z-index: 2;
}

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

.press-kit-title {
    font-size: 3.5rem;
    color: var(--text-on-yellow);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

.press-kit-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--black-primary);
    border-radius: 2px;
}

.press-kit-subtitle {
    font-size: 1.4rem;
    color: var(--text-on-yellow);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 768px) {
    .press-kit-layout {
        flex-direction: column;
    }
    
    .press-kit-sidebar {
        flex: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 218, 97, 0.3);
        padding-right: 0;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .press-kit-item {
        padding: 0.5rem 0.75rem;
    }
}
