.pmr-d0587952-section {
    background: #1E293B;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.pmr-d0587952-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column: Magazine Cover with Tech Hologram */
.pmr-d0587952-img-wrap {
    position: relative;
    border-radius: 12px;
    padding: 10px;
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(245, 158, 11, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
}

.pmr-d0587952-img-wrap:hover {
    transform: translateY(-8px) scale(1.02);
}

.pmr-d0587952-cover {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 2;
    position: relative;
}

.pmr-d0587952-hologram-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(245, 158, 11, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 158, 11, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 1;
}

/* Right Column styling */
.pmr-d0587952-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #F59E0B;
    margin-bottom: 20px;
}

.gold-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #F59E0B;
    border-radius: 50%;
    display: inline-block;
    animation: goldPulse 1.8s infinite ease-in-out;
}

@keyframes goldPulse {
    0% { transform: scale(0.8); opacity: 0.5; box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
    100% { transform: scale(0.8); opacity: 0.5; box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.pmr-d0587952-title {
    font-size: 36px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 24px;
}

.pmr-d0587952-story {
    font-size: 16px;
    line-height: 1.7;
    color: #94A3B8;
    margin-bottom: 35px;
}

/* Futuristic Gold Subscribe Box */
.pmr-d0587952-subscribe-box {
    background: radial-gradient(100% 100% at 0% 0%, rgba(245, 158, 11, 0.12) 0%, rgba(30, 41, 59, 0.8) 100%);
    border: 1px solid rgba(245, 158, 11, 0.45);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(245, 158, 11, 0.1);
    position: relative;
    backdrop-filter: blur(12px);
}

.subscribe-header {
    margin-bottom: 20px;
}

.subscribe-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #F59E0B;
    display: block;
    margin-bottom: 4px;
}

.subscribe-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #FFFFFF;
}

.pmr-d0587952-form {
    display: flex;
    gap: 12px;
}

.pmr-input-container {
    position: relative;
    flex-grow: 1;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #F59E0B;
    font-size: 16px;
}

.pmr-d0587952-input {
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 14px 16px 14px 42px;
    color: #FFFFFF;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pmr-d0587952-input::placeholder {
    color: #64748B;
}

.pmr-d0587952-input:focus {
    outline: none;
    border-color: #F59E0B;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.25);
}

.pmr-d0587952-btn {
    border: none;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #0F172A;
    padding: 14px 28px;
    cursor: pointer;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pmr-d0587952-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.8);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.5s;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.subscribe-footer-text {
    font-size: 11px;
    color: #64748B;
    margin-top: 15px;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .pmr-d0587952-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 600px) {
    .pmr-d0587952-form {
        flex-direction: column;
    }
}
