/* Press Kit Styles */

:root {
    --primary-color: #00ff00;
    --primary-color-dark: #00cc00;
    --secondary-color: #00dd00;
    --bg-dark: #1a1a1a;
    --bg-darker: #121212;
    --text-primary: #f5f5f5;
    --text-secondary: #c0c0c0;
    --border-color: #333333;
    --hover-bg: #252525;
}

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

body {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Navigation */
.press-nav {
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--secondary-color);
}

.press-nav h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* Main Container */
.press-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.sidebar ul {
    list-style: none;
    margin-bottom: 2rem;
}

.sidebar li {
    margin-bottom: 0.5rem;
}

.sidebar a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.3rem 0.5rem;
    border-radius: 3px;
    transition: all 0.3s;
}

.sidebar a:hover {
    color: var(--primary-color);
    background-color: var(--hover-bg);
    padding-left: 1rem;
}

/* Download Section */
.download-section {
    background-color: var(--bg-darker);
    padding: 1.5rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-color-dark);
    color: #000000;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-top: 1rem;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.download-btn:hover {
    background-color: #00aa00;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 255, 0, 0.3);
}

.download-note {
    font-size: 0.85rem;
    color: #ffffff;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Main Content */
.press-content {
    min-width: 0;
}

.press-section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.press-section:last-child {
    border-bottom: none;
}

.press-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.press-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.press-section h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.press-section p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.note {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Factsheet Grid */
.factsheet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.fact-item {
    background-color: var(--bg-darker);
    padding: 1.5rem;
    border-radius: 5px;
    border-left: 3px solid var(--primary-color);
}

.fact-item h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.fact-item p {
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.fact-subtext {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Feature List */
.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: var(--bg-darker);
    border-left: 3px solid var(--primary-color);
    border-radius: 3px;
}

.feature-list strong {
    color: var(--primary-color);
}

/* Timeline */
.timeline {
    border-left: 2px solid var(--primary-color);
    padding-left: 2rem;
    margin-left: 1rem;
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: -2.65rem;
    top: 0.3rem;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.timeline-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
}

.video-item {
    background-color: var(--bg-darker);
    padding: 1.5rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.video-item h4 {
    margin-bottom: 1rem;
}

.video-placeholder {
    background-color: var(--bg-dark);
    padding: 0;
    text-align: center;
    border: none;
    border-radius: 3px;
    color: var(--text-secondary);
    margin: 1rem 0;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
}

.video-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.image-item {
    background-color: var(--bg-darker);
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

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

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.placeholder-img {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: var(--bg-dark);
    border: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-secondary);
    border-radius: 3px;
    margin-bottom: 0.5rem;
    padding: 2rem;
}

.image-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Logo Grid */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.logo-item {
    background-color: var(--bg-darker);
    padding: 2rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.logo-display {
    background-color: var(--bg-dark);
    padding: 2rem;
    border-radius: 3px;
    margin-bottom: 1rem;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-display img {
    max-width: 128px;
    height: auto;
}

.logo-text {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.press-logo {
    color: var(--primary-color);
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.logo-downloads {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.logo-downloads a {
    color: #000000;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color-dark);
    border-radius: 3px;
    border: 1px solid var(--primary-color-dark);
    font-size: 0.85rem;
    font-weight: 900;
    transition: all 0.3s;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.logo-downloads a:hover {
    background-color: #00aa00;
    border-color: #00aa00;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 255, 0, 0.3);
}

.logo-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Credits Grid */
.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.credit-item {
    background-color: var(--bg-darker);
    padding: 1.5rem;
    border-radius: 5px;
    border-left: 3px solid var(--primary-color);
}

.credit-item h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.credit-item p {
    color: var(--text-primary);
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-item {
    background-color: var(--bg-darker);
    padding: 1.5rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Additional Info */
.additional-info {
    background-color: var(--bg-darker);
    padding: 2rem;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
}

.last-updated {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Footer */
.press-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--primary-color);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

.press-footer p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.press-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.press-footer a:hover {
    text-decoration: underline;
}

/* Links */
a {
    color: var(--primary-color);
    transition: color 0.3s;
}

a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .press-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        top: 0;
    }

    .sidebar ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .press-container {
        padding: 1rem;
    }

    .factsheet-grid,
    .video-grid,
    .image-grid,
    .logo-grid,
    .credits-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }

    .sidebar ul {
        grid-template-columns: 1fr;
    }

    .press-section h2 {
        font-size: 1.5rem;
    }
}
