.my-dreams-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.my-dreams-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin: 20px 0 30px 0;
}

.my-dreams-title-icon {
    font-size: 36px;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.empty-state {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    text-align: center;
    padding: 40px 20px;
}

.empty-state a {
    color: #a855f7;
    text-decoration: none;
}

.empty-state a:hover {
    text-decoration: underline;
}

.dream-card-wrapper {
    margin-bottom: 20px;
}

.dream-card-wrapper.latest-wrapper {
    margin-bottom: 30px;
}

.dreams-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dream-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.dream-card.latest-dream-card {
    border-color: rgba(168, 85, 247, 0.3);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(99, 102, 241, 0.05));
}

.dream-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dream-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.dream-date i {
    font-size: 14px;
}

.latest-badge {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.delete-dream-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.delete-dream-btn:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.dream-content-wrapper {
    padding: 20px;
}

.dream-preview {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.dream-full-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    white-space: pre-wrap;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #a855f7;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.show-more-btn:hover {
    color: #c084fc;
}

.show-more-btn i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.dream-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pi-access-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 12px;
    padding: 14px 18px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.pi-access-btn:hover {
    background: rgba(168, 85, 247, 0.18);
    border-color: rgba(168, 85, 247, 0.4);
}

.pi-access-btn.pi-basic {
    cursor: default;
    opacity: 0.7;
}

.pi-access-btn.pi-basic:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.25);
}

.pi-icon {
    font-size: 24px;
}

.pi-label {
    flex: 1;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.pi-status {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
}

.pi-status.basic-status {
    background: rgba(156, 163, 175, 0.2);
    color: rgba(255, 255, 255, 0.5);
}

.lenses-section {
    margin-top: 24px;
}

.lenses-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0 0 14px 0;
    text-align: center;
}

.lenses-list-compact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lens-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

a.lens-row:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.lens-row.disabled {
    opacity: 0.5;
    cursor: default;
}

.lens-row-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.lens-row-icon.lens-icon-problem {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.lens-row-icon.lens-icon-relationships {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.lens-row-icon.lens-icon-boundaries {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.lens-row-icon.lens-icon-integration {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.lens-row-icon.lens-icon-identity {
    background: rgba(236, 72, 153, 0.15);
    color: #ec4899;
}

.lens-row-label {
    flex: 1;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.lens-row-status {
    font-size: 13px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 16px;
}

.lens-row-status.status-view {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

.lens-row-status.status-start {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.lens-row-status.status-soon {
    background: rgba(156, 163, 175, 0.15);
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .my-dreams-container {
        padding: 16px;
    }
    
    .my-dreams-title {
        font-size: 24px;
        margin: 16px 0 24px 0;
    }
    
    .my-dreams-title-icon {
        font-size: 28px;
    }
    
    .dreams-grid {
        grid-template-columns: 1fr;
    }
    
    .dream-card-header {
        padding: 14px 16px;
    }
    
    .dream-content-wrapper {
        padding: 16px;
    }
    
    .pi-access-btn {
        padding: 12px 14px;
    }
    
    .lens-row {
        padding: 10px 12px;
    }
    
    .lens-row-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}
