/* Press Page Styles */
@import url('landing_unified.css');

.press-hero {
    height: 60vh;
    /* Shorter than main hero */
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #111 0%, #000 70%);
}

.title-xl {
    background: linear-gradient(to bottom, #fff, #666);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Assets Grid */
.assets-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.asset-card {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px) saturate(130%);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.asset-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.asset-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    transform: rotate(45deg);
    transition: 0.6s;
    pointer-events: none;
    z-index: 5;
}

.asset-card:hover::before {
    left: 100%;
}

.asset-preview {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-icon-large {
    width: 80px;
    height: 80px;
    background: #fff;
    color: #000;
    font-size: 40px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.logo-text-large {
    font-family: var(--font-inter);
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
}

.color-preview {
    gap: 20px;
}

.swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    cursor: pointer;
}

.swatch:hover::after {
    content: attr(data-hex);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: #fff;
    background: #000;
    padding: 4px 8px;
    border-radius: 4px;
}

.swatch.red {
    background: var(--accent-red);
}

.swatch.orange {
    background: var(--accent-orange);
}

.swatch.black {
    background: #000;
    border: 1px solid #333;
}

.asset-info {
    padding: 24px;
}

.asset-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin: 0 0 10px 0;
    color: #fff;
}

.asset-info p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.download-links {
    display: flex;
    gap: 20px;
}

.btn-text {
    font-family: var(--font-mono);
    color: var(--accent-orange);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.2s;
}

.btn-text:hover {
    color: #fff;
    text-decoration: underline;
}

/* Releases */
.releases-section {
    padding: 100px 0;
}

.release-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    /* Divider color */
}

.release-item {
    background: #050505;
    /* Restore bg */
    padding: 40px 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.release-item:hover {
    padding-left: 20px;
    /* Slight shift */
    background: rgba(255, 255, 255, 0.02);
}

.release-date {
    font-family: var(--font-mono);
    color: var(--accent-red);
    font-size: 0.9rem;
    width: 150px;
}

.release-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #fff;
    flex: 1;
    margin: 0;
}

.read-link {
    color: #666;
    text-decoration: none;
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.release-item:hover .read-link {
    color: #fff;
}

/* Contact */
.contact-section {
    padding: 100px 0 150px;
    text-align: center;
    background: radial-gradient(circle at center, #111 0%, #000 60%);
}

.email-link {
    font-size: 2.5rem;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-serif);
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 5px;
    transition: 0.3s;
}

.email-link:hover {
    color: var(--accent-red);
    border-bottom-color: transparent;
}

/* Footer */
.main-footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #444;
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

/* Mobile */
@media (max-width: 768px) {
    .release-item {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .release-date {
        font-size: 0.8rem;
        width: auto;
    }

    .release-title {
        font-size: 1.4rem;
    }

    .email-link {
        font-size: 1.5rem;
    }
}